diff -Nru libreoffice-l10n-5.3.2~rc2/basctl/source/basicide/scriptdocument.cxx libreoffice-l10n-5.3.3~rc2/basctl/source/basicide/scriptdocument.cxx --- libreoffice-l10n-5.3.2~rc2/basctl/source/basicide/scriptdocument.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/basctl/source/basicide/scriptdocument.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -34,6 +34,8 @@ #include #include #include +#include +#include #include #include @@ -669,6 +671,14 @@ if ( _bCreateMain ) _out_rNewModuleCode += "Sub Main\n\nEnd Sub\n" ; + Reference< XVBAModuleInfo > xVBAModuleInfo(xLib, UNO_QUERY); + if (xVBAModuleInfo.is()) + { + css::script::ModuleInfo aModuleInfo; + aModuleInfo.ModuleType = css::script::ModuleType::NORMAL; + xVBAModuleInfo->insertModuleInfo(_rModName, aModuleInfo); + } + // insert module into library xLib->insertByName( _rModName, makeAny( _out_rNewModuleCode ) ); } diff -Nru libreoffice-l10n-5.3.2~rc2/cli_ure/source/native/native_share.h libreoffice-l10n-5.3.3~rc2/cli_ure/source/native/native_share.h --- libreoffice-l10n-5.3.2~rc2/cli_ure/source/native/native_share.h 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cli_ure/source/native/native_share.h 2017-05-03 16:46:29.000000000 +0000 @@ -91,10 +91,10 @@ reinterpret_cast< void ** >( &ret ), reinterpret_cast< void * >( ::System::Runtime::InteropServices::GCHandle::op_Explicit( handle ) -#if defined _WIN32 - .ToInt32() -#elif defined _WIN64 +#if defined _WIN64 .ToInt64() +#elif defined _WIN32 + .ToInt32() #else #error ERROR: either _WIN64 or _WIN32 must be defined ERROR: either _WIN64 or _WIN32 must be defined diff -Nru libreoffice-l10n-5.3.2~rc2/cli_ure/source/uno_bridge/cli_bridge.cxx libreoffice-l10n-5.3.3~rc2/cli_ure/source/uno_bridge/cli_bridge.cxx --- libreoffice-l10n-5.3.2~rc2/cli_ure/source/uno_bridge/cli_bridge.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cli_ure/source/uno_bridge/cli_bridge.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -131,9 +131,10 @@ if(cliI) { ptr= sri::GCHandle::ToIntPtr(sri::GCHandle::Alloc(cliI)) -#ifdef _WIN32 +#ifdef _WIN64 + .ToInt64(); +#else /* defined(_WIN32) */ .ToInt32(); -#else /* defined(_WIN64) */ .ToInt64(); #endif } (*ppOut)= reinterpret_cast(ptr); diff -Nru libreoffice-l10n-5.3.2~rc2/comphelper/qa/string/test_string.cxx libreoffice-l10n-5.3.3~rc2/comphelper/qa/string/test_string.cxx --- libreoffice-l10n-5.3.2~rc2/comphelper/qa/string/test_string.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/comphelper/qa/string/test_string.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -43,6 +43,7 @@ void testIsdigitAsciiString(); void testReverseString(); void testSplit(); + void testRemoveAny(); CPPUNIT_TEST_SUITE(TestString); CPPUNIT_TEST(testNatural); @@ -55,6 +56,7 @@ CPPUNIT_TEST(testIsdigitAsciiString); CPPUNIT_TEST(testReverseString); CPPUNIT_TEST(testSplit); + CPPUNIT_TEST(testRemoveAny); CPPUNIT_TEST_SUITE_END(); }; @@ -390,6 +392,26 @@ CPPUNIT_ASSERT_EQUAL(OUString("F1"), aRet[2]); } +void TestString::testRemoveAny() +{ + using namespace ::comphelper::string; + OUString in("abcAAAbbC"); + sal_Unicode const test1 [] = { 'a', 0 }; + CPPUNIT_ASSERT_EQUAL(OUString("bcAAAbbC"), removeAny(in, test1)); + sal_Unicode const test2 [] = { 0 }; + CPPUNIT_ASSERT_EQUAL(in, removeAny(in, test2)); + sal_Unicode const test3 [] = { 'A', 0 }; + CPPUNIT_ASSERT_EQUAL(OUString("abcbbC"), removeAny(in, test3)); + sal_Unicode const test4 [] = { 'A', 'a', 0 }; + CPPUNIT_ASSERT_EQUAL(OUString("bcbbC"), removeAny(in, test4)); + sal_Unicode const test5 [] = { 'C', 0 }; + CPPUNIT_ASSERT_EQUAL(OUString("abcAAAbb"), removeAny(in, test5)); + sal_Unicode const test6 [] = { 'X', 0 }; + CPPUNIT_ASSERT_EQUAL(in, removeAny(in, test6)); + sal_Unicode const test7 [] = { 'A', 'B', 'C', 'a', 'b', 'c', 0 }; + CPPUNIT_ASSERT_EQUAL(OUString(""), removeAny(in, test7)); +} + CPPUNIT_TEST_SUITE_REGISTRATION(TestString); } diff -Nru libreoffice-l10n-5.3.2~rc2/comphelper/source/misc/string.cxx libreoffice-l10n-5.3.3~rc2/comphelper/source/misc/string.cxx --- libreoffice-l10n-5.3.2~rc2/comphelper/source/misc/string.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/comphelper/source/misc/string.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -420,6 +420,42 @@ return -1; } +OUString removeAny(OUString const& rIn, + sal_Unicode const*const pChars) +{ + OUStringBuffer buf; + bool isFound(false); + for (sal_Int32 i = 0; i < rIn.getLength(); ++i) + { + sal_Unicode const c = rIn[i]; + bool removeC(false); + for (sal_Unicode const* pChar = pChars; *pChar; ++pChar) + { + if (c == *pChar) + { + removeC = true; + break; + } + } + if (removeC) + { + if (!isFound) + { + if (i > 0) + { + buf.append(rIn.copy(0, i)); + } + isFound = true; + } + } + else if (isFound) + { + buf.append(c); + } + } + return (isFound) ? buf.makeStringAndClear() : rIn; +} + OUString setToken(const OUString& rIn, sal_Int32 nToken, sal_Unicode cTok, const OUString& rNewToken) { diff -Nru libreoffice-l10n-5.3.2~rc2/configure.ac libreoffice-l10n-5.3.3~rc2/configure.ac --- libreoffice-l10n-5.3.2~rc2/configure.ac 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/configure.ac 2017-05-03 16:46:29.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[5.3.2.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.3.3.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) diff -Nru libreoffice-l10n-5.3.2~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx libreoffice-l10n-5.3.3~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx --- libreoffice-l10n-5.3.2~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cppcanvas/source/mtfrenderer/emfplus.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -50,39 +50,61 @@ namespace { -#define EmfPlusRecordTypeHeader 16385 -#define EmfPlusRecordTypeEndOfFile 16386 -#define EmfPlusRecordTypeGetDC 16388 -#define EmfPlusRecordTypeObject 16392 -#define EmfPlusRecordTypeFillRects 16394 -#define EmfPlusRecordTypeFillPolygon 16396 -#define EmfPlusRecordTypeDrawLines 16397 -#define EmfPlusRecordTypeFillEllipse 16398 -#define EmfPlusRecordTypeDrawEllipse 16399 -#define EmfPlusRecordTypeFillPie 16400 -#define EmfPlusRecordTypeFillPath 16404 -#define EmfPlusRecordTypeDrawPath 16405 -#define EmfPlusRecordTypeDrawImage 16410 -#define EmfPlusRecordTypeDrawImagePoints 16411 -#define EmfPlusRecordTypeDrawString 16412 -#define EmfPlusRecordTypeSetRenderingOrigin 16413 -#define EmfPlusRecordTypeSetAntiAliasMode 16414 -#define EmfPlusRecordTypeSetTextRenderingHint 16415 -#define EmfPlusRecordTypeSetInterpolationMode 16417 -#define EmfPlusRecordTypeSetPixelOffsetMode 16418 -#define EmfPlusRecordTypeSetCompositingQuality 16420 -#define EmfPlusRecordTypeSave 16421 -#define EmfPlusRecordTypeRestore 16422 -#define EmfPlusRecordTypeBeginContainerNoParams 16424 -#define EmfPlusRecordTypeEndContainer 16425 -#define EmfPlusRecordTypeSetWorldTransform 16426 -#define EmfPlusRecordTypeResetWorldTransform 16427 -#define EmfPlusRecordTypeMultiplyWorldTransform 16428 -#define EmfPlusRecordTypeSetPageTransform 16432 -#define EmfPlusRecordTypeSetClipRect 16434 -#define EmfPlusRecordTypeSetClipPath 16435 -#define EmfPlusRecordTypeSetClipRegion 16436 -#define EmfPlusRecordTypeDrawDriverString 16438 +#define EmfPlusRecordTypeHeader 0x4001 +#define EmfPlusRecordTypeEndOfFile 0x4002 +//TODO EmfPlusRecordTypeComment 0x4003 +#define EmfPlusRecordTypeGetDC 0x4004 +//TODO EmfPlusRecordTypeMultiFormatStart 0x4005 +//TODO EmfPlusRecordTypeMultiFormatSection 0x4006 +//TODO EmfPlusRecordTypeMultiFormatEnd 0x4007 +#define EmfPlusRecordTypeObject 0x4008 +//TODO EmfPlusRecordTypeClear 0x4009 +#define EmfPlusRecordTypeFillRects 0x400A +#define EmfPlusRecordTypeFillPolygon 0x400C +#define EmfPlusRecordTypeDrawLines 0x400D +#define EmfPlusRecordTypeFillEllipse 0x400E +#define EmfPlusRecordTypeDrawEllipse 0x400F +#define EmfPlusRecordTypeFillPie 0x4010 +//TODO EmfPlusRecordTypeDrawPie 0x4011 +//TODO EmfPlusRecordTypeDrawArc 0x4012 +//TODO EmfPlusRecordTypeFillRegion 0x4013 +#define EmfPlusRecordTypeFillPath 0x4014 +#define EmfPlusRecordTypeDrawPath 0x4015 +//TODO EmfPlusRecordTypeFillClosedCurve 0x4016 +//TODO EmfPlusRecordTypeDrawClosedCurve 0x4017 +//TODO EmfPlusRecordTypeDrawCurve 0x4018 +//TODO EmfPlusRecordTypeDrawBeziers 0x4019 +#define EmfPlusRecordTypeDrawImage 0x401A +#define EmfPlusRecordTypeDrawImagePoints 0x401B +#define EmfPlusRecordTypeDrawString 0x401C +#define EmfPlusRecordTypeSetRenderingOrigin 0x401D +#define EmfPlusRecordTypeSetAntiAliasMode 0x401E +#define EmfPlusRecordTypeSetTextRenderingHint 0x401F +#define EmfPlusRecordTypeSetInterpolationMode 0x4021 +#define EmfPlusRecordTypeSetPixelOffsetMode 0x4022 +//TODO EmfPlusRecordTypeSetCompositingMode 0x4023 +#define EmfPlusRecordTypeSetCompositingQuality 0x4024 +#define EmfPlusRecordTypeSave 0x4025 +#define EmfPlusRecordTypeRestore 0x4026 +//TODO EmfPlusRecordTypeBeginContainer 0x4027 +#define EmfPlusRecordTypeBeginContainerNoParams 0x4028 +#define EmfPlusRecordTypeEndContainer 0x4027 +#define EmfPlusRecordTypeSetWorldTransform 0x402A +#define EmfPlusRecordTypeResetWorldTransform 0x402B +#define EmfPlusRecordTypeMultiplyWorldTransform 0x402C +//TODO EmfPlusRecordTypeScaleWorldTransform 0x402E +//TODO EmfPlusRecordTypeRotateWorldTransform 0x402F +#define EmfPlusRecordTypeSetPageTransform 0x4030 +//TODO EmfPlusRecordTypeResetClip 0x4031 +#define EmfPlusRecordTypeSetClipRect 0x4032 +#define EmfPlusRecordTypeSetClipPath 0x4033 +#define EmfPlusRecordTypeSetClipRegion 0x4034 +//TODO EmfPlusRecordTypeOffsetClip 0x4035 +#define EmfPlusRecordTypeDrawDriverString 0x4036 +//TODO EmfPlusRecordTypeStrokeFillPath 0x4037 +//TODO EmfPlusRecordTypeSerializableObject 0x4038 +//TODO EmfPlusRecordTypeSetTSGraphics 0x4039 +//TODO EmfPlusRecordTypeSetTSClip 0x403A #define EmfPlusObjectTypeBrush 0x100 #define EmfPlusObjectTypePen 0x200 diff -Nru libreoffice-l10n-5.3.2~rc2/cui/source/dialogs/cuicharmap.cxx libreoffice-l10n-5.3.3~rc2/cui/source/dialogs/cuicharmap.cxx --- libreoffice-l10n-5.3.2~rc2/cui/source/dialogs/cuicharmap.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/source/dialogs/cuicharmap.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -380,6 +380,13 @@ // like "Times New Roman;Times" resolved vcl::Font aTmp( GetFontMetric( rFont ) ); + if (aTmp.GetFamilyName() == "StarSymbol" && m_pFontLB->GetEntryPos(aTmp.GetFamilyName()) == LISTBOX_ENTRY_NOTFOUND) + { + //if for some reason, like font in an old document, StarSymbol is requested and its not available, then + //try OpenSymbol instead + aTmp.SetFamilyName("OpenSymbol"); + } + if ( m_pFontLB->GetEntryPos( aTmp.GetFamilyName() ) == LISTBOX_ENTRY_NOTFOUND ) return; diff -Nru libreoffice-l10n-5.3.2~rc2/cui/source/dialogs/postdlg.cxx libreoffice-l10n-5.3.3~rc2/cui/source/dialogs/postdlg.cxx --- libreoffice-l10n-5.3.2~rc2/cui/source/dialogs/postdlg.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/source/dialogs/postdlg.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -64,11 +64,8 @@ bool bNew = true; sal_uInt16 nWhich = 0; - if ( !bPrevNext ) - { - m_pPrevBtn->Hide(); - m_pNextBtn->Hide(); - } + m_pPrevBtn->Show(bPrevNext); + m_pNextBtn->Show(bPrevNext); nWhich = rSet.GetPool()->GetWhich( SID_ATTR_POSTIT_AUTHOR ); OUString aAuthorStr, aDateStr; diff -Nru libreoffice-l10n-5.3.2~rc2/cui/source/inc/chardlg.hxx libreoffice-l10n-5.3.3~rc2/cui/source/inc/chardlg.hxx --- libreoffice-l10n-5.3.2~rc2/cui/source/inc/chardlg.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/source/inc/chardlg.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -173,6 +173,9 @@ private: static const sal_uInt16 pEffectsRanges[]; + bool m_bOrigFontColor; + bool m_bNewFontColor; + Color m_aOrigFontColor; VclPtr m_pFontColorFT; VclPtr m_pFontColorLB; diff -Nru libreoffice-l10n-5.3.2~rc2/cui/source/options/optjava.cxx libreoffice-l10n-5.3.3~rc2/cui/source/options/optjava.cxx --- libreoffice-l10n-5.3.2~rc2/cui/source/options/optjava.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/source/options/optjava.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -192,6 +192,12 @@ if (!officecfg::Office::Common::Security::EnableExpertConfiguration::get()) m_pExpertConfigBtn->Disable(); + if (officecfg::Office::Common::Misc::MacroRecorderMode::isReadOnly()) + m_pMacroCB->Disable(); + + if (officecfg::Office::Common::Misc::ExperimentalMode::isReadOnly()) + m_pExperimentalCB->Disable(); + xDialogListener->SetDialogClosedLink( LINK( this, SvxJavaOptionsPage, DialogClosedHdl ) ); EnableHdl_Impl(m_pJavaEnableCB); diff -Nru libreoffice-l10n-5.3.2~rc2/cui/source/tabpages/chardlg.cxx libreoffice-l10n-5.3.3~rc2/cui/source/tabpages/chardlg.cxx --- libreoffice-l10n-5.3.2~rc2/cui/source/tabpages/chardlg.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/source/tabpages/chardlg.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1343,6 +1343,8 @@ SvxCharEffectsPage::SvxCharEffectsPage( vcl::Window* pParent, const SfxItemSet& rInSet ) : SvxCharBasePage(pParent, "EffectsPage", "cui/ui/effectspage.ui", rInSet) + , m_bOrigFontColor(false) + , m_bNewFontColor(false) { get(m_pFontColorFT, "fontcolorft"); get(m_pFontColorLB, "fontcolorlb"); @@ -1559,6 +1561,7 @@ sal_uInt16 nWhich = GetWhich( SID_ATTR_CHAR_COLOR ); SfxItemState eState = rSet.GetItemState( nWhich ); + m_bOrigFontColor = false; switch ( eState ) { case SfxItemState::UNKNOWN: @@ -1592,22 +1595,29 @@ m_pPreviewWin->Invalidate(); m_pFontColorLB->SelectEntry(aColor); + + m_aOrigFontColor = aColor; + m_bOrigFontColor = true; break; } } + m_bNewFontColor = false; } bool SvxCharEffectsPage::FillItemSetColor_Impl( SfxItemSet& rSet ) { sal_uInt16 nWhich = GetWhich( SID_ATTR_CHAR_COLOR ); - const SvxColorItem* pOld = static_cast(GetOldItem( rSet, SID_ATTR_CHAR_COLOR )); - bool bChanged = true; const SfxItemSet& rOldSet = GetItemSet(); - Color aSelectedColor = m_pFontColorLB->GetSelectEntryColor(); + Color aSelectedColor; + bool bChanged = m_bNewFontColor; - if (pOld && pOld->GetValue() == aSelectedColor) - bChanged = false; + if (bChanged) + { + aSelectedColor = m_pFontColorLB->GetSelectEntryColor(); + if (m_bOrigFontColor) + bChanged = aSelectedColor != m_aOrigFontColor; + } if (bChanged) rSet.Put( SvxColorItem( aSelectedColor, nWhich ) ); @@ -1677,8 +1687,10 @@ } -IMPL_LINK_NOARG(SvxCharEffectsPage, ColorBoxSelectHdl_Impl, SvxColorListBox&, void) +IMPL_LINK(SvxCharEffectsPage, ColorBoxSelectHdl_Impl, SvxColorListBox&, rBox, void) { + if (m_pFontColorLB == &rBox) + m_bNewFontColor = true; UpdatePreview_Impl(); } @@ -2113,7 +2125,6 @@ m_pShadowBtn->SaveValue(); m_pBlinkingBtn->SaveValue(); m_pHiddenBtn->SaveValue(); - m_pFontColorLB->SaveValue(); } bool SvxCharEffectsPage::FillItemSet( SfxItemSet* rSet ) diff -Nru libreoffice-l10n-5.3.2~rc2/cui/uiconfig/ui/tsaurldialog.ui libreoffice-l10n-5.3.3~rc2/cui/uiconfig/ui/tsaurldialog.ui --- libreoffice-l10n-5.3.2~rc2/cui/uiconfig/ui/tsaurldialog.ui 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/cui/uiconfig/ui/tsaurldialog.ui 2017-05-03 16:46:29.000000000 +0000 @@ -1,7 +1,6 @@ - - + False 6 @@ -118,16 +117,15 @@ 6 12 - + True False - True - True - 6 + vertical True False + 6 0 0 Add or delete Time Stamp Authority URLs @@ -136,8 +134,25 @@ 60 - 0 - 0 + False + True + 0 + + + + + True + True + True + True + + + + + + False + True + 1 @@ -154,6 +169,8 @@ 2 0 + 1 + 1 @@ -164,37 +181,11 @@ - 0 - 1 - - - - - True - True - True - True - in - - - True - True - True - True - - - - - - - - 1 - 0 + False + True + 2 - - - @@ -220,6 +211,7 @@ help + delete add ok cancel diff -Nru libreoffice-l10n-5.3.2~rc2/debian/changelog libreoffice-l10n-5.3.3~rc2/debian/changelog --- libreoffice-l10n-5.3.2~rc2/debian/changelog 2017-03-30 07:39:38.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/debian/changelog 2017-05-03 17:40:08.000000000 +0000 @@ -1,3 +1,15 @@ +libreoffice-l10n (1:5.3.3~rc2-0ubuntu0.17.10.1~lo0) artful; urgency=medium + + * new upstream rc + + -- Rico Tzschichholz Wed, 03 May 2017 19:40:08 +0200 + +libreoffice-l10n (1:5.3.3~rc1-0ubuntu1~zesty0) zesty; urgency=medium + + * new upstream rc + + -- Rico Tzschichholz Wed, 19 Apr 2017 22:41:00 +0200 + libreoffice-l10n (1:5.3.2~rc2-0ubuntu1~zesty0) zesty; urgency=medium * new upstream rc diff -Nru libreoffice-l10n-5.3.2~rc2/debian/config libreoffice-l10n-5.3.3~rc2/debian/config --- libreoffice-l10n-5.3.2~rc2/debian/config 2017-03-30 07:39:38.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/debian/config 2017-05-03 17:40:08.000000000 +0000 @@ -1,5 +1,5 @@ BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, fastjar, flex (>= 2.3.35), gperf, libc0.1 (>= 2.10.2-7) [kfreebsd-any], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libgl1-mesa-dev, 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-7 (>= 7-20170106) [m68k], g++-7 (>= 7-20170106) [m68k] , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.42) , libexttextcat-dev (>= 3.4.1) , libjpeg-dev , libxml2-dev, libxml2-utils , libxslt1-dev , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng-dev , libcurl4-gnutls-dev , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 9.20160114) , dpkg-dev (>= 1.18.2~) , libcppunit-dev (>= 1.13.2-2.1) , gdb [!kfreebsd-amd64 !kfreebsd-i386 !sparc64] , fontconfig [!kfreebsd-amd64 !kfreebsd-i386 !sparc64] , fonts-liberation [!kfreebsd-amd64 !kfreebsd-i386 !sparc64] , fonts-crosextra-carlito [!kfreebsd-amd64 !kfreebsd-i386 !sparc64] , junit4 (>= 4.8.2-2) [!kfreebsd-amd64 !kfreebsd-i386 !sparc64] , maven-repo-helper , java-common (>= 0.49) , default-jdk (>= 1:1.6) [!hppa !mips64 !s390 !sparc] , default-jdk (>= 2:1.7-52.1) [kfreebsd-any] , default-jdk (>= 2:1.8-55) [sparc64] , ant (>= 1.7.0) [!hppa !ia64 !mips64 !s390 !sparc], ant-optional (>= 1.7.0) [!hppa !ia64 !mips64 !s390 !sparc] , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , libnspr4-dev , ucpp , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-filesystem-dev (>= 1.58) , libboost-system-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-program-options-dev (>= 1.58), libboost-filesystem-dev (>= 1.58) , libmdds-dev (>= 1.2) , 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.1) , libodfgen-dev (>= 0.1) , libetonyek-dev , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libpagemaker-dev , libe-book-dev , 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) , default-libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.7-4) , libgtk2.0-dev (>= 2.10) , libgtk-3-dev (>= 3.8~) , gobject-introspection (>= 1.32.0), libgirepository1.0-dev (>= 1.32) , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) [!hppa !ia64 !mips64 !s390 !sparc], libarchive-zip-perl [!hppa !ia64 !mips64 !s390 !sparc] , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [linux-any] , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libepoxy-dev (>= 1.2) , libglm-dev (>= 0.9.6.3) , libglib2.0-dev (>= 2.15.0) , gettext , make (>= 3.81-8.2) -CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:5.3.2~rc2-0ubuntu1~zesty0' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --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 --enable-release-build --with-alloc=system --enable-extension-integration --with-gdrive-client-id=424119844901-gee57209rkbo1rgula4i0arilvgv3lsf.apps.googleusercontent.com --with-gdrive-client-secret=3h1DknIrVsq2wEhIuADVxQ3E --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --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-coinmp --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-libgltf --with-system-opencollada --with-system-collada2gltf --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-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-ucpp --with-system-firebird --with-system-libeot --with-system-glm --disable-firebird-sdbc --disable-gltf --disable-coinmp --enable-symbols --without-export-validation --with-jdk-home=/usr/lib/jvm/default-java --with-commons-logging-jar=/usr/share/java/commons-logging.jar --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 --enable-kde4 --enable-ext-mariadb-connector --disable-firebird-sdbc --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-dconf --disable-ccache +CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:5.3.3~rc2-0ubuntu0.17.04.1~lo0' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --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 --enable-release-build --with-alloc=system --enable-extension-integration --with-gdrive-client-id=424119844901-gee57209rkbo1rgula4i0arilvgv3lsf.apps.googleusercontent.com --with-gdrive-client-secret=3h1DknIrVsq2wEhIuADVxQ3E --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --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-coinmp --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-libgltf --with-system-opencollada --with-system-collada2gltf --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-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-ucpp --with-system-firebird --with-system-libeot --with-system-glm --disable-firebird-sdbc --disable-gltf --disable-coinmp --enable-symbols --without-export-validation --with-jdk-home=/usr/lib/jvm/default-java --with-commons-logging-jar=/usr/share/java/commons-logging.jar --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 --enable-kde4 --enable-ext-mariadb-connector --disable-firebird-sdbc --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-dconf --disable-ccache 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.3.2~rc2/debian/control libreoffice-l10n-5.3.3~rc2/debian/control --- libreoffice-l10n-5.3.2~rc2/debian/control 2017-03-30 07:39:38.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/debian/control 2017-05-03 17:40:08.000000000 +0000 @@ -2690,7 +2690,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-en, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- English_american help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2708,7 +2708,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-ca, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Catalan help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2726,7 +2726,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-cs, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Czech help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2744,7 +2744,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-da, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Danish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2762,7 +2762,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-de, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- German help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2780,7 +2780,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-dz, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Dzongkha help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2798,7 +2798,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-el, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Greek help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2816,7 +2816,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-en, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- English_british help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2834,7 +2834,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-es, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Spanish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2852,7 +2852,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-et, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Estonian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2870,7 +2870,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-eu, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Basque help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2888,7 +2888,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-fi, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Finnish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2906,7 +2906,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-fr, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- French help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2924,7 +2924,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-gl, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Galician help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2942,7 +2942,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-hi, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Hindi help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2960,7 +2960,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-hu, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Hungarian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2978,7 +2978,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-it, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Italian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -2996,7 +2996,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-ja, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Japanese help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3014,7 +3014,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-km, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Khmer help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3032,7 +3032,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-ko, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Korean help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3050,7 +3050,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-nl, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Dutch help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3068,7 +3068,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-om, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Oromo help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3086,7 +3086,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-pl, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Polish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3104,7 +3104,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-pt, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Portuguese help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3122,7 +3122,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-pt, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Portuguese_brazilian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3140,7 +3140,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-ru, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Russian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3158,7 +3158,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-sk, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Slovak help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3176,7 +3176,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-sl, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Slovenian help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3194,7 +3194,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-sv, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Swedish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3212,7 +3212,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-tr, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Turkish help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3230,7 +3230,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-vi, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Vietnamese help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3248,7 +3248,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-zh, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Chinese_simplified help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. @@ -3266,7 +3266,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-zh, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- Chinese_traditional help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. diff -Nru libreoffice-l10n-5.3.2~rc2/debian/control.help.in libreoffice-l10n-5.3.3~rc2/debian/control.help.in --- libreoffice-l10n-5.3.2~rc2/debian/control.help.in 2017-03-20 12:48:22.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/debian/control.help.in 2017-04-19 20:41:00.000000000 +0000 @@ -7,7 +7,7 @@ libreoffice-style-default, libreoffice-writer | language-support-translations-%{isocode_firstpart}, ${misc:Depends} -Provides: libreoffice-help-${help-l10n-virtual-version} +Provides: libreoffice-help (= ${help-l10n-virtual-version}) Description: office productivity suite -- %{language_name} help LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. diff -Nru libreoffice-l10n-5.3.2~rc2/debian/rules libreoffice-l10n-5.3.3~rc2/debian/rules --- libreoffice-l10n-5.3.2~rc2/debian/rules 2017-03-20 12:48:22.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/debian/rules 2017-04-19 20:41:00.000000000 +0000 @@ -11,8 +11,8 @@ DEB_DISTRIBUTION = $(call dpkg_late_eval,DEB_DISTRIBUTION,dpkg-parsechangelog | sed -n -e 's/^Distribution: //p') BASE_VERSION:=$(shell echo $(DEB_VERSION) | cut -d: -f1):$(DEB_VERSION_UPSTREAM) BINARY_VERSION=$(DEB_VERSION) -HELP_L10N_VIRTUAL_VERSION:=5.2 -OOVER:=5.2 +HELP_L10N_VIRTUAL_VERSION:=5.3 +OOVER:=5.3 NEXT_OOVER:=$(shell echo "$(OOVER) + 0.1" | bc) ARCH_INDEP_PACKAGES := $(shell dh_listpackages -i) diff -Nru libreoffice-l10n-5.3.2~rc2/download.lst libreoffice-l10n-5.3.3~rc2/download.lst --- libreoffice-l10n-5.3.2~rc2/download.lst 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/download.lst 2017-05-03 16:46:29.000000000 +0000 @@ -111,7 +111,8 @@ export MYSQLCPPCONN_TARBALL := 7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz export NEON_TARBALL := 231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz -export NSS_TARBALL := 0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz +export NSS_MD5SUM := e55ee06b22687df68fafc6a30c0554b2 +export NSS_TARBALL := nss-3.29.5-with-nspr-4.13.1.tar.gz export ODFGEN_MD5SUM := 32572ea48d9021bbd6fa317ddb697abc export ODFGEN_VERSION_MICRO := 6 export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.bz2 diff -Nru libreoffice-l10n-5.3.2~rc2/extensions/source/propctrlr/browserlistbox.cxx libreoffice-l10n-5.3.3~rc2/extensions/source/propctrlr/browserlistbox.cxx --- libreoffice-l10n-5.3.2~rc2/extensions/source/propctrlr/browserlistbox.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/extensions/source/propctrlr/browserlistbox.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -332,9 +332,11 @@ ,m_bUpdate(true) ,m_pControlContextImpl( new PropertyControlContext_Impl( *this ) ) { - ScopedVclPtrInstance< ListBox > aListBox(this,WB_DROPDOWN); - aListBox->SetPosSizePixel(Point(0,0),Size(100,100)); - m_nRowHeight = aListBox->GetSizePixel().Height()+2; + ScopedVclPtrInstance aListBox(this, WB_DROPDOWN); + ScopedVclPtrInstance aEditBox(this); + m_nRowHeight = std::max(aListBox->get_preferred_size().Height(), + aEditBox->get_preferred_size().Height()); + m_nRowHeight += 2; SetBackground( pParent->GetBackground() ); m_aLinesPlayground->SetBackground( GetBackground() ); @@ -345,7 +347,6 @@ m_aVScroll->SetScrollHdl(LINK(this, OBrowserListBox, ScrollHdl)); } - OBrowserListBox::~OBrowserListBox() { disposeOnce(); diff -Nru libreoffice-l10n-5.3.2~rc2/external/hunspell/0002-fix-other-regression-in-compounding.patch libreoffice-l10n-5.3.3~rc2/external/hunspell/0002-fix-other-regression-in-compounding.patch --- libreoffice-l10n-5.3.2~rc2/external/hunspell/0002-fix-other-regression-in-compounding.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/hunspell/0002-fix-other-regression-in-compounding.patch 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,43 @@ +From 1fada01663b29b57c010a9c274e45a5cf9ecf222 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?L=C3=A1szl=C3=B3=20N=C3=A9meth?= + +Date: Sun, 19 Mar 2017 13:19:29 +0100 +Subject: [PATCH 2/7] fix other regression in compounding +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Allow compound words again with +starting "kor", "alak", "asszony", "úr" +related to the "REP kor _kor" etc. rules +using the Hungarian spelling dictionary. + +regression from... + +commit 73b1cad1af7ab94252f75784fa6724cf062a6966 +Author: Martin Hosken +Date: Mon Apr 18 16:28:26 2016 +0700 + + Add support for bounded conversion +--- + src/hunspell/affixmgr.cxx | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hunspell/affixmgr.cxx b/src/hunspell/affixmgr.cxx +index 78c70e7..ec2093d 100644 +--- a/src/hunspell/affixmgr.cxx ++++ b/src/hunspell/affixmgr.cxx +@@ -1290,8 +1290,8 @@ int AffixMgr::cpdrep_check(const char* word, int wl) { + // search every occurence of the pattern in the word + while ((r = strstr(r, reptable[i].pattern.c_str())) != NULL) { + std::string candidate(word); +- size_t type = r == word ? 1 : 0; +- if (r - word + reptable[i].pattern.size() == lenp) ++ size_t type = r == word && langnum != LANG_hu ? 1 : 0; ++ if (r - word + reptable[i].pattern.size() == lenp && langnum != LANG_hu) + type += 2; + candidate.replace(r - word, lenp, reptable[i].outstrings[type]); + if (candidate_check(candidate.c_str(), candidate.size())) +-- +2.7.4 + diff -Nru libreoffice-l10n-5.3.2~rc2/external/hunspell/0005-fix-syllable-counting-in-compound-word-handling.patch libreoffice-l10n-5.3.3~rc2/external/hunspell/0005-fix-syllable-counting-in-compound-word-handling.patch --- libreoffice-l10n-5.3.2~rc2/external/hunspell/0005-fix-syllable-counting-in-compound-word-handling.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/hunspell/0005-fix-syllable-counting-in-compound-word-handling.patch 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,66 @@ +From f4ec6a283f972c82d068f4472320d424c40d45cb Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?L=C3=A1szl=C3=B3=20N=C3=A9meth?= + +Date: Thu, 23 Mar 2017 16:40:52 +0100 +Subject: [PATCH 5/7] fix syllable counting in compound word handling +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Note: one of the fixed regressions is related to an old +hidden mistake: using clen instead of blen of the stem +word lengths was indifferent with the original get_syllable(), +because blen == clen at 8-bit encodings, and UTF-8 +words were handled by null-termination. Implementing Unicode +support in Hunspell, clen was changed only in +compound_check_morph() to blen accidentally, but not +in compound_check(), resulting problems from the +recent std::string conversion. + +Now this commit is a real fix for the regression from the +commit c63c93237e4decdba5544a96093448605ac549c2, +instead of the following bad fix: + +commit d06b0c57ae87ee8743f1bf53f80c1f8e364db619 +Author: László Németh +Date: Fri Mar 17 15:11:23 2017 +0100 + + fix Hungarian compound word handling +--- + src/hunspell/affixmgr.cxx | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/hunspell/affixmgr.cxx b/src/hunspell/affixmgr.cxx +index 2ed8233..3d65539 100644 +--- a/src/hunspell/affixmgr.cxx ++++ b/src/hunspell/affixmgr.cxx +@@ -1816,7 +1816,7 @@ struct hentry* AffixMgr::compound_check(const std::string& word, + // LANG_hu section: spec. Hungarian rule + if (langnum == LANG_hu) { + // calculate syllable number of the word +- numsyllable += get_syllable(st.substr(i)); ++ numsyllable += get_syllable(st.substr(0, i)); + // + 1 word, if syllable number of the prefix > 1 (hungarian + // convention) + if (pfx && (get_syllable(pfx->getKey()) > 1)) +@@ -1901,7 +1901,7 @@ struct hentry* AffixMgr::compound_check(const std::string& word, + (compoundend && TESTAFF(rv->astr, compoundend, rv->alen))) && + (((cpdwordmax == -1) || (wordnum + 1 < cpdwordmax)) || + ((cpdmaxsyllable != 0) && +- (numsyllable + get_syllable(std::string(HENTRY_WORD(rv), rv->clen)) <= ++ (numsyllable + get_syllable(std::string(HENTRY_WORD(rv), rv->blen)) <= + cpdmaxsyllable))) && + ( + // test CHECKCOMPOUNDPATTERN +@@ -2382,7 +2382,7 @@ int AffixMgr::compound_check_morph(const char* word, + // LANG_hu section: spec. Hungarian rule + if (langnum == LANG_hu) { + // calculate syllable number of the word +- numsyllable += get_syllable(st.substr(i)); ++ numsyllable += get_syllable(st.substr(0, i)); + + // + 1 word, if syllable number of the prefix > 1 (hungarian + // convention) +-- +2.7.4 + diff -Nru libreoffice-l10n-5.3.2~rc2/external/hunspell/UnpackedTarball_hunspell.mk libreoffice-l10n-5.3.3~rc2/external/hunspell/UnpackedTarball_hunspell.mk --- libreoffice-l10n-5.3.2~rc2/external/hunspell/UnpackedTarball_hunspell.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/hunspell/UnpackedTarball_hunspell.mk 2017-05-03 16:46:29.000000000 +0000 @@ -28,6 +28,8 @@ external/hunspell/0002-add-a-get_clen_and_captype-varient-that-takes-a-buff.patch \ external/hunspell/0003-hoist-string-lowering-from-ngram-to-ngsuggest.patch \ external/hunspell/0004-either-clear-will-be-called-anyway-before-use-or-its.patch \ + external/hunspell/0002-fix-other-regression-in-compounding.patch \ + external/hunspell/0005-fix-syllable-counting-in-compound-word-handling.patch \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-5.3.2~rc2/external/icu/icu4c-changeset-39671.patch.1 libreoffice-l10n-5.3.3~rc2/external/icu/icu4c-changeset-39671.patch.1 --- libreoffice-l10n-5.3.2~rc2/external/icu/icu4c-changeset-39671.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/icu/icu4c-changeset-39671.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,189 @@ +diff -ur icu.org/source/common/utext.cpp icu/source/common/utext.cpp +--- icu.org/source/common/utext.cpp 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/common/utext.cpp 2017-04-21 16:38:15.993398034 +0200 +@@ -847,9 +847,15 @@ + //------------------------------------------------------------------------------ + + // Chunk size. +-// Must be less than 85, because of byte mapping from UChar indexes to native indexes. +-// Worst case is three native bytes to one UChar. (Supplemenaries are 4 native bytes +-// to two UChars.) ++// Must be less than 42 (256/6), because of byte mapping from UChar indexes to native indexes. ++// Worst case there are six UTF-8 bytes per UChar. ++// obsolete 6 byte form fd + 5 trails maps to fffd ++// obsolete 5 byte form fc + 4 trails maps to fffd ++// non-shortest 4 byte forms maps to fffd ++// normal supplementaries map to a pair of utf-16, two utf8 bytes per utf-16 unit ++// mapToUChars array size must allow for the worst case, 6. ++// This could be brought down to 4, by treating fd and fc as pure illegal, ++// rather than obsolete lead bytes. But that is not compatible with the utf-8 access macros. + // + enum { UTF8_TEXT_CHUNK_SIZE=32 }; + +@@ -867,6 +873,15 @@ + // pair. Doing this is simpler than checking for the edge case. + // + ++// erAck: older MSVC used on libreoffice-5-3 and 5-2 bails out with ++// error C2070: 'unknown': illegal sizeof operand ++// for sizeof(UTF8Buf::mapToUChars) ++// so have an ugly workaround: ++// First define a macro of the original size expression, so a follow-up patch ++// on the original code would fail.. ++#define UGLY_MAPTOUCHARS_SIZE (UTF8_TEXT_CHUNK_SIZE*6+6) ++#define UGLY_SIZEOF_MAPTOUCHARS (sizeof(uint8_t)*(UGLY_MAPTOUCHARS_SIZE)) ++ + struct UTF8Buf { + int32_t bufNativeStart; // Native index of first char in UChar buf + int32_t bufNativeLimit; // Native index following last char in buf. +@@ -889,7 +904,7 @@ + // Requires two extra slots, + // one for a supplementary starting in the last normal position, + // and one for an entry for the buffer limit position. +- uint8_t mapToUChars[UTF8_TEXT_CHUNK_SIZE*3+6]; // Map native offset from bufNativeStart to ++ uint8_t mapToUChars[UGLY_MAPTOUCHARS_SIZE]; // Map native offset from bufNativeStart to + // correspoding offset in filled part of buf. + int32_t align; + }; +@@ -1032,6 +1047,7 @@ + // Requested index is in this buffer. + u8b = (UTF8Buf *)ut->p; // the current buffer + mapIndex = ix - u8b->toUCharsMapStart; ++ U_ASSERT(mapIndex < (int32_t)UGLY_SIZEOF_MAPTOUCHARS); + ut->chunkOffset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; + return TRUE; + +@@ -1298,6 +1314,10 @@ + // Can only do this if the incoming index is somewhere in the interior of the string. + // If index is at the end, there is no character there to look at. + if (ix != ut->b) { ++ // Note: this function will only move the index back if it is on a trail byte ++ // and there is a preceding lead byte and the sequence from the lead ++ // through this trail could be part of a valid UTF-8 sequence ++ // Otherwise the index remains unchanged. + U8_SET_CP_START(s8, 0, ix); + } + +@@ -1311,7 +1331,10 @@ + UChar *buf = u8b->buf; + uint8_t *mapToNative = u8b->mapToNative; + uint8_t *mapToUChars = u8b->mapToUChars; +- int32_t toUCharsMapStart = ix - (UTF8_TEXT_CHUNK_SIZE*3 + 1); ++ int32_t toUCharsMapStart = ix - UGLY_SIZEOF_MAPTOUCHARS + 1; ++ // Note that toUCharsMapStart can be negative. Happens when the remaining ++ // text from current position to the beginning is less than the buffer size. ++ // + 1 because mapToUChars must have a slot at the end for the bufNativeLimit entry. + int32_t destIx = UTF8_TEXT_CHUNK_SIZE+2; // Start in the overflow region + // at end of buffer to leave room + // for a surrogate pair at the +@@ -1338,6 +1361,7 @@ + if (c<0x80) { + // Special case ASCII range for speed. + buf[destIx] = (UChar)c; ++ U_ASSERT(toUCharsMapStart <= srcIx); + mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; + mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); + } else { +@@ -1367,6 +1391,7 @@ + do { + mapToUChars[sIx-- - toUCharsMapStart] = (uint8_t)destIx; + } while (sIx >= srcIx); ++ U_ASSERT(toUCharsMapStart <= (srcIx+1)); + + // Set native indexing limit to be the current position. + // We are processing a non-ascii, non-native-indexing char now; +@@ -1541,6 +1566,7 @@ + U_ASSERT(index>=ut->chunkNativeStart+ut->nativeIndexingLimit); + U_ASSERT(index<=ut->chunkNativeLimit); + int32_t mapIndex = index - u8b->toUCharsMapStart; ++ U_ASSERT(mapIndex < (int32_t)UGLY_SIZEOF_MAPTOUCHARS); + int32_t offset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; + U_ASSERT(offset>=0 && offset<=ut->chunkLength); + return offset; +diff -ur icu.org/source/test/intltest/utxttest.cpp icu/source/test/intltest/utxttest.cpp +--- icu.org/source/test/intltest/utxttest.cpp 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/test/intltest/utxttest.cpp 2017-04-21 16:14:57.383814739 +0200 +@@ -67,6 +67,8 @@ + if (exec) Ticket10983(); break; + case 7: name = "Ticket12130"; + if (exec) Ticket12130(); break; ++ case 8: name = "Ticket12888"; ++ if (exec) Ticket12888(); break; + default: name = ""; break; + } + } +@@ -1583,3 +1585,63 @@ + } + utext_close(&ut); + } ++ ++// Ticket 12888: bad handling of illegal utf-8 containing many instances of the archaic, now illegal, ++// six byte utf-8 forms. Original implementation had an assumption that ++// there would be at most three utf-8 bytes per UTF-16 code unit. ++// The five and six byte sequences map to a single replacement character. ++ ++void UTextTest::Ticket12888() { ++ const char *badString = ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80"; ++ ++ UErrorCode status = U_ZERO_ERROR; ++ LocalUTextPointer ut(utext_openUTF8(NULL, badString, -1, &status)); ++ TEST_SUCCESS(status); ++ for (;;) { ++ UChar32 c = utext_next32(ut.getAlias()); ++ if (c == U_SENTINEL) { ++ break; ++ } ++ } ++ int32_t endIdx = utext_getNativeIndex(ut.getAlias()); ++ if (endIdx != (int32_t)strlen(badString)) { ++ errln("%s:%d expected=%d, actual=%d", __FILE__, __LINE__, strlen(badString), endIdx); ++ return; ++ } ++ ++ for (int32_t prevIndex = endIdx; prevIndex>0;) { ++ UChar32 c = utext_previous32(ut.getAlias()); ++ int32_t currentIndex = utext_getNativeIndex(ut.getAlias()); ++ if (c != 0xfffd) { ++ errln("%s:%d (expected, actual, index) = (%d, %d, %d)\n", ++ __FILE__, __LINE__, 0xfffd, c, currentIndex); ++ break; ++ } ++ if (currentIndex != prevIndex - 6) { ++ errln("%s:%d: wrong index. Expected, actual = %d, %d", ++ __FILE__, __LINE__, prevIndex - 6, currentIndex); ++ break; ++ } ++ prevIndex = currentIndex; ++ } ++} +diff -ur icu.org/source/test/intltest/utxttest.h icu/source/test/intltest/utxttest.h +--- icu.org/source/test/intltest/utxttest.h 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/test/intltest/utxttest.h 2017-04-21 16:14:57.383814739 +0200 +@@ -38,6 +38,7 @@ + void Ticket10562(); + void Ticket10983(); + void Ticket12130(); ++ void Ticket12888(); + + private: + struct m { // Map between native indices & code points. diff -Nru libreoffice-l10n-5.3.2~rc2/external/icu/UnpackedTarball_icu.mk libreoffice-l10n-5.3.3~rc2/external/icu/UnpackedTarball_icu.mk --- libreoffice-l10n-5.3.2~rc2/external/icu/UnpackedTarball_icu.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/icu/UnpackedTarball_icu.mk 2017-05-03 16:46:29.000000000 +0000 @@ -27,6 +27,7 @@ $(if $(filter-out ANDROID,$(OS)),external/icu/icu4c-icudata-stdlibs.diff) \ $(if $(filter EMSCRIPTEN,$(OS)),external/icu/icu4c-emscripten.patch.1) \ external/icu/khmerbreakengine.patch \ + external/icu/icu4c-changeset-39671.patch.1 \ )) $(eval $(call gb_UnpackedTarball_add_file,icu,source/data/brkitr/khmerdict.dict,external/icu/khmerdict.dict)) diff -Nru libreoffice-l10n-5.3.2~rc2/external/libcmis/libcmis-fix-google-drive-2.patch libreoffice-l10n-5.3.3~rc2/external/libcmis/libcmis-fix-google-drive-2.patch --- libreoffice-l10n-5.3.2~rc2/external/libcmis/libcmis-fix-google-drive-2.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/libcmis/libcmis-fix-google-drive-2.patch 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,125 @@ +diff --git a/src/libcmis/oauth2-providers.cxx b/src/libcmis/oauth2-providers.cxx +index 74c0fec..30fedb0 100644 +--- a/src/libcmis/oauth2-providers.cxx ++++ b/src/libcmis/oauth2-providers.cxx +@@ -41,6 +41,7 @@ + #define CHALLENGE_PAGE_ACTION_LEN sizeof( CHALLENGE_PAGE_ACTION ) - 1 + #define PIN_FORM_ACTION "/signin/challenge/ipp" + #define PIN_FORM_ACTION_LEN sizeof( PIN_FORM_ACTION ) - 1 ++#define PIN_INPUT_NAME "Pin" + + using namespace std; + +@@ -80,7 +81,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + // send the first get, receive the html login page + res = session->httpGetRequest( authUrl )->getStream( )->str( ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -102,7 +103,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + loginEmailRes = session->httpPostRequest ( loginEmailLink, loginEmailIs, CONTENT_TYPE ) + ->getStream( )->str( ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -113,7 +114,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + if ( !parseResponse( loginEmailRes.c_str( ), loginPasswdPost, loginPasswdLink ) ) + return string( ); + +- loginPasswdPost += "&Passwd="; ++ loginPasswdPost += "Passwd="; + loginPasswdPost += string( password ); + + istringstream loginPasswdIs( loginPasswdPost ); +@@ -124,7 +125,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + loginPasswdRes = session->httpPostRequest ( loginPasswdLink, loginPasswdIs, CONTENT_TYPE ) + ->getStream( )->str( ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -152,7 +153,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + } + + loginChallengeLink = "https://accounts.google.com" + loginChallengeLink; +- loginChallengePost += "Pin="; ++ loginChallengePost += string( PIN_INPUT_NAME ) + "="; + loginChallengePost += string( pin ); + + istringstream loginChallengeIs( loginChallengePost ); +@@ -163,7 +164,7 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + loginChallengeRes = session->httpPostRequest ( loginChallengeLink, loginChallengeIs, CONTENT_TYPE ) + ->getStream( )->str( ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -221,7 +222,7 @@ string OAuth2Providers::OAuth2Alfresco( HttpSession* session, const string& auth + { + res = session->httpGetRequest( authUrl )->getStream( )->str( ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -247,7 +248,7 @@ string OAuth2Providers::OAuth2Alfresco( HttpSession* session, const string& auth + // Alfresco code is in the redirect link + resp = session->httpPostRequest( loginLink, loginIs, CONTENT_TYPE, false ); + } +- catch ( const CurlException& e ) ++ catch ( const CurlException& ) + { + return string( ); + } +@@ -291,6 +292,8 @@ int OAuth2Providers::parseResponse ( const char* response, string& post, string& + if ( reader == NULL ) return 0; + + bool readInputField = false; ++ bool bIsRightForm = false; ++ bool bHasPinField = false; + + while ( true ) + { +@@ -301,6 +304,12 @@ int OAuth2Providers::parseResponse ( const char* response, string& post, string& + // Find the redirect link + if ( xmlStrEqual( nodeName, BAD_CAST( "form" ) ) ) + { ++ // 2FA: Don't add fields form other forms not having pin field ++ if ( bIsRightForm && !bHasPinField ) ++ post = string( "" ); ++ if ( bIsRightForm && bHasPinField ) ++ break; ++ + xmlChar* action = xmlTextReaderGetAttribute( reader, + BAD_CAST( "action" )); + +@@ -311,7 +320,7 @@ int OAuth2Providers::parseResponse ( const char* response, string& post, string& + bool bChallengePage = ( strncmp( (char*)action, + CHALLENGE_PAGE_ACTION, + CHALLENGE_PAGE_ACTION_LEN ) == 0 ); +- bool bIsRightForm = ( strncmp( (char*)action, ++ bIsRightForm = ( strncmp( (char*)action, + PIN_FORM_ACTION, + PIN_FORM_ACTION_LEN ) == 0 ); + if ( ( xmlStrlen( action ) > 0 ) +@@ -332,6 +341,8 @@ int OAuth2Providers::parseResponse ( const char* response, string& post, string& + BAD_CAST( "name" )); + xmlChar* value = xmlTextReaderGetAttribute( reader, + BAD_CAST( "value" )); ++ if ( name != NULL && strcmp( (char*)name, PIN_INPUT_NAME ) == 0 ) ++ bHasPinField = true; + if ( ( name != NULL ) && ( value!= NULL ) ) + { + if ( ( xmlStrlen( name ) > 0) && ( xmlStrlen( value ) > 0) ) + diff -Nru libreoffice-l10n-5.3.2~rc2/external/libcmis/UnpackedTarball_cmis.mk libreoffice-l10n-5.3.3~rc2/external/libcmis/UnpackedTarball_cmis.mk --- libreoffice-l10n-5.3.2~rc2/external/libcmis/UnpackedTarball_cmis.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/libcmis/UnpackedTarball_cmis.mk 2017-05-03 16:46:29.000000000 +0000 @@ -17,6 +17,7 @@ external/libcmis/libcmis-libxml2_compatibility.patch \ external/libcmis/libcmis-fix-google-drive.patch \ external/libcmis/libcmis-google-2FA-implementation.patch \ + external/libcmis/libcmis-fix-google-drive-2.patch \ external/libcmis/libcmis-sharepoint-repository-root.patch \ )) diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/ExternalProject_nss.mk libreoffice-l10n-5.3.3~rc2/external/nss/ExternalProject_nss.mk --- libreoffice-l10n-5.3.2~rc2/external/nss/ExternalProject_nss.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/ExternalProject_nss.mk 2017-05-03 16:46:29.000000000 +0000 @@ -77,6 +77,7 @@ $(MAKE) -j1 AR="$(AR)" \ RANLIB="$(RANLIB)" \ NMEDIT="$(NM)edit" \ + CCC="$(CXX)" \ $(if $(CROSS_COMPILING),NSPR_CONFIGURE_OPTS="--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)") \ nss_build_all \ && rm -f $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/*.a \ diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss-ios.patch libreoffice-l10n-5.3.3~rc2/external/nss/nss-ios.patch --- libreoffice-l10n-5.3.2~rc2/external/nss/nss-ios.patch 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss-ios.patch 2017-05-03 16:46:29.000000000 +0000 @@ -52,8 +52,8 @@ --- a/a/nss/coreconf/Darwin.mk +++ a/a/nss/coreconf/Darwin.mk @@ -124,7 +124,7 @@ - # May override this with -bundle to create a loadable module. - DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @__________________________________________________OOO/$(notdir $@) -headerpad_max_install_names + DSO_LDOPTS += --coverage + endif -MKSHLIB = $(CC) $(DSO_LDOPTS) $(DARWIN_SDK_SHLIBFLAGS) +MKSHLIB = touch $@; echo diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss_macosx.patch libreoffice-l10n-5.3.3~rc2/external/nss/nss_macosx.patch --- libreoffice-l10n-5.3.2~rc2/external/nss/nss_macosx.patch 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss_macosx.patch 2017-05-03 16:46:29.000000000 +0000 @@ -13,21 +13,6 @@ diff -ru a/nss/coreconf/Darwin.mk b/nss/coreconf/Darwin.mk --- a/a/nss/coreconf/Darwin.mk 2014-09-29 16:50:22.992304799 +0100 +++ b/b/nss/coreconf/Darwin.mk 2014-09-29 16:51:59.214931953 +0100 -@@ -8,8 +8,12 @@ - - DEFAULT_COMPILER = gcc - --CC = gcc --CCC = g++ -+# CC is taken from environment automatically. -+#CC = cc -+# Use CCC from environment. -+#CCC = c++ -+CCC = $(CXX) -+ - RANLIB = ranlib - - ifndef CPU_ARCH @@ -20,13 +24,17 @@ ifeq (,$(filter-out i%86,$(CPU_ARCH))) @@ -71,8 +56,8 @@ -DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @executable_path/$(notdir $@) -headerpad_max_install_names +DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @__________________________________________________OOO/$(notdir $@) -headerpad_max_install_names - MKSHLIB = $(CC) $(DSO_LDOPTS) $(DARWIN_SDK_SHLIBFLAGS) - DLL_SUFFIX = dylib + ifdef USE_GCOV + OS_CFLAGS += --coverage diff -ru a/nss/Makefile b/nss/Makefile --- a/a/nss/Makefile 2014-09-29 16:50:22.990304789 +0100 +++ b/b/nss/Makefile 2014-09-29 16:51:59.207931908 +0100 diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss-more-static.patch libreoffice-l10n-5.3.3~rc2/external/nss/nss-more-static.patch --- libreoffice-l10n-5.3.2~rc2/external/nss/nss-more-static.patch 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss-more-static.patch 2017-05-03 16:46:29.000000000 +0000 @@ -9,30 +9,30 @@ /* determine if hybrid platform, then actually load the DSO. */ static PRStatus @@ -136,9 +136,9 @@ - return PR_FAILURE; - } + return PR_FAILURE; + } -- handle = loader_LoadLibrary(name); -- if (handle) { -- PRFuncPtr address = PR_FindFunctionSymbol(handle, "FREEBL_GetVector"); -+ handle = 0; -+ { -+ PRFuncPtr address = FREEBL_GetVector; - PRStatus status; - if (address) { - FREEBLGetVectorFn * getVector = (FREEBLGetVectorFn *)address; +- handle = loader_LoadLibrary(name); +- if (handle) { +- PRFuncPtr address = PR_FindFunctionSymbol(handle, "FREEBL_GetVector"); ++ handle = 0; ++ { ++ PRFuncPtr address = FREEBL_GetVector; + if (address) { + FREEBLGetVectorFn *getVector = (FREEBLGetVectorFn *)address; + const FREEBLVector *dsoVector = getVector(); @@ -887,6 +887,7 @@ void BL_Unload(void) { +#if 0 - /* This function is not thread-safe, but doesn't need to be, because it is - * only called from functions that are also defined as not thread-safe, - * namely C_Finalize in softoken, and the SSL bypass shutdown callback called + /* This function is not thread-safe, but doesn't need to be, because it is + * only called from functions that are also defined as not thread-safe, + * namely C_Finalize in softoken, and the SSL bypass shutdown callback called @@ -905,6 +905,7 @@ - blLib = NULL; - } - loadFreeBLOnce = pristineCallOnce; + } + blLib = NULL; + loadFreeBLOnce = pristineCallOnce; +#endif } diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss.patch libreoffice-l10n-5.3.3~rc2/external/nss/nss.patch --- libreoffice-l10n-5.3.2~rc2/external/nss/nss.patch 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss.patch 2017-05-03 16:46:29.000000000 +0000 @@ -54,24 +54,16 @@ diff -ru nss.orig/nss/coreconf/arch.mk nss/nss/coreconf/arch.mk --- a/nss.orig/nss/coreconf/arch.mk 2016-02-12 15:36:18.000000000 +0100 +++ b/nss/nss/coreconf/arch.mk 2016-02-23 20:48:31.595941079 +0100 -@@ -280,15 +280,21 @@ - # IMPL_STRATEGY may be defined too. - # - --ifdef CROSS_COMPILE --OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ --else --OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ --endif +@@ -280,11 +280,17 @@ + OBJDIR_NAME_COMPILER = $(COMPILER_TAG) + endif + OBJDIR_NAME_BASE = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(OBJDIR_NAME_COMPILER)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG) +-OBJDIR_NAME = $(OBJDIR_NAME_BASE).OBJ +# OBJDIR_NAME is used to build the directory containing the built objects, for +# example mozilla/dist/Linux2.6_x86_glibc_PTH_DBG.OBJ +# We need to deliver the contents of that folder into instdir. To make that +# easier in the makefile we rename this directory to "out". -+#ifdef CROSS_COMPILE -+#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ -+#else -+#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ -+#endif ++#OBJDIR_NAME = $(OBJDIR_NAME_BASE).OBJ +OBJDIR_NAME = out @@ -96,20 +88,6 @@ diff -ru a/nss/coreconf/Linux.mk b/nss/coreconf/Linux.mk --- a/a/nss/coreconf/Linux.mk 2014-09-29 16:46:38.189421588 +0100 +++ b/b/nss/coreconf/Linux.mk 2014-09-29 16:47:42.985012235 +0100 -@@ -16,8 +16,11 @@ - IMPL_STRATEGY = _PTH - endif - --CC = gcc --CCC = g++ -+# CC is taken from environment automatically. -+#CC = gcc -+# Use CCC from environment. -+#CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - - DEFAULT_COMPILER = gcc @@ -157,7 +160,7 @@ # against the libsanitizer runtime built into the main executable. ZDEFS_FLAG = -Wl,-z,defs @@ -172,6 +150,19 @@ #! gmake # # This Source Code Form is subject to the terms of the Mozilla Public +@@ -91,10 +91,10 @@ + NSPR_CONFIGURE_ENV = CC=gcc CXX=g++ + endif + ifdef CC +-NSPR_CONFIGURE_ENV = CC=$(CC) ++NSPR_CONFIGURE_ENV = CC="$(CC) " + endif + ifdef CCC +-NSPR_CONFIGURE_ENV += CXX=$(CCC) ++NSPR_CONFIGURE_ENV += CXX="$(CCC) " + endif + # Remove -arch definitions. NSPR can't handle that. + NSPR_CONFIGURE_ENV := $(filter-out -arch x86_64,$(NSPR_CONFIGURE_ENV)) diff -ru nss.orig/nss/coreconf/Werror.mk nss/nss/coreconf/Werror.mk --- a/nss.orig/nss/coreconf/Werror.mk 2016-02-12 15:36:18.000000000 +0100 +++ b/nss/nss/coreconf/Werror.mk 2016-02-23 23:58:15.119584046 +0100 diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss.utf8bom.patch.1 libreoffice-l10n-5.3.3~rc2/external/nss/nss.utf8bom.patch.1 --- libreoffice-l10n-5.3.2~rc2/external/nss/nss.utf8bom.patch.1 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss.utf8bom.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -1,12 +1,3 @@ -diff -ur nss.org/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h nss/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h ---- nss.org/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h 2016-03-31 18:26:06.763009800 +0800 -+++ nss/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h 2016-03-31 19:17:11.724452000 +0800 -@@ -1,4 +1,4 @@ --// Copyright 2005, Google Inc. -+// Copyright 2005, Google Inc. - // All rights reserved. - // - // Redistribution and use in source and binary forms, with or without diff -ur nss.org/nss/lib/ckfw/builtins/certdata.perl nss/nss/lib/ckfw/builtins/certdata.perl --- nss.org/nss/lib/ckfw/builtins/certdata.perl 2016-03-31 18:26:07.890190900 +0800 +++ nss/nss/lib/ckfw/builtins/certdata.perl 2016-03-31 19:16:16.727269600 +0800 diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/nss.windowbuild.patch.0 libreoffice-l10n-5.3.3~rc2/external/nss/nss.windowbuild.patch.0 --- libreoffice-l10n-5.3.2~rc2/external/nss/nss.windowbuild.patch.0 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/nss.windowbuild.patch.0 2017-05-03 16:46:29.000000000 +0000 @@ -1,5 +1,5 @@ ---- ./nss/external_tests/ssl_gtest/tls_connect.cc -+++ ./nss/external_tests/ssl_gtest/tls_connect.cc +--- ./nss/gtests/ssl_gtest/tls_connect.cc ++++ ./nss/gtests/ssl_gtest/tls_connect.cc @@ -375,6 +375,12 @@ } } @@ -13,8 +13,8 @@ void TlsConnectTestBase::EnableAlpn() { client_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); server_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); ---- ./nss/external_tests/ssl_gtest/tls_connect.h -+++ ./nss/external_tests/ssl_gtest/tls_connect.h +--- ./nss/gtests/ssl_gtest/tls_connect.h ++++ ./nss/gtests/ssl_gtest/tls_connect.h @@ -113,12 +113,6 @@ SessionResumptionMode expected_resumption_mode_; std::vector> session_ids_; @@ -26,10 +26,10 @@ - const uint8_t alpn_dummy_val_[4] = {0x01, 0x62, 0x01, 0x61}; - private: - void CheckResumption(SessionResumptionMode expected); - void CheckExtendedMasterSecret(); ---- ./nss/external_tests/ssl_gtest/ssl_loopback_unittest.cc -+++ ./nss/external_tests/ssl_gtest/ssl_loopback_unittest.cc + static inline Mode ToMode(const std::string& str) { + return str == "TLS" ? STREAM : DGRAM; +--- ./nss/gtests/ssl_gtest/ssl_loopback_unittest.cc ++++ ./nss/gtests/ssl_gtest/ssl_loopback_unittest.cc @@ -51,6 +51,12 @@ CheckAlpn("a"); } @@ -43,8 +43,8 @@ TEST_P(TlsConnectGeneric, ConnectAlpnClone) { EnsureModelSockets(); client_model_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); ---- ./nss/external_tests/ssl_gtest/databuffer.h -+++ ./nss/external_tests/ssl_gtest/databuffer.h +--- ./nss/gtests/ssl_gtest/databuffer.h ++++ ./nss/gtests/ssl_gtest/databuffer.h @@ -10,6 +10,7 @@ #include #include diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/ubsan-alignment.patch.0 libreoffice-l10n-5.3.3~rc2/external/nss/ubsan-alignment.patch.0 --- libreoffice-l10n-5.3.2~rc2/external/nss/ubsan-alignment.patch.0 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/ubsan-alignment.patch.0 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ ---- nss/lib/freebl/md5.c -+++ nss/lib/freebl/md5.c -@@ -445,7 +445,7 @@ - /* Iterate over 64-byte chunks of the message. */ - while (inputLen >= MD5_BUFFER_SIZE) { - #ifdef IS_LITTLE_ENDIAN --#ifdef NSS_X86_OR_X64 -+#if 0 - /* x86 can handle arithmetic on non-word-aligned buffers */ - wBuf = (PRUint32 *)input; - #else ---- nss/lib/freebl/sha_fast.c -+++ nss/lib/freebl/sha_fast.c -@@ -16,7 +16,7 @@ - #include "ssltrace.h" - #endif - --static void shaCompress(volatile SHA_HW_t *X, const PRUint32 *datain); -+static void shaCompress(volatile SHA_HW_t *X, const unsigned char *datain); - - #define W u.w - #define B u.b -@@ -241,7 +241,7 @@ - * code on AMD64. - */ - static void --shaCompress(volatile SHA_HW_t *X, const PRUint32 *inbuf) -+shaCompress(volatile SHA_HW_t *X, const unsigned char *inbuf) - { - register SHA_HW_t A, B, C, D, E; - -@@ -277,7 +277,7 @@ - a = SHA_ROTL(b, 5) + SHA_F4(c, d, e) + a + XW(n) + K3; \ - c = SHA_ROTL(c, 30) - --#define LOAD(n) XW(n) = SHA_HTONL(inbuf[n]) -+#define LOAD(n) XW(n) = (((PRUint32)inbuf[4*n])<<24)|(((PRUint32)inbuf[4*n+1])<<16)|(((PRUint32)inbuf[4*n+2])<<8)|((PRUint32)inbuf[4*n+3]) - - A = XH(0); - B = XH(1); diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/ubsan.patch.0 libreoffice-l10n-5.3.3~rc2/external/nss/ubsan.patch.0 --- libreoffice-l10n-5.3.2~rc2/external/nss/ubsan.patch.0 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/ubsan.patch.0 2017-05-03 16:46:29.000000000 +0000 @@ -1,14 +1,3 @@ ---- nss/lib/certdb/crl.c -+++ nss/lib/certdb/crl.c -@@ -1982,7 +1982,7 @@ - return SECSuccess; - } - /* all CRLs are good, sort them by thisUpdate */ -- qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); -+ if (cache->ncrls != 0) qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); - - if (cache->ncrls) { - /* pick the newest CRL */ --- nss/lib/softoken/legacydb/pk11db.c +++ nss/lib/softoken/legacydb/pk11db.c @@ -65,7 +65,7 @@ diff -Nru libreoffice-l10n-5.3.2~rc2/external/nss/UnpackedTarball_nss.mk libreoffice-l10n-5.3.3~rc2/external/nss/UnpackedTarball_nss.mk --- libreoffice-l10n-5.3.2~rc2/external/nss/UnpackedTarball_nss.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/nss/UnpackedTarball_nss.mk 2017-05-03 16:46:29.000000000 +0000 @@ -44,7 +44,6 @@ ifneq ($(filter -fsanitize=%,$(CC)),) $(eval $(call gb_UnpackedTarball_add_patches,nss,\ external/nss/asan.patch.1 \ - external/nss/ubsan-alignment.patch.0 \ )) endif endif diff -Nru libreoffice-l10n-5.3.2~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 libreoffice-l10n-5.3.3~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 --- libreoffice-l10n-5.3.2~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,43 @@ +From 590681e546cd9aa18d57dc2ea1858cb734a3863f Mon Sep 17 00:00:00 2001 +From: Dave Beckett +Date: Sun, 16 Apr 2017 23:15:12 +0100 +Subject: [PATCH] Calcualte max nspace declarations correctly for XML writer + +(raptor_xml_writer_start_element_common): Calculate max including for +each attribute a potential name and value. + +Fixes Issues #0000617 http://bugs.librdf.org/mantis/view.php?id=617 +and #0000618 http://bugs.librdf.org/mantis/view.php?id=618 +--- + src/raptor_xml_writer.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/src/raptor_xml_writer.c b/src/raptor_xml_writer.c +index 693b946..0d3a36a 100644 +--- a/src/raptor_xml_writer.c ++++ b/src/raptor_xml_writer.c +@@ -181,9 +181,10 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + size_t nspace_declarations_count = 0; + unsigned int i; + +- /* max is 1 per element and 1 for each attribute + size of declared */ + if(nstack) { +- int nspace_max_count = element->attribute_count+1; ++ int nspace_max_count = element->attribute_count * 2; /* attr and value */ ++ if(element->name->nspace) ++ nspace_max_count++; + if(element->declared_nspaces) + nspace_max_count += raptor_sequence_size(element->declared_nspaces); + if(element->xml_language) +@@ -237,7 +238,7 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + } + } + +- /* Add the attribute + value */ ++ /* Add the attribute's value */ + nspace_declarations[nspace_declarations_count].declaration= + raptor_qname_format_as_xml(element->attributes[i], + &nspace_declarations[nspace_declarations_count].length); +-- +2.9.3 + diff -Nru libreoffice-l10n-5.3.2~rc2/external/redland/UnpackedTarball_raptor.mk libreoffice-l10n-5.3.3~rc2/external/redland/UnpackedTarball_raptor.mk --- libreoffice-l10n-5.3.2~rc2/external/redland/UnpackedTarball_raptor.mk 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/external/redland/UnpackedTarball_raptor.mk 2017-05-03 16:46:29.000000000 +0000 @@ -26,6 +26,7 @@ external/redland/raptor/ubsan.patch \ $(if $(SYSTEM_LIBXML),,external/redland/raptor/rpath.patch) \ external/redland/raptor/xml2-config.patch \ + external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-5.3.2~rc2/extras/source/autocorr/lang/pt/DocumentList.xml libreoffice-l10n-5.3.3~rc2/extras/source/autocorr/lang/pt/DocumentList.xml --- libreoffice-l10n-5.3.2~rc2/extras/source/autocorr/lang/pt/DocumentList.xml 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/extras/source/autocorr/lang/pt/DocumentList.xml 2017-05-03 16:46:29.000000000 +0000 @@ -182,6 +182,8 @@ + + @@ -199,6 +201,7 @@ + @@ -208,9 +211,13 @@ + + + + @@ -239,6 +246,7 @@ + @@ -430,6 +438,7 @@ + @@ -1472,6 +1481,8 @@ + + diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/cgm.cxx libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/cgm.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/cgm.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/cgm.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -101,7 +101,7 @@ sal_uInt32 CGM::ImplGetUI16( sal_uInt32 /*nAlign*/ ) { sal_uInt8* pSource = mpSource + mnParaSize; - if (pSource + 2 > mpEndValidSource) + if (mpEndValidSource - pSource < 2) throw css::uno::Exception("attempt to read past end of input", nullptr); mnParaSize += 2; return ( pSource[ 0 ] << 8 ) + pSource[ 1 ]; @@ -115,7 +115,7 @@ sal_Int32 CGM::ImplGetI( sal_uInt32 nPrecision ) { sal_uInt8* pSource = mpSource + mnParaSize; - if (pSource + nPrecision > mpEndValidSource) + if (static_cast(mpEndValidSource - pSource) < nPrecision) throw css::uno::Exception("attempt to read past end of input", nullptr); mnParaSize += nPrecision; switch( nPrecision ) @@ -147,7 +147,7 @@ sal_uInt32 CGM::ImplGetUI( sal_uInt32 nPrecision ) { sal_uInt8* pSource = mpSource + mnParaSize; - if (pSource + nPrecision > mpEndValidSource) + if (static_cast(mpEndValidSource - pSource) < nPrecision) throw css::uno::Exception("attempt to read past end of input", nullptr); mnParaSize += nPrecision; switch( nPrecision ) @@ -202,7 +202,7 @@ const bool bCompatible = false; #endif - if (mpSource + mnParaSize + nRealSize > mpEndValidSource) + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nRealSize) throw css::uno::Exception("attempt to read past end of input", nullptr); if ( bCompatible ) diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class1.cxx libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class1.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class1.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class1.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -176,8 +176,11 @@ { while ( mnParaSize < mnElementSize ) { - sal_uInt32 nSize; - nSize = ImplGetUI( 1 ); + sal_uInt32 nSize = ImplGetUI(1); + + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nSize) + throw css::uno::Exception("attempt to read past end of input", nullptr); + pElement->aFontList.InsertName( mpSource + mnParaSize, nSize ); mnParaSize += nSize; } @@ -187,10 +190,12 @@ { while ( mnParaSize < mnElementSize ) { - sal_uInt32 nCharSetType; - sal_uInt32 nSize; - nCharSetType = ImplGetUI16(); - nSize = ImplGetUI( 1 ); + sal_uInt32 nCharSetType = ImplGetUI16(); + sal_uInt32 nSize = ImplGetUI(1); + + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nSize) + throw css::uno::Exception("attempt to read past end of input", nullptr); + pElement->aFontList.InsertCharSet( (CharSetType)nCharSetType, mpSource + mnParaSize, nSize ); mnParaSize += nSize; } diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class2.cxx libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class2.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class2.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -147,7 +147,10 @@ aTempLineBundle.eLineType = (LineType)ImplGetI( pElement->nIndexPrecision ); aTempLineBundle.nLineWidth = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempLineBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateLineBundle = aTempLineBundle.GetIndex() == pElement->pLineBundle->GetIndex(); CGMElements::InsertBundle( pElement->aLineList, aTempLineBundle ); + if (bUpdateLineBundle) + pElement->pLineBundle = static_cast(CGMElements::GetBundleIndex(aTempLineBundle.GetIndex(), pElement->aLineList, pElement->aLineBundle)); } break; case 0x0c : /*Marker Representation*/ @@ -157,7 +160,10 @@ aTempMarkerBundle.eMarkerType = (MarkerType)ImplGetI( pElement->nIndexPrecision ); aTempMarkerBundle.nMarkerSize = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempMarkerBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateMarkerBundle = aTempMarkerBundle.GetIndex() == pElement->pMarkerBundle->GetIndex(); CGMElements::InsertBundle( pElement->aMarkerList, aTempMarkerBundle ); + if (bUpdateMarkerBundle) + pElement->pMarkerBundle = static_cast(CGMElements::GetBundleIndex(aTempMarkerBundle.GetIndex(), pElement->aMarkerList, pElement->aMarkerBundle)); } break; case 0x0d : /*Text Representation*/ @@ -169,7 +175,10 @@ aTempTextBundle.nCharacterSpacing = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempTextBundle.nCharacterExpansion = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempTextBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateTextBundle = aTempTextBundle.GetIndex() == pElement->pTextBundle->GetIndex(); CGMElements::InsertBundle( pElement->aTextList, aTempTextBundle ); + if (bUpdateTextBundle) + pElement->pTextBundle = static_cast(CGMElements::GetBundleIndex(aTempTextBundle.GetIndex(), pElement->aTextList, pElement->aTextBundle)); } break; case 0x0e : /*Fill Representation*/ @@ -180,7 +189,10 @@ aTempFillBundle.SetColor( ImplGetBitmapColor() ); aTempFillBundle.nFillPatternIndex = ImplGetI( pElement->nIndexPrecision ); aTempFillBundle.nFillHatchIndex = ImplGetI( pElement->nIndexPrecision ); + const bool bUpdateFillBundle = aTempFillBundle.GetIndex() == pElement->pFillBundle->GetIndex(); CGMElements::InsertBundle( pElement->aFillList, aTempFillBundle ); + if (bUpdateFillBundle) + pElement->pFillBundle = static_cast(CGMElements::GetBundleIndex(aTempFillBundle.GetIndex(), pElement->aFillList, pElement->aFillBundle)); } break; case 0x0f : /*Edge Representation*/ @@ -190,7 +202,10 @@ aTempEdgeBundle.eEdgeType = (EdgeType)ImplGetI( pElement->nIndexPrecision ); aTempEdgeBundle.nEdgeWidth = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempEdgeBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateEdgeBundle = aTempEdgeBundle.GetIndex() == pElement->pEdgeBundle->GetIndex(); CGMElements::InsertBundle( pElement->aEdgeList, aTempEdgeBundle ); + if (bUpdateEdgeBundle) + pElement->pEdgeBundle = static_cast(CGMElements::GetBundleIndex(aTempEdgeBundle.GetIndex(), pElement->aEdgeList, pElement->aEdgeBundle)); } break; case 0x10 : /*Interior Style Specification Mode */break; // NS diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class4.cxx libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class4.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/graphicfilter/icgm/class4.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/graphicfilter/icgm/class4.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -178,15 +178,18 @@ case 0x04 : /*Text*/ { FloatPoint aFloatPoint; - sal_uInt32 nType, nSize; if ( mbFigure ) mpOutAct->CloseRegion(); ImplGetPoint ( aFloatPoint, true ); - nType = ImplGetUI16( 4 ); - nSize = ImplGetUI( 1 ); - mpSource[ mnParaSize + nSize ] = 0; + sal_uInt32 nType = ImplGetUI16( 4 ); + sal_uInt32 nSize = ImplGetUI( 1 ); + + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nSize) + throw css::uno::Exception("attempt to read past end of input", nullptr); + + mpSource[mnParaSize + nSize] = 0; awt::Size aSize; awt::Point aPoint( (long)aFloatPoint.X, (long)aFloatPoint.Y ); @@ -200,7 +203,6 @@ { double dx, dy; FloatPoint aFloatPoint; - sal_uInt32 nType, nSize; if ( mbFigure ) mpOutAct->CloseRegion(); @@ -219,8 +221,11 @@ ImplMapDouble( dy ); ImplGetPoint ( aFloatPoint, true ); - nType = ImplGetUI16( 4 ); - nSize = ImplGetUI( 1 ); + sal_uInt32 nType = ImplGetUI16(4); + sal_uInt32 nSize = ImplGetUI(1); + + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nSize) + throw css::uno::Exception("attempt to read past end of input", nullptr); mpSource[ mnParaSize + nSize ] = 0; @@ -234,10 +239,12 @@ case 0x06 : /*Append Text*/ { - sal_uInt32 nSize; sal_uInt32 nType = ImplGetUI16( 4 ); + sal_uInt32 nSize = ImplGetUI( 1 ); + + if (static_cast(mpEndValidSource - (mpSource + mnParaSize)) < nSize) + throw css::uno::Exception("attempt to read past end of input", nullptr); - nSize = ImplGetUI( 1 ); mpSource[ mnParaSize + nSize ] = 0; mpOutAct->AppendText( reinterpret_cast(mpSource) + mnParaSize, nSize, (FinalFlag)nType ); diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/msfilter/msdffimp.cxx libreoffice-l10n-5.3.3~rc2/filter/source/msfilter/msdffimp.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/msfilter/msdffimp.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/msfilter/msdffimp.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1935,9 +1935,8 @@ for ( sal_uInt16 i = 0; i < nNumElem; i++ ) { PropVec aHandlePropVec; - sal_uInt32 nFlagsTmp; - SvxMSDffHandleFlags nFlags; - sal_Int32 nPositionX, nPositionY, nCenterX, nCenterY, nRangeXMin, nRangeXMax, nRangeYMin, nRangeYMax; + sal_uInt32 nFlagsTmp(0); + sal_Int32 nPositionX(0), nPositionY(0), nCenterX(0), nCenterY(0), nRangeXMin(0), nRangeXMax(0), nRangeYMin(0), nRangeYMax(0); rIn.ReadUInt32( nFlagsTmp ) .ReadInt32( nPositionX ) .ReadInt32( nPositionY ) @@ -1947,7 +1946,7 @@ .ReadInt32( nRangeXMax ) .ReadInt32( nRangeYMin ) .ReadInt32( nRangeYMax ); - nFlags = static_cast(nFlagsTmp); + SvxMSDffHandleFlags nFlags = static_cast(nFlagsTmp); if ( nPositionX == 2 ) // replacing center position with absolute value nPositionX = nCoordWidth / 2; if ( nPositionY == 2 ) @@ -2204,7 +2203,6 @@ { css::uno::Sequence< css::drawing::EnhancedCustomShapeSegment > aSegments; - sal_uInt16 i, nTmp; sal_uInt16 nNumElemSeg = 0; if ( SeekToContent( DFF_Prop_pSegmentInfo, rIn ) ) @@ -2221,14 +2219,13 @@ } if ( nNumElemSeg ) { - sal_Int16 nCommand; - sal_Int16 nCnt; aSegments.realloc( nNumElemSeg ); - for ( i = 0; i < nNumElemSeg; i++ ) + for (sal_uInt16 i = 0; i < nNumElemSeg; ++i) { + sal_uInt16 nTmp(0); rIn.ReadUInt16( nTmp ); - nCommand = EnhancedCustomShapeSegmentCommand::UNKNOWN; - nCnt = (sal_Int16)( nTmp & 0x1fff );//Last 13 bits for segment points number + sal_Int16 nCommand = EnhancedCustomShapeSegmentCommand::UNKNOWN; + sal_Int16 nCnt = (sal_Int16)( nTmp & 0x1fff );//Last 13 bits for segment points number switch( nTmp >> 13 )//First 3 bits for command type { case 0x0: @@ -3198,7 +3195,7 @@ if ( !maFidcls.empty() ) { sal_uInt32 nMerk = rSt.Tell(); - sal_uInt32 nShapeId, nSec = ( nId >> 10 ) - 1; + sal_uInt32 nSec = ( nId >> 10 ) - 1; if ( nSec < mnIdClusters ) { OffsetMap::const_iterator it = maDgOffsetTable.find( maFidcls[ nSec ].dgid ); @@ -3221,6 +3218,7 @@ DffRecordHeader aShapeHd; if ( SeekToRec( rSt, DFF_msofbtSp, aEscherObjListHd.GetRecEndFilePos(), &aShapeHd ) ) { + sal_uInt32 nShapeId(0); rSt.ReadUInt32( nShapeId ); if ( nId == nShapeId ) { @@ -4229,7 +4227,7 @@ aObjData.bChildAnchor = maShapeRecords.SeekToContent( rSt, DFF_msofbtChildAnchor, SEEK_FROM_CURRENT_AND_RESTART ); if ( aObjData.bChildAnchor ) { - sal_Int32 l, o, r, u; + sal_Int32 l(0), o(0), r(0), u(0); rSt.ReadInt32( l ).ReadInt32( o ).ReadInt32( r ).ReadInt32( u ); Scale( l ); Scale( o ); @@ -4861,14 +4859,14 @@ { if ( GetSvxMSDffSettings() & SVXMSDFF_SETTINGS_IMPORT_PPT ) { - sal_Int32 l, t, r, b; + sal_Int32 l(0), t(0), r(0), b(0); if ( aShapeAtom.nRecLen == 16 ) { rSt.ReadInt32( l ).ReadInt32( t ).ReadInt32( r ).ReadInt32( b ); } else { - sal_Int16 ls, ts, rs, bs; + sal_Int16 ls(0), ts(0), rs(0), bs(0); rSt.ReadInt16( ts ).ReadInt16( ls ).ReadInt16( rs ).ReadInt16( bs ); // the order of coordinates is a bit strange... l = ls; t = ts; @@ -4894,7 +4892,7 @@ } else if ( aShapeAtom.nRecType == DFF_msofbtChildAnchor ) { - sal_Int32 l, o, r, u; + sal_Int32 l(0), o(0), r(0), u(0); rSt.ReadInt32( l ).ReadInt32( o ).ReadInt32( r ).ReadInt32( u ); Scale( l ); Scale( o ); @@ -4940,7 +4938,7 @@ break; if ( aShapeAtom.nRecType == DFF_msofbtChildAnchor ) { - sal_Int32 l, o, r, u; + sal_Int32 l(0), o(0), r(0), u(0); rSt.ReadInt32( l ).ReadInt32( o ).ReadInt32( r ).ReadInt32( u ); Scale( l ); Scale( o ); @@ -6057,12 +6055,13 @@ // We've found the Property Table: // search for the Blip Property! sal_uLong nPropRead = 0; - sal_uInt16 nPropId; - sal_uInt32 nPropVal; nLenShapePropTbl = nLength; long nStartShapePropTbl = rSt.Tell(); do { + sal_uInt16 nPropId(0); + sal_uInt32 nPropVal(0); + rSt.ReadUInt16( nPropId ) .ReadUInt32( nPropVal ); nPropRead += 6; @@ -6351,7 +6350,7 @@ rBLIPStream.SeekRel( nSkip + 20 ); // read in size of metafile in EMUS - sal_Int32 width, height; + sal_Int32 width(0), height(0); rBLIPStream.ReadInt32( width ).ReadInt32( height ); aMtfSize100.Width() = width; aMtfSize100.Height() = height; @@ -6717,16 +6716,16 @@ if( xOle10Stm->GetError() ) return false; - sal_uInt32 nType; - sal_uInt32 nRecType; - sal_uInt32 nStrLen; OUString aSvrName; sal_uInt32 nDummy0; sal_uInt32 nDummy1; - sal_uInt32 nDataLen; sal_uInt32 nBytesRead = 0; do { + sal_uInt32 nType(0); + sal_uInt32 nRecType(0); + sal_uInt32 nStrLen(0); + rStm.ReadUInt32( nType ); rStm.ReadUInt32( nRecType ); rStm.ReadUInt32( nStrLen ); @@ -6743,6 +6742,7 @@ } rStm.ReadUInt32( nDummy0 ); rStm.ReadUInt32( nDummy1 ); + sal_uInt32 nDataLen(0); rStm.ReadUInt32( nDataLen ); nBytesRead += 6 * sizeof( sal_uInt32 ) + nStrLen + nDataLen; @@ -7162,7 +7162,7 @@ } else if( pDataStrm ) { - sal_uInt32 nLen, nDummy; + sal_uInt32 nLen(0), nDummy(0); pDataStrm->ReadUInt32( nLen ).ReadUInt32( nDummy ); if( SVSTREAM_OK != pDataStrm->GetError() || // Id in BugDoc - exist there other Ids? diff -Nru libreoffice-l10n-5.3.2~rc2/filter/source/msfilter/svdfppt.cxx libreoffice-l10n-5.3.3~rc2/filter/source/msfilter/svdfppt.cxx --- libreoffice-l10n-5.3.2~rc2/filter/source/msfilter/svdfppt.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/filter/source/msfilter/svdfppt.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2905,7 +2905,18 @@ // obsolete here, too. pRet->getSdrPageProperties().ClearItem(); pRet->getSdrPageProperties().PutItemSet(rSlidePersist.pBObj->GetMergedItemSet()); - SdrObject::Free( rSlidePersist.pBObj ); + if (rSlidePersist.pSolverContainer) + { + for (SvxMSDffConnectorRule* pPtr : rSlidePersist.pSolverContainer->aCList) + { + // check connections to the group object + if (pPtr->pAObj == rSlidePersist.pBObj) + pPtr->pAObj = nullptr; + if (pPtr->pBObj == rSlidePersist.pBObj) + pPtr->pBObj = nullptr; + } + } + SdrObject::Free(rSlidePersist.pBObj); } } } @@ -5888,6 +5899,14 @@ bool bIsHardAttribute = ( ( pParaSet->mnAttrSet & nMask ) != 0 ); + sal_uInt16 nDepth = pParaSet->mnDepth; + + if (nDepth >= nMaxPPTLevels) + { + SAL_WARN("filter.ms", "Para Style Sheet depth " << nDepth << " but " << nMaxPPTLevels - 1 << " is max possible"); + nDepth = nMaxPPTLevels - 1; + } + if ( bIsHardAttribute ) { if ( nAttr == PPT_ParaAttr_BulletColor ) @@ -5896,7 +5915,7 @@ if ( pParaSet->mnAttrSet & ( 1 << PPT_ParaAttr_BuHardColor ) ) bHardBulletColor = pParaSet->mpArry[ PPT_ParaAttr_BuHardColor ] != 0; else - bHardBulletColor = ( mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[ pParaSet->mnDepth ].mnBuFlags + bHardBulletColor = ( mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[nDepth].mnBuFlags & ( 1 << PPT_ParaAttr_BuHardColor ) ) != 0; if ( bHardBulletColor ) rRetValue = pParaSet->mnBulletColor; @@ -5912,7 +5931,7 @@ } else { - rRetValue = mrStyleSheet.mpCharSheet[ nDestinationInstance ]->maCharLevel[ pParaSet->mnDepth ].mnFontColor; + rRetValue = mrStyleSheet.mpCharSheet[ nDestinationInstance ]->maCharLevel[nDepth].mnFontColor; } } } @@ -5923,7 +5942,7 @@ if ( pParaSet->mnAttrSet & ( 1 << PPT_ParaAttr_BuHardFont ) ) bHardBuFont = pParaSet->mpArry[ PPT_ParaAttr_BuHardFont ] != 0; else - bHardBuFont = ( mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[ pParaSet->mnDepth ].mnBuFlags + bHardBuFont = ( mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[nDepth].mnBuFlags & ( 1 << PPT_ParaAttr_BuHardFont ) ) != 0; if ( bHardBuFont ) rRetValue = pParaSet->mpArry[ PPT_ParaAttr_BulletFont ]; @@ -5940,7 +5959,7 @@ } else { - rRetValue = mrStyleSheet.mpCharSheet[ nDestinationInstance ]->maCharLevel[ pParaSet->mnDepth ].mnFont; + rRetValue = mrStyleSheet.mpCharSheet[ nDestinationInstance ]->maCharLevel[nDepth].mnFont; } } } @@ -5950,14 +5969,14 @@ } else { - const PPTParaLevel& rParaLevel = mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[ pParaSet->mnDepth ]; + const PPTParaLevel& rParaLevel = mrStyleSheet.mpParaSheet[ mnInstance ]->maParaLevel[nDepth]; PPTParaLevel* pParaLevel = nullptr; if ( ( nDestinationInstance == TSS_Type::Unknown ) - || ( pParaSet->mnDepth && ( ( mnInstance == TSS_Type::Subtitle ) || ( mnInstance == TSS_Type::TextInShape ) ) ) ) + || ( nDepth && ( ( mnInstance == TSS_Type::Subtitle ) || ( mnInstance == TSS_Type::TextInShape ) ) ) ) bIsHardAttribute = true; else if ( nDestinationInstance != mnInstance ) - pParaLevel = &mrStyleSheet.mpParaSheet[ nDestinationInstance ]->maParaLevel[ pParaSet->mnDepth ]; + pParaLevel = &mrStyleSheet.mpParaSheet[ nDestinationInstance ]->maParaLevel[nDepth]; switch ( nAttr ) { case PPT_ParaAttr_BulletOn : @@ -6005,7 +6024,7 @@ } else { - rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[ pParaSet->mnDepth ].mnFont; + rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[nDepth].mnFont; bIsHardAttribute = true; } } @@ -6041,7 +6060,7 @@ if( rPortion.mbHardHylinkOrigColor ) rRetValue = rPortion.mnHylinkOrigColor; else - rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[ pParaSet->mnDepth ].mnFontColor; + rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[nDepth].mnFontColor; bIsHardAttribute = true; } else @@ -6051,7 +6070,7 @@ } else { - rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[ pParaSet->mnDepth ].mnFontColor; + rRetValue = mrStyleSheet.mpCharSheet[ mnInstance ]->maCharLevel[nDepth].mnFontColor; bIsHardAttribute = true; } } diff -Nru libreoffice-l10n-5.3.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx libreoffice-l10n-5.3.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx --- libreoffice-l10n-5.3.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -110,6 +110,8 @@ void SAL_CALL VistaFilePicker::setMultiSelectionMode(sal_Bool bMode) throw(css::uno::RuntimeException) { + ensureInit(); + RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_SET_MULTISELECTION_MODE); rRequest->setArgument(PROP_MULTISELECTION_MODE, bMode); @@ -120,6 +122,8 @@ void SAL_CALL VistaFilePicker::setTitle(const OUString& sTitle) throw(css::uno::RuntimeException) { + ensureInit(); + RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_SET_TITLE); rRequest->setArgument(PROP_TITLE, sTitle); @@ -178,6 +182,8 @@ void SAL_CALL VistaFilePicker::setDefaultName(const OUString& sName ) throw(css::uno::RuntimeException) { + ensureInit(); + RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_SET_DEFAULT_NAME); rRequest->setArgument(PROP_FILENAME, sName); @@ -189,6 +195,8 @@ throw (css::lang::IllegalArgumentException, css::uno::RuntimeException ) { + ensureInit(); + bool bChanged = officecfg::Office::Common::Path::Info::WorkPathChanged::get( comphelper::getComponentContext(m_xSMGR)); if (bChanged ) @@ -212,6 +220,8 @@ OUString SAL_CALL VistaFilePicker::getDisplayDirectory() throw(css::uno::RuntimeException) { + ensureInit(); + RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_GET_DIRECTORY); m_aAsyncExecute.triggerRequestThreadAware(rRequest, AsyncRequests::BLOCKED); @@ -246,8 +256,7 @@ return lFiles; } -::sal_Int16 SAL_CALL VistaFilePicker::execute() - throw(css::uno::RuntimeException) +void VistaFilePicker::ensureInit() { bool bInitialized(false); { @@ -262,6 +271,12 @@ aInitArguments[0] <<= nTemplateDescription; initialize(aInitArguments); } +} + +::sal_Int16 SAL_CALL VistaFilePicker::execute() + throw(css::uno::RuntimeException) +{ + ensureInit(); RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_SHOW_DIALOG_MODAL); diff -Nru libreoffice-l10n-5.3.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx libreoffice-l10n-5.3.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx --- libreoffice-l10n-5.3.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -249,6 +249,8 @@ using WeakComponentImplHelperBase::disposing; + void ensureInit(); + private: diff -Nru libreoffice-l10n-5.3.2~rc2/.gitreview libreoffice-l10n-5.3.3~rc2/.gitreview --- libreoffice-l10n-5.3.2~rc2/.gitreview 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/.gitreview 2017-05-03 16:46:29.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-5-3-2 +defaultbranch=libreoffice-5-3-3 Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/hwpfilter/qa/cppunit/data/fail/cslist-1.hwp and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/hwpfilter/qa/cppunit/data/fail/cslist-1.hwp differ diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hbox.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hbox.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hbox.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hbox.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -332,8 +332,6 @@ , pgy(0) , pgno(0) , showpg(0) - , prev(nullptr) - , next(nullptr) { } diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hbox.h libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hbox.h --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hbox.h 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hbox.h 2017-05-03 16:46:29.000000000 +0000 @@ -316,8 +316,6 @@ short pgx, pgy; // physical xpos, ypos short pgno, showpg; // pageno where code is - FBox *prev, *next; - explicit FBox( hchar hch ); virtual ~FBox() override; }; diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hpara.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hpara.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hpara.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hpara.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -75,31 +75,18 @@ , etcflag(0) , ctrlflag(0) , pstyno(0) + , cshape(new CharShape) , linfo(nullptr) - , cshapep(nullptr) - , hhstr(nullptr) { - memset(&cshape, 0, sizeof(cshape)); + memset(cshape.get(), 0, sizeof(CharShape)); memset(&pshape, 0, sizeof(pshape)); } HWPPara::~HWPPara() { delete[] linfo; - delete[] cshapep; - if (hhstr) - { -// virtual destructor -/* C++은 null에 대해서도 동작한다. */ - for (int ii = 0; ii < nch; ++ii) - delete hhstr[ii]; - - delete[]hhstr; - } - } - bool HWPPara::Read(HWPFile & hwpf, unsigned char flag) { unsigned char same_cshape; @@ -114,18 +101,17 @@ hwpf.Read4b(&ctrlflag, 1); hwpf.Read1b(&pstyno, 1); - /* Paragraph representative character */ - cshape.Read(hwpf); + cshape->Read(hwpf); if (nch > 0) - hwpf.AddCharShape(&cshape); + hwpf.AddCharShape(cshape); /* Paragraph paragraphs shape */ if (nch && !reuse_shape) { pshape.Read(hwpf); - pshape.cshape = &cshape; - pshape.pagebreak = etcflag; + pshape.cshape = cshape.get(); + pshape.pagebreak = etcflag; } linfo = ::comphelper::newArray_null(nline); @@ -156,22 +142,19 @@ if (contain_cshape) { - cshapep = ::comphelper::newArray_null(nch); - if (!cshapep) - { - perror("Memory Allocation: cshape\n"); - return false; - } + cshapep.resize(nch); for (ii = 0; ii < nch; ii++) { + cshapep[ii].reset(new CharShape); + memset(cshapep[ii].get(), 0, sizeof(CharShape)); hwpf.Read1b(&same_cshape, 1); if (!same_cshape) { - cshapep[ii].Read(hwpf); + cshapep[ii]->Read(hwpf); if (nch > 1) - hwpf.AddCharShape(&cshapep[ii]); + hwpf.AddCharShape(cshapep[ii]); } else if (ii == 0) cshapep[ii] = cshape; @@ -180,14 +163,12 @@ } } // read string - hhstr = ::comphelper::newArray_null(nch); - if (!hhstr) { return false; } - for (ii = 0; ii < nch; ii++) - hhstr[ii] = nullptr; + hhstr.resize(nch); ii = 0; while (ii < nch) { - if (nullptr == (hhstr[ii] = readHBox(hwpf))) + hhstr[ii] = readHBox(hwpf); + if (!hhstr[ii]) return false; if (hhstr[ii]->hh == CH_END_PARA) break; @@ -198,102 +179,100 @@ return nch && !hwpf.State(); } - CharShape *HWPPara::GetCharShape(int pos) { if (contain_cshape == 0) - return &cshape; - return cshapep + pos; + return cshape.get(); + return cshapep[pos].get(); } - -HBox *HWPPara::readHBox(HWPFile & hwpf) +std::unique_ptr HWPPara::readHBox(HWPFile & hwpf) { + std::unique_ptr hbox; + hchar hh; if (!hwpf.Read2b(hh)) - return nullptr; - - HBox *hbox = nullptr; + return hbox; if (hwpf.State() != HWP_NoError) - return nullptr; + return hbox; if (hh > 31 || hh == CH_END_PARA) - hbox = new HBox(hh); + hbox.reset(new HBox(hh)); else if (IS_SP_SKIP_BLOCK(hh)) - hbox = new SkipData(hh); + hbox.reset(new SkipData(hh)); else { switch (hh) { case CH_FIELD: // 5 - hbox = new FieldCode; + hbox.reset(new FieldCode); break; case CH_BOOKMARK: // 6 - hbox = new Bookmark; + hbox.reset(new Bookmark); break; case CH_DATE_FORM: // 7 - hbox = new DateFormat; + hbox.reset(new DateFormat); break; case CH_DATE_CODE: // 8 - hbox = new DateCode; + hbox.reset(new DateCode); break; case CH_TAB: // 9 - hbox = new Tab; + hbox.reset(new Tab); break; case CH_TEXT_BOX: // 10 - hbox = new TxtBox; + hbox.reset(new TxtBox); break; case CH_PICTURE: // 11 - hbox = new Picture; + hbox.reset(new Picture); break; case CH_LINE: // 14 - hbox = new Line; + hbox.reset(new Line); break; case CH_HIDDEN: // 15 - hbox = new Hidden; + hbox.reset(new Hidden); break; case CH_HEADER_FOOTER: // 16 - hbox = new HeaderFooter; + hbox.reset(new HeaderFooter); break; case CH_FOOTNOTE: // 17 - hbox = new Footnote; + hbox.reset(new Footnote); break; case CH_AUTO_NUM: // 18 - hbox = new AutoNum; + hbox.reset(new AutoNum); break; case CH_NEW_NUM: // 19 - hbox = new NewNum; + hbox.reset(new NewNum); break; case CH_SHOW_PAGE_NUM: // 20 - hbox = new ShowPageNum; + hbox.reset(new ShowPageNum); break; case CH_PAGE_NUM_CTRL: // 21 - hbox = new PageNumCtrl; + hbox.reset(new PageNumCtrl); break; case CH_MAIL_MERGE: // 22 - hbox = new MailMerge; + hbox.reset(new MailMerge); break; case CH_COMPOSE: // 23 - hbox = new Compose; + hbox.reset(new Compose); break; case CH_HYPHEN: // 24 - hbox = new Hyphen; + hbox.reset(new Hyphen); break; case CH_TOC_MARK: // 25 - hbox = new TocMark; + hbox.reset(new TocMark); break; case CH_INDEX_MARK: // 26 - hbox = new IndexMark; + hbox.reset(new IndexMark); break; case CH_OUTLINE: // 28 - hbox = new Outline; + hbox.reset(new Outline); break; case CH_KEEP_SPACE: // 30 - hbox = new KeepSpace; + hbox.reset(new KeepSpace); break; case CH_FIXED_SPACE: // 31 - hbox = new FixedSpace; + hbox.reset(new FixedSpace); break; default: break; @@ -301,13 +280,12 @@ } if (!hbox || !hbox->Read(hwpf)) { - delete hbox; - - return nullptr; + hbox.reset(); + return hbox; } if( hh == CH_TEXT_BOX || hh == CH_PICTURE || hh == CH_LINE ) { - FBox *fbox = static_cast(hbox); + FBox *fbox = static_cast(hbox.get()); if( ( fbox->style.anchor_type == 1) && ( fbox->pgy >= begin_ypos) ) { //strange construct to compile without warning diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hpara.h libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hpara.h --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hpara.h 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hpara.h 2017-05-03 16:46:29.000000000 +0000 @@ -23,6 +23,7 @@ #include #include #include +#include struct HBox; @@ -102,15 +103,15 @@ */ unsigned long ctrlflag; unsigned char pstyno; - CharShape cshape; /* When characters are all the same shape */ + std::shared_ptr cshape; /* When characters are all the same shape */ ParaShape pshape; /* if reuse flag is 0, */ LineInfo *linfo; - CharShape *cshapep; + std::vector> cshapep; /** * Box object list */ - HBox **hhstr; + std::vector> hhstr; HWPPara(void); ~HWPPara(void); @@ -135,7 +136,7 @@ HWPPara *Next(void) { return _next;} private: - HBox *readHBox(HWPFile &); + std::unique_ptr readHBox(HWPFile &); }; #endif // INCLUDED_HWPFILTER_SOURCE_HPARA_H diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpfile.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpfile.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpfile.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpfile.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -70,7 +70,7 @@ for (; it != plist.end(); ++it) delete *it; - std::list < Table* >::iterator tbl = tables.begin(); + std::vector< Table* >::iterator tbl = tables.begin(); for (; tbl != tables.end(); ++tbl) delete *tbl; @@ -241,9 +241,9 @@ bool HWPFile::ReadParaList(std::list < HWPPara* > &aplist, unsigned char flag) { - HWPPara *spNode = new HWPPara; - unsigned char tmp_etcflag; - unsigned char prev_etcflag = 0; + std::unique_ptr spNode( new HWPPara ); + unsigned char tmp_etcflag; + unsigned char prev_etcflag = 0; while (spNode->Read(*this, flag)) { if( !(spNode->etcflag & 0x04) ){ @@ -266,11 +266,10 @@ AddParaShape( &spNode->pshape ); if (!aplist.empty()) - aplist.back()->SetNext(spNode); - aplist.push_back(spNode); - spNode = new HWPPara; + aplist.back()->SetNext(spNode.get()); + aplist.push_back(spNode.release()); + spNode.reset( new HWPPara ); } - delete spNode; return true; } @@ -442,107 +441,58 @@ return nullptr; } - void HWPFile::AddBox(FBox * box) { -// LATER if we don't use box->next(), -// AddBox() and GetBoxHead() are useless; - if (!blist.empty()) - { - box->prev = blist.back(); - box->prev->next = box; - } - else - box->prev = nullptr; blist.push_back(box); } - ParaShape *HWPFile::getParaShape(int index) { - std::list::iterator it = pslist.begin(); - - for( int i = 0; it != pslist.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != pslist.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= pslist.size()) + return nullptr; + return pslist[index]; } - CharShape *HWPFile::getCharShape(int index) { - std::list::iterator it = cslist.begin(); - - for( int i = 0; it != cslist.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != cslist.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= cslist.size()) + return nullptr; + return cslist[index].get(); } - FBoxStyle *HWPFile::getFBoxStyle(int index) { - std::list::iterator it = fbslist.begin(); - - for( int i = 0; it != fbslist.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != fbslist.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= fbslist.size()) + return nullptr; + return fbslist[index]; } DateCode *HWPFile::getDateCode(int index) { - std::list::iterator it = datecodes.begin(); - - for( int i = 0; it != datecodes.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != datecodes.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= datecodes.size()) + return nullptr; + return datecodes[index]; } HeaderFooter *HWPFile::getHeaderFooter(int index) { - std::list::iterator it = headerfooters.begin(); - - for( int i = 0; it != headerfooters.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != headerfooters.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= headerfooters.size()) + return nullptr; + return headerfooters[index]; } ShowPageNum *HWPFile::getPageNumber(int index) { - std::list::iterator it = pagenumbers.begin(); - - for( int i = 0; it != pagenumbers.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != pagenumbers.end() ? *it : nullptr; - + if (index < 0 || static_cast(index) >= pagenumbers.size()) + return nullptr; + return pagenumbers[index]; } Table *HWPFile::getTable(int index) { - std::list::iterator it = tables.begin(); - - for( int i = 0; it != tables.end(); ++it, i++ ){ - if( i == index ) - break; - } - - return it != tables.end() ? *it : nullptr; + if (index < 0 || static_cast(index) >= tables.size()) + return nullptr; + return tables[index]; } void HWPFile::AddParaShape(ParaShape * pshape) @@ -577,11 +527,10 @@ pshape->index = value; } - -void HWPFile::AddCharShape(CharShape * cshape) +void HWPFile::AddCharShape(std::shared_ptr& cshape) { - int value = compareCharShape(cshape); - if( value == 0 ) + int value = compareCharShape(cshape.get()); + if (value == 0) { cshape->index = ++ccount; cslist.push_back(cshape); diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpfile.h libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpfile.h --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpfile.h 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpfile.h 2017-05-03 16:46:29.000000000 +0000 @@ -26,6 +26,7 @@ #define INCLUDED_HWPFILTER_SOURCE_HWPFILE_H #include +#include #include #include #include @@ -212,7 +213,7 @@ void AddColumnInfo(); void SetColumnDef(ColumnDef *coldef); void AddParaShape(ParaShape *); - void AddCharShape(CharShape *); + void AddCharShape(std::shared_ptr&); void AddFBoxStyle(FBoxStyle *); void AddDateFormat(DateCode *); void AddHeaderFooter(HeaderFooter *); @@ -282,13 +283,13 @@ std::list emblist; std::list hyperlist; int currenthyper; - std::list pslist; /* 스타오피스의 구조상 필요 */ - std::list cslist; - std::list fbslist; - std::list datecodes; - std::list headerfooters; - std::list pagenumbers; - std::list tables; + std::vector pslist; /* 스타오피스의 구조상 필요 */ + std::vector> cslist; + std::vector fbslist; + std::vector datecodes; + std::vector headerfooters; + std::vector pagenumbers; + std::vector tables; // for global document handling static HWPFile *cur_doc; diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpread.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpread.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpread.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpread.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -221,6 +221,7 @@ hwpf.AddBox(this); hwpf.Read2b(&style.cap_len, 1); hwpf.Read2b(&dummy1, 1); + unsigned short next; hwpf.Read2b(&next, 1); hwpf.Read2b(&dummy2, 1); diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpreader.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpreader.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpreader.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpreader.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -42,7 +42,7 @@ #define rstartEl(x,y) do { if (m_rxDocumentHandler.is()) m_rxDocumentHandler->startElement(x,y); } while(false) #define rendEl(x) do { if (m_rxDocumentHandler.is()) m_rxDocumentHandler->endElement(x); } while(false) #define rchars(x) do { if (m_rxDocumentHandler.is()) m_rxDocumentHandler->characters(x); } while(false) -#define padd(x,y,z) pList->addAttribute(x,y,z) +#define padd(x,y,z) mxList->addAttribute(x,y,z) #define Double2Str(x) OUString::number((double)(x)) #define WTI(x) ((double)(x) / 1800.) // unit => inch #define WTMM(x) ((double)(x) / 1800. * 25.4) // unit => mm @@ -54,14 +54,14 @@ #define sXML_CDATA "CDATA" #define STARTP padd( "text:style-name", "CDATA", ascii(getPStyleName(((ParaShape &)para->GetParaShape()).index,buf))); \ - rstartEl( "text:p",rList ); \ - pList->clear(); \ + rstartEl( "text:p",mxList.get() ); \ + mxList->clear(); \ pstart = true #define STARTT \ curr = para->GetCharShape(n > 0 ? n-1 : 0)->index; \ padd( "text:style-name", "CDATA" , ascii( getTStyleName(curr, buf) ) ); \ - rstartEl( "text:span",rList ); \ - pList->clear(); \ + rstartEl( "text:span",mxList.get() ); \ + mxList->clear(); \ tstart = true #define ENDP \ rendEl("text:p"); \ @@ -107,15 +107,13 @@ HwpReader::HwpReader() { - pList = new AttributeListImpl; - rList = static_cast(pList); + mxList = new AttributeListImpl; d = new HwpReaderPrivate; } HwpReader::~HwpReader() { - rList = nullptr; delete d; } @@ -188,8 +186,8 @@ padd("xmlns:form", "CDATA", "http://openoffice.org/2000/form"); padd("xmlns:script", "CDATA", "http://openoffice.org/2000/script"); - rstartEl("office:document", rList); - pList->clear(); + rstartEl("office:document", mxList.get()); + mxList->clear(); makeMeta(); makeStyles(); @@ -210,7 +208,7 @@ */ void HwpReader::makeBody() { - rstartEl("office:body", rList); + rstartEl("office:body", mxList.get()); makeTextDecls(); HWPPara *hwppara = hwpfile.GetFirstPara(); d->bInBody = true; @@ -225,26 +223,26 @@ */ void HwpReader::makeTextDecls() { - rstartEl("text:sequence-decls", rList); + rstartEl("text:sequence-decls", mxList.get()); padd("text:display-outline-level", sXML_CDATA, "0"); padd("text:name", sXML_CDATA, "Illustration"); - rstartEl("text:sequence-decl", rList); - pList->clear(); + rstartEl("text:sequence-decl", mxList.get()); + mxList->clear(); rendEl("text:sequence-decl"); padd("text:display-outline-level", sXML_CDATA, "0"); padd("text:name", sXML_CDATA, "Table"); - rstartEl("text:sequence-decl", rList); - pList->clear(); + rstartEl("text:sequence-decl", mxList.get()); + mxList->clear(); rendEl("text:sequence-decl"); padd("text:display-outline-level", sXML_CDATA, "0"); padd("text:name", sXML_CDATA, "Text"); - rstartEl("text:sequence-decl", rList); - pList->clear(); + rstartEl("text:sequence-decl", mxList.get()); + mxList->clear(); rendEl("text:sequence-decl"); padd("text:display-outline-level", sXML_CDATA, "0"); padd("text:name", sXML_CDATA, "Drawing"); - rstartEl("text:sequence-decl", rList); - pList->clear(); + rstartEl("text:sequence-decl", mxList.get()); + mxList->clear(); rendEl("text:sequence-decl"); rendEl("text:sequence-decls"); } @@ -259,25 +257,25 @@ { HWPInfo& hwpinfo = hwpfile.GetHWPInfo(); - rstartEl("office:meta", rList); + rstartEl("office:meta", mxList.get()); if (hwpinfo.summary.title[0]) { - rstartEl("dc:title", rList); + rstartEl("dc:title", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.title))); rendEl("dc:title"); } if (hwpinfo.summary.subject[0]) { - rstartEl("dc:subject", rList); + rstartEl("dc:subject", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.subject))); rendEl("dc:subject"); } if (hwpinfo.summary.author[0]) { - rstartEl("meta:initial-creator", rList); + rstartEl("meta:initial-creator", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.author))); rendEl("meta:initial-creator"); } @@ -341,41 +339,41 @@ } sprintf(buf,"%d-%02d-%02dT%02d:%02d:00",year,month,day,hour,minute); - rstartEl( "meta:creation-date", rList ); + rstartEl( "meta:creation-date", mxList.get() ); rchars( ascii(buf)); rendEl( "meta:creation-date" ); } if (hwpinfo.summary.keyword[0][0] || hwpinfo.summary.etc[0][0]) { - rstartEl("meta:keywords", rList); + rstartEl("meta:keywords", mxList.get()); if (hwpinfo.summary.keyword[0][0]) { - rstartEl("meta:keyword", rList); + rstartEl("meta:keyword", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.keyword[0]))); rendEl("meta:keyword"); } if (hwpinfo.summary.keyword[1][0]) { - rstartEl("meta:keyword", rList); + rstartEl("meta:keyword", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.keyword[1]))); rendEl("meta:keyword"); } if (hwpinfo.summary.etc[0][0]) { - rstartEl("meta:keyword", rList); + rstartEl("meta:keyword", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.etc[0]))); rendEl("meta:keyword"); } if (hwpinfo.summary.etc[1][0]) { - rstartEl("meta:keyword", rList); + rstartEl("meta:keyword", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.etc[1]))); rendEl("meta:keyword"); } if (hwpinfo.summary.etc[2][0]) { - rstartEl("meta:keyword", rList); + rstartEl("meta:keyword", mxList.get()); rchars(reinterpret_cast(hconv(hwpinfo.summary.etc[2]))); rendEl("meta:keyword"); } @@ -450,8 +448,8 @@ padd( "draw:dots2-length", sXML_CDATA, Double2Str( LineStyle[prop->line_pstyle].dots2 * WTMM(prop->line_width)) + "cm"); } padd( "draw:distance", sXML_CDATA, Double2Str( LineStyle[prop->line_pstyle].distance * WTMM(prop->line_width)) + "cm"); - rstartEl( "draw:stroke-dash", rList); - pList->clear(); + rstartEl( "draw:stroke-dash", mxList.get()); + mxList->clear(); rendEl( "draw:stroke-dash" ); } @@ -478,8 +476,8 @@ padd("svg:viewBox", sXML_CDATA, "0 0 30 30"); padd("svg:d", sXML_CDATA, "m0 0h30v30h-30z"); } - rstartEl("draw:marker", rList); - pList->clear(); + rstartEl("draw:marker", mxList.get()); + mxList->clear(); rendEl("draw:marker"); } if( prop->line_hstyle && !ArrowShape[prop->line_hstyle].bMade) @@ -502,8 +500,8 @@ padd("svg:viewBox", sXML_CDATA, "0 0 20 20"); padd("svg:d", sXML_CDATA, "m0 0h20v20h-20z"); } - rstartEl("draw:marker", rList); - pList->clear(); + rstartEl("draw:marker", mxList.get()); + mxList->clear(); rendEl("draw:marker"); } } @@ -567,8 +565,8 @@ padd( "xlink:show", sXML_CDATA, "embed"); padd( "xlink:actuate", sXML_CDATA, "onLoad"); - rstartEl( "draw:fill-image", rList); - pList->clear(); + rstartEl( "draw:fill-image", mxList.get()); + mxList->clear(); rendEl( "draw:fill-image"); } /* If there is a gradient, when a bitmap file is present, this is the first. */ @@ -649,8 +647,8 @@ padd( "draw:angle", sXML_CDATA, ascii(Int2Str( angle, "%d", buf))); } - rstartEl( "draw:gradient", rList ); - pList->clear(); + rstartEl( "draw:gradient", mxList.get() ); + mxList->clear(); rendEl( "draw:gradient"); } /* hatch */ @@ -686,8 +684,8 @@ padd( "draw:rotation", sXML_CDATA, "450"); break; } - rstartEl( "draw:hatch", rList); - pList->clear(); + rstartEl( "draw:hatch", mxList.get()); + mxList->clear(); rendEl( "draw:hatch"); } } @@ -700,7 +698,7 @@ { HWPStyle& hwpstyle = hwpfile.GetHWPStyle(); - rstartEl("office:styles", rList); + rstartEl("office:styles", mxList.get()); int i; for (i = 0; i < hwpfile.getFBoxStyleCount(); i++) @@ -714,21 +712,21 @@ padd("style:name", sXML_CDATA, "Standard"); padd("style:family", sXML_CDATA, "paragraph"); padd("style:class", sXML_CDATA, "text"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("fo:line-height", sXML_CDATA, "160%"); padd("fo:text-align", sXML_CDATA, "justify"); - rstartEl("style:properties", rList); - pList->clear(); - rstartEl("style:tab-stops", rList); + rstartEl("style:properties", mxList.get()); + mxList->clear(); + rstartEl("style:tab-stops", mxList.get()); for( i = 1 ; i < 40 ; i++) { padd("style:position", sXML_CDATA, Double2Str( WTI(1000 * i)) + "inch"); - rstartEl("style:tab-stop", rList); - pList->clear(); + rstartEl("style:tab-stop", mxList.get()); + mxList->clear(); rendEl("style:tab-stop"); } rendEl("style:tab-stops"); @@ -743,15 +741,15 @@ padd("style:family", sXML_CDATA, "paragraph"); padd("style:parent-style-name", sXML_CDATA, "Standard"); - rstartEl("style:style", rList); + rstartEl("style:style", mxList.get()); - pList->clear(); + mxList->clear(); parseCharShape(hwpstyle.GetCharShape(ii)); parseParaShape(hwpstyle.GetParaShape(ii)); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); @@ -762,8 +760,8 @@ padd( "style:family", sXML_CDATA, "paragraph"); padd( "style:parent-style-name", sXML_CDATA, "Standard"); padd( "style:class", sXML_CDATA, "extra"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); rendEl("style:style"); } @@ -772,8 +770,8 @@ padd( "style:family", sXML_CDATA, "paragraph"); padd( "style:parent-style-name", sXML_CDATA, "Standard"); padd( "style:class", sXML_CDATA, "extra"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); rendEl("style:style"); } @@ -784,8 +782,8 @@ padd( "style:family", sXML_CDATA, "paragraph"); padd( "style:parent-style-name", sXML_CDATA, "Standard"); padd( "style:class", sXML_CDATA, "html"); - rstartEl( "style:style", rList); - pList->clear(); + rstartEl( "style:style", mxList.get()); + mxList->clear(); padd( "fo:font-size", sXML_CDATA, "6pt"); padd( "fo:margin-top", sXML_CDATA, "0cm"); padd( "fo:margin-bottom", sXML_CDATA, "0cm"); @@ -795,8 +793,8 @@ padd( "text:number-lines", sXML_CDATA, "false"); padd( "text:line-number", sXML_CDATA, "0"); padd("fo:line-height", sXML_CDATA, "100%"); - rstartEl( "style:properties", rList); - pList->clear(); + rstartEl( "style:properties", mxList.get()); + mxList->clear(); rendEl( "style:properties"); rendEl( "style:style"); } @@ -807,8 +805,8 @@ padd("text:num-format", sXML_CDATA, "1"); if( hwpinfo.beginfnnum != 1) padd("text:offset", sXML_CDATA, ascii(Int2Str(hwpinfo.beginfnnum -1, "%d", buf))); - rstartEl("text:footnotes-configuration", rList); - pList->clear(); + rstartEl("text:footnotes-configuration", mxList.get()); + mxList->clear(); rendEl("text:footnotes-configuration"); rendEl("office:styles"); @@ -824,7 +822,7 @@ { int i; - rstartEl("office:automatic-styles", rList); + rstartEl("office:automatic-styles", mxList.get()); for (i = 0; i < hwpfile.getParaShapeCount(); i++) makePStyle(hwpfile.getParaShape(i)); @@ -878,23 +876,23 @@ ascii(Int2Str(i,"PNPara%d", buf))); padd("style:family", sXML_CDATA, "paragraph"); padd("style:parent-style-name", sXML_CDATA, "Standard"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); if( i == 1 ) padd("fo:text-align", sXML_CDATA, "start"); else if ( i == 2 ) padd("fo:text-align", sXML_CDATA, "center"); else if ( i == 3 ) padd("fo:text-align", sXML_CDATA, "end"); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl( "style:properties"); rendEl( "style:style"); padd("style:name", sXML_CDATA, ascii(Int2Str(i,"PNBox%d",buf))); padd("style:family", sXML_CDATA, "graphics"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("fo:margin-top", sXML_CDATA, "0cm"); padd("fo:margin-bottom", sXML_CDATA, "0cm"); @@ -911,8 +909,8 @@ padd("style:horizontal-rel", sXML_CDATA, "paragraph"); padd("fo:padding", sXML_CDATA, "0cm"); padd("stylefamily", sXML_CDATA, "graphics"); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -951,7 +949,7 @@ void HwpReader::makeMasterStyles() { - rstartEl("office:master-styles", rList); + rstartEl("office:master-styles", mxList.get()); int i; int nMax = hwpfile.getMaxSettedPage(); @@ -1044,8 +1042,8 @@ ascii(Int2Str(i+1, "p%d", buf))); padd("draw:style-name", sXML_CDATA, ascii(Int2Str(i, "master%d", buf))); - rstartEl("style:master-page", rList); - pList->clear(); + rstartEl("style:master-page", mxList.get()); + mxList->clear(); if( aSet[i].bIsSet ) /* If you've changed the current setting */ { @@ -1095,17 +1093,17 @@ } else /* If the previous settings doesn't exist, set to the default settings */ { - rstartEl("style:header", rList); + rstartEl("style:header", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); rendEl("text:p"); rendEl("style:header"); - rstartEl("style:footer", rList); + rstartEl("style:footer", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); rendEl("text:p"); rendEl("style:footer"); @@ -1116,7 +1114,7 @@ // header if( pPage->header ) { - rstartEl("style:header", rList); + rstartEl("style:header", mxList.get()); if( pPage->pagenumber && pPage->pagenumber->where < 4 ) { d->bInHeader = true; @@ -1129,7 +1127,7 @@ } if( pPage->header_even ) { - rstartEl("style:header", rList); + rstartEl("style:header", mxList.get()); if( pPage->pagenumber && ( pPage->pagenumber->where < 4 || pPage->pagenumber->where == 7 ) ) { @@ -1146,10 +1144,10 @@ /* Will be the default. */ else if( pPage->header_odd && !pPage->header_even ) { - rstartEl("style:header", rList); + rstartEl("style:header", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && ( pPage->pagenumber->where < 4 || pPage->pagenumber->where == 7 ) ) { @@ -1164,7 +1162,7 @@ } if( pPage->header_odd ) { - rstartEl("style:header-left", rList); + rstartEl("style:header-left", mxList.get()); if( pPage->pagenumber && ( pPage->pagenumber->where < 4 || pPage->pagenumber->where == 7 ) ) { @@ -1181,10 +1179,10 @@ /* Will be the default. */ else if( pPage->header_even && !pPage->header_odd ) { - rstartEl("style:header-left", rList); + rstartEl("style:header-left", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && ( pPage->pagenumber->where < 4 || pPage->pagenumber->where == 7 ) ) { @@ -1199,10 +1197,10 @@ } if( !pPage->header && !pPage->header_even && !pPage->header_odd ) { - rstartEl("style:header", rList); + rstartEl("style:header", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && (pPage->pagenumber->where < 4 || pPage->pagenumber->where == 7 ) ) { @@ -1216,7 +1214,7 @@ // footer if( pPage->footer ) { - rstartEl("style:footer", rList); + rstartEl("style:footer", mxList.get()); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1230,7 +1228,7 @@ } if( pPage->footer_even ) { - rstartEl("style:footer", rList); + rstartEl("style:footer", mxList.get()); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1247,10 +1245,10 @@ /* Will be the default. */ else if( pPage->footer_odd && !pPage->footer_even ) { - rstartEl("style:footer", rList); + rstartEl("style:footer", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1265,7 +1263,7 @@ } if( pPage->footer_odd ) { - rstartEl("style:footer-left", rList); + rstartEl("style:footer-left", mxList.get()); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1282,10 +1280,10 @@ /* Will be the default. */ else if( pPage->footer_even && !pPage->footer_odd ) { - rstartEl("style:footer-left", rList); + rstartEl("style:footer-left", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1300,10 +1298,10 @@ } if( !pPage->footer && !pPage->footer_even && !pPage->footer_odd ) { - rstartEl("style:footer", rList); + rstartEl("style:footer", mxList.get()); padd("text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( pPage->pagenumber && pPage->pagenumber->where >= 4 && pPage->pagenumber->where != 7 ) { @@ -1476,17 +1474,17 @@ padd("style:name", sXML_CDATA, ascii(Int2Str(pshape->index, "P%d", buf))); padd("style:family", sXML_CDATA, "paragraph"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); parseParaShape(pshape); parseCharShape(pshape->cshape); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); if( nscount ) { unsigned char tf = 0; - rstartEl("style:tab-stops",rList); + rstartEl("style:tab-stops",mxList.get()); int tab_margin = pshape->left_margin + pshape->indent; if( tab_margin < 0 ) @@ -1521,8 +1519,8 @@ tf = 1; padd("style:leader-char", sXML_CDATA, "."); } - rstartEl( "style:tab-stop", rList); - pList->clear(); + rstartEl( "style:tab-stop", mxList.get()); + mxList->clear(); rendEl( "style:tab-stop" ); if( (pshape->tabs[i].position != 1000 * i ) || tf ) @@ -1548,8 +1546,8 @@ for( int i = 0 ; i < pmCount ; i++ ){ padd("style:name", sXML_CDATA, ascii(Int2Str(i + 1, "pm%d", buf))); - rstartEl("style:page-master",rList); - pList->clear(); + rstartEl("style:page-master",mxList.get()); + mxList->clear(); switch( hwpinfo.paper.paper_kind ) @@ -1712,8 +1710,8 @@ } } - rstartEl("style:properties",rList); - pList->clear(); + rstartEl("style:properties",mxList.get()); + mxList->clear(); /* background image */ if( hwpinfo.back_info.isset && hwpinfo.back_info.type > 0 ) @@ -1735,11 +1733,11 @@ padd("style:repeat", sXML_CDATA, "no-repeat"); padd("style:position", sXML_CDATA, "center"); } - rstartEl("style:background-image",rList); + rstartEl("style:background-image",mxList.get()); if( hwpinfo.back_info.type == 2 ){ - rstartEl("office:binary-data", rList); - pList->clear(); + rstartEl("office:binary-data", mxList.get()); + mxList->clear(); std::shared_ptr pStr(base64_encode_string(reinterpret_cast(hwpinfo.back_info.data), hwpinfo.back_info.size ), Free()); rchars(ascii(pStr.get())); rendEl("office:binary-data"); @@ -1752,35 +1750,35 @@ rendEl("style:properties"); /* header style */ - rstartEl("style:header-style", rList); + rstartEl("style:header-style", mxList.get()); padd("svg:height", sXML_CDATA, Double2Str(WTI(hwpinfo.paper.header_length)) + "inch"); padd("fo:margin-bottom", sXML_CDATA, "0mm"); - rstartEl("style:properties",rList); - pList->clear(); + rstartEl("style:properties",mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:header-style"); /* footer style */ - rstartEl("style:footer-style", rList); + rstartEl("style:footer-style", mxList.get()); padd("svg:height", sXML_CDATA, Double2Str(WTI(hwpinfo.paper.footer_length)) + "inch"); padd("fo:margin-top", sXML_CDATA, "0mm"); - rstartEl("style:properties",rList); - pList->clear(); + rstartEl("style:properties",mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:footer-style"); /* Footnote style, but it fell in the dtd, the specification has been defined. REALKING */ - rstartEl("style:footnote-layout", rList); + rstartEl("style:footnote-layout", mxList.get()); padd("style:distance-before-sep", sXML_CDATA, Double2Str(WTI(hwpinfo.splinetext)) + "inch"); padd("style:distance-after-sep", sXML_CDATA, Double2Str(WTI(hwpinfo.splinefn)) + "inch"); - rstartEl("style:properties",rList); - pList->clear(); + rstartEl("style:properties",mxList.get()); + mxList->clear(); rendEl("style:properties"); if ( hwpinfo.fnlinetype == 2 ) padd("style:width", sXML_CDATA, "15cm"); @@ -1791,8 +1789,8 @@ else padd("style:width", sXML_CDATA, "5cm"); - rstartEl("style:footnote-sep",rList); - pList->clear(); + rstartEl("style:footnote-sep",mxList.get()); + mxList->clear(); rendEl("style:footnote-sep"); rendEl("style:footnote-layout"); @@ -1805,8 +1803,8 @@ { if( !coldef ) return; padd("fo:column-count", sXML_CDATA, ascii(Int2Str(coldef->ncols, "%d", buf))); - rstartEl("style:columns",rList); - pList->clear(); + rstartEl("style:columns",mxList.get()); + mxList->clear(); if( coldef->separator != 0 ) { switch( coldef->separator ) @@ -1827,8 +1825,8 @@ padd("style:style", sXML_CDATA, "none"); break; } - rstartEl("style:column-sep",rList); - pList->clear(); + rstartEl("style:column-sep",mxList.get()); + mxList->clear(); rendEl("style:column-sep"); } double spacing = WTI(coldef->spacing)/ 2. ; @@ -1844,8 +1842,8 @@ else padd("fo:margin-right", sXML_CDATA, Double2Str( spacing) + "inch"); - rstartEl("style:column",rList); - pList->clear(); + rstartEl("style:column",mxList.get()); + mxList->clear(); rendEl("style:column"); } rendEl("style:columns"); @@ -1856,11 +1854,11 @@ padd("style:name", sXML_CDATA, ascii(Int2Str(cshape->index, "T%d", buf))); padd("style:family", sXML_CDATA, "text"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); parseCharShape(cshape); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -1874,14 +1872,14 @@ padd("style:name", sXML_CDATA, ascii(Int2Str(hbox->style.boxnum, "Table%d", buf))); padd("style:family", sXML_CDATA,"table"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("style:width", sXML_CDATA, Double2Str(WTMM(hbox->box_xs)) + "mm"); padd("table:align", sXML_CDATA,"left"); padd("fo:keep-with-next", sXML_CDATA,"false"); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); @@ -1891,12 +1889,12 @@ sprintf(buf,"Table%d.%c",hbox->style.boxnum, static_cast('A'+i)); padd("style:name", sXML_CDATA, ascii( buf )); padd("style:family", sXML_CDATA,"table-column"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("style:column-width", sXML_CDATA, Double2Str(WTMM(tbl->columns.data[i+1] - tbl->columns.data[i])) + "mm"); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -1907,12 +1905,12 @@ sprintf(buf,"Table%d.row%" SAL_PRI_SIZET "u",hbox->style.boxnum, i + 1); padd("style:name", sXML_CDATA, ascii( buf )); padd("style:family", sXML_CDATA,"table-row"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("style:row-height", sXML_CDATA, Double2Str(WTMM(tbl->rows.data[i+1] - tbl->rows.data[i])) + "mm"); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -1924,8 +1922,8 @@ sprintf(buf,"Table%d.%c%d",hbox->style.boxnum, 'A'+ tcell->nColumnIndex, tcell->nRowIndex +1); padd("style:name", sXML_CDATA, ascii( buf )); padd("style:family", sXML_CDATA,"table-cell"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); Cell *cl = tcell->pCell; if( cl->ver_align == 1 ) padd("fo:vertical-align", sXML_CDATA,"middle"); @@ -2012,8 +2010,8 @@ ascii(hcolor2str(sal::static_int_cast(cl->color), sal::static_int_cast(cl->shade), buf))); - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); @@ -2029,8 +2027,8 @@ ascii(Int2Str(hdo->index, "Draw%d", buf))); padd("style:family", sXML_CDATA, "graphics"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); switch (fstyle->txtflow) { @@ -2196,8 +2194,8 @@ padd("style:vertical-rel", sXML_CDATA, "baseline"); } - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); @@ -2215,8 +2213,8 @@ padd("style:name", sXML_CDATA, ascii(Int2Str(fstyle->boxnum, "CapBox%d", buf))); padd("style:family", sXML_CDATA, "graphics"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("fo:margin-left", sXML_CDATA, "0cm"); padd("fo:margin-right", sXML_CDATA, "0cm"); padd("fo:margin-top", sXML_CDATA, "0cm"); @@ -2283,8 +2281,8 @@ padd("style:horizontal-rel", sXML_CDATA, "page-content"); } } - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); if( fstyle->boxtype == 'G' ) @@ -2299,8 +2297,8 @@ } padd("style:family", sXML_CDATA, "graphics"); - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); padd("fo:margin-left", sXML_CDATA, "0cm"); padd("fo:margin-right", sXML_CDATA, "0cm"); @@ -2415,8 +2413,8 @@ sal::static_int_cast(cell->color), sal::static_int_cast(cell->shade), buf))); } - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -2456,8 +2454,8 @@ break; } - rstartEl("style:style", rList); - pList->clear(); + rstartEl("style:style", mxList.get()); + mxList->clear(); if ( fstyle->boxtype == 'T') { @@ -2676,8 +2674,8 @@ padd("draw:color-mode", sXML_CDATA, "mono"); } - rstartEl("style:properties", rList); - pList->clear(); + rstartEl("style:properties", mxList.get()); + mxList->clear(); rendEl("style:properties"); rendEl("style:style"); } @@ -2716,8 +2714,8 @@ { padd("text:style-name", sXML_CDATA, ascii(getPStyleName(para->GetParaShape().index, buf))); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); } if( d->bFirstPara && d->bInBody ) { @@ -2728,8 +2726,8 @@ // U+C758 HANGUL SYLLABLE YI, U+CC98 HANGUL SYLLABLE CEO, // U+C74C HANGUL SYLLABLE EUM: "Begin of Document" padd("text:name", sXML_CDATA, OUString(buf, strlen(buf), RTL_TEXTENCODING_UTF8)); - rstartEl("text:bookmark", rList); - pList->clear(); + rstartEl("text:bookmark", mxList.get()); + mxList->clear(); rendEl("text:bookmark"); d->bFirstPara = false; } @@ -2739,9 +2737,9 @@ d->bInHeader = false; } padd("text:style-name", sXML_CDATA, - ascii(getTStyleName(para->cshape.index, buf))); - rstartEl("text:span", rList); - pList->clear(); + ascii(getTStyleName(para->cshape->index, buf))); + rstartEl("text:span", mxList.get()); + mxList->clear(); for (n = 0; n < para->nch && para->hhstr[n]->hh; n += para->hhstr[n]->WSize()) @@ -2749,7 +2747,7 @@ if (para->hhstr[n]->hh == CH_SPACE && !firstspace) { makeChars(str); - rstartEl("text:s", rList); + rstartEl("text:s", mxList.get()); rendEl("text:s"); } else if (para->hhstr[n]->hh == CH_END_PARA) @@ -2783,16 +2781,16 @@ hchar_string str; int n; int res; - hchar dest[3]; - int curr = para->cshape.index; + hchar dest[3]; + int curr = para->cshape->index; unsigned char firstspace = 0; if( !bParaStart ) { padd("text:style-name", sXML_CDATA, ascii(getPStyleName(para->GetParaShape().index, buf))); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); } if( d->bFirstPara && d->bInBody ) { @@ -2804,8 +2802,8 @@ // U+C758 HANGUL SYLLABLE YI, U+CC98 HANGUL SYLLABLE CEO, // U+C74C HANGUL SYLLABLE EUM: "Begin of Document" padd("text:name", sXML_CDATA, OUString(buf, strlen(buf), RTL_TEXTENCODING_UTF8)); - rstartEl("text:bookmark", rList); - pList->clear(); + rstartEl("text:bookmark", mxList.get()); + mxList->clear(); rendEl("text:bookmark"); d->bFirstPara = false; } @@ -2816,8 +2814,8 @@ } padd("text:style-name", sXML_CDATA, ascii(getTStyleName(curr, buf))); - rstartEl("text:span", rList); - pList->clear(); + rstartEl("text:span", mxList.get()); + mxList->clear(); for (n = 0; n < para->nch && para->hhstr[n]->hh; n += para->hhstr[n]->WSize()) @@ -2829,13 +2827,13 @@ curr = para->GetCharShape(n)->index; padd("text:style-name", sXML_CDATA, ascii(getTStyleName(curr, buf))); - rstartEl("text:span", rList); - pList->clear(); + rstartEl("text:span", mxList.get()); + mxList->clear(); } if (para->hhstr[n]->hh == CH_SPACE && !firstspace) { makeChars(str); - rstartEl("text:s", rList); + rstartEl("text:s", mxList.get()); rendEl("text:s"); } else if (para->hhstr[n]->hh == CH_END_PARA) @@ -2888,8 +2886,8 @@ // U+C758 HANGUL SYLLABLE YI, U+CC98 HANGUL SYLLABLE CEO, // U+C74C HANGUL SYLLABLE EUM: "Begin of Document" padd("text:name", sXML_CDATA, OUString(buf, strlen(buf), RTL_TEXTENCODING_UTF8)); - rstartEl("text:bookmark", rList); - pList->clear(); + rstartEl("text:bookmark", mxList.get()); + mxList->clear(); rendEl("text:bookmark"); d->bFirstPara = false; } @@ -2923,8 +2921,8 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - rstartEl("text:s", rList); - pList->clear(); + rstartEl("text:s", mxList.get()); + mxList->clear(); rendEl("text:s"); } else if ( para->hhstr[n]->hh >= CH_SPACE ) @@ -2949,7 +2947,7 @@ } else if (para->hhstr[n]->hh == CH_FIELD) { - FieldCode *hbox = static_cast(para->hhstr[n]); + FieldCode *hbox = static_cast(para->hhstr[n].get()); if( hbox->location_info == 1) { if( !pstart ) {STARTP;} @@ -2985,7 +2983,7 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeBookmark(static_cast(para->hhstr[n])); + makeBookmark(static_cast(para->hhstr[n].get())); break; case CH_DATE_FORM: // 7 break; @@ -2993,7 +2991,7 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeDateCode(static_cast(para->hhstr[n])); + makeDateCode(static_cast(para->hhstr[n].get())); break; case CH_TAB: // 9 if( !pstart ) {STARTP;} @@ -3002,12 +3000,12 @@ if( !tstart ) {STARTT;} makeChars(str); } - makeTab(static_cast(para->hhstr[n])); + makeTab(static_cast(para->hhstr[n].get())); break; case CH_TEXT_BOX: /* 10 - ordered by Table/text box/formula/button/hypertext */ { -/* produce tables first, and treat formula as being in text:p. */ - TxtBox *hbox = static_cast(para->hhstr[n]); + /* produce tables first, and treat formula as being in text:p. */ + TxtBox *hbox = static_cast(para->hhstr[n].get()); if( hbox->style.anchor_type == 0 ) { @@ -3041,7 +3039,7 @@ } case CH_PICTURE: // 11 { - Picture *hbox = static_cast(para->hhstr[n]); + Picture *hbox = static_cast(para->hhstr[n].get()); if( hbox->style.anchor_type == 0 ) { if( !pstart ) {STARTP;} @@ -3063,7 +3061,7 @@ } case CH_LINE: // 14 { - Line *hbox = static_cast(para->hhstr[n]); + Line *hbox = static_cast(para->hhstr[n].get()); if (str.size() > 0) { if( !pstart ) {STARTP;} @@ -3080,19 +3078,19 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeHidden(static_cast(para->hhstr[n])); + makeHidden(static_cast(para->hhstr[n].get())); break; case CH_FOOTNOTE: // 17 if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeFootnote(static_cast(para->hhstr[n])); + makeFootnote(static_cast(para->hhstr[n].get())); break; case CH_AUTO_NUM: // 18 if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeAutoNum(static_cast(para->hhstr[n])); + makeAutoNum(static_cast(para->hhstr[n].get())); break; case CH_NEW_NUM: // 19 -skip break; @@ -3102,7 +3100,7 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeMailMerge(static_cast(para->hhstr[n])); + makeMailMerge(static_cast(para->hhstr[n].get())); break; case CH_COMPOSE: /* 23 - overlapping letters */ break; @@ -3122,7 +3120,7 @@ if( !pstart ) {STARTP;} if( !tstart ) {STARTT;} makeChars(str); - makeOutline(static_cast(para->hhstr[n])); + makeOutline(static_cast(para->hhstr[n].get())); break; case CH_FIXED_SPACE: case CH_KEEP_SPACE: @@ -3142,8 +3140,8 @@ padd("text:placeholder-type", sXML_CDATA, "text"); if( field ) padd("text:description", sXML_CDATA, reinterpret_cast(hconv(field))); - rstartEl( "text:placeholder", rList); - pList->clear(); + rstartEl( "text:placeholder", mxList.get()); + mxList->clear(); rchars( reinterpret_cast(rStr.c_str()) ); rendEl( "text:placeholder" ); } @@ -3152,25 +3150,25 @@ { if (OUString(reinterpret_cast(hconv(hbox->str3))) == "title") { - rstartEl( "text:title", rList ); + rstartEl( "text:title", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:title" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "subject") { - rstartEl( "text:subject", rList ); + rstartEl( "text:subject", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:subject" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "author") { - rstartEl( "text:author-name", rList ); + rstartEl( "text:author-name", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:author-name" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "keywords") { - rstartEl( "text:keywords", rList ); + rstartEl( "text:keywords", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:keywords" ); } @@ -3180,61 +3178,61 @@ { if (OUString(reinterpret_cast(hconv(hbox->str3))) == "User") { - rstartEl( "text:sender-lastname", rList ); + rstartEl( "text:sender-lastname", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-lastname" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Company") { - rstartEl( "text:sender-company", rList ); + rstartEl( "text:sender-company", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-company" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Position") { - rstartEl( "text:sender-title", rList ); + rstartEl( "text:sender-title", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-title" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Division") { - rstartEl( "text:sender-position", rList ); + rstartEl( "text:sender-position", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-position" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Fax") { - rstartEl( "text:sender-fax", rList ); + rstartEl( "text:sender-fax", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-fax" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Pager") { - rstartEl( "text:phone-private", rList ); + rstartEl( "text:phone-private", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:phone-private" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "E-mail") { - rstartEl( "text:sender-email", rList ); + rstartEl( "text:sender-email", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-email" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Zipcode(office)") { - rstartEl( "text:sender-postal-code", rList ); + rstartEl( "text:sender-postal-code", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-postal-code" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Phone(office)") { - rstartEl( "text:sender-phone-work", rList ); + rstartEl( "text:sender-phone-work", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-phone-work" ); } else if (OUString(reinterpret_cast(hconv(hbox->str3))) == "Address(office)") { - rstartEl( "text:sender-street", rList ); + rstartEl( "text:sender-street", mxList.get() ); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:sender-street" ); } @@ -3245,8 +3243,8 @@ if( hbox->m_pDate ) padd("style:data-style-name", sXML_CDATA, ascii(Int2Str(hbox->m_pDate->key, "N%d", buf))); - rstartEl( "text:creation-date", rList ); - pList->clear(); + rstartEl( "text:creation-date", mxList.get() ); + mxList->clear(); rchars( reinterpret_cast(hconv(hbox->str2)) ); rendEl( "text:creation-date" ); } @@ -3262,22 +3260,22 @@ if (hbox->type == 0) { padd("text:name", sXML_CDATA, reinterpret_cast(hconv(hbox->id))); - rstartEl("text:bookmark", rList); - pList->clear(); + rstartEl("text:bookmark", mxList.get()); + mxList->clear(); rendEl("text:bookmark"); } else if (hbox->type == 1) /* Block bookmarks days begin and end there if */ { padd("text:name", sXML_CDATA, reinterpret_cast(hconv(hbox->id))); - rstartEl("text:bookmark-start", rList); - pList->clear(); + rstartEl("text:bookmark-start", mxList.get()); + mxList->clear(); rendEl("text:bookmark-start"); } else if (hbox->type == 2) { padd("text:name", sXML_CDATA, reinterpret_cast(hconv(hbox->id))); - rstartEl("text:bookmark-end", rList); - pList->clear(); + rstartEl("text:bookmark-end", mxList.get()); + mxList->clear(); rendEl("text:bookmark-end"); } } @@ -3291,8 +3289,8 @@ padd("number:language", sXML_CDATA,"ko"); padd("number:country", sXML_CDATA,"KR"); - rstartEl("number:date-style", rList); - pList->clear(); + rstartEl("number:date-style", mxList.get()); + mxList->clear(); bool add_zero = false; int zero_check = 0; @@ -3317,67 +3315,67 @@ break; case '1': padd("number:style", sXML_CDATA, "long"); - rstartEl("number:year", rList); - pList->clear(); + rstartEl("number:year", mxList.get()); + mxList->clear(); rendEl("number:year"); break; case '!': - rstartEl("number:year", rList); - pList->clear(); + rstartEl("number:year", mxList.get()); + mxList->clear(); rendEl("number:year"); break; case '2': if( add_zero ) padd("number:style", sXML_CDATA, "long"); - rstartEl("number:month", rList); - pList->clear(); + rstartEl("number:month", mxList.get()); + mxList->clear(); rendEl("number:month"); break; case '@': padd("number:textual", sXML_CDATA, "true"); - rstartEl("number:month", rList); - pList->clear(); + rstartEl("number:month", mxList.get()); + mxList->clear(); rendEl("number:month"); break; case '*': padd("number:textual", sXML_CDATA, "true"); padd("number:style", sXML_CDATA, "long"); - rstartEl("number:month", rList); - pList->clear(); + rstartEl("number:month", mxList.get()); + mxList->clear(); rendEl("number:month"); break; case '3': if( add_zero ) padd("number:style", sXML_CDATA, "long"); - rstartEl("number:day", rList); - pList->clear(); + rstartEl("number:day", mxList.get()); + mxList->clear(); rendEl("number:day"); break; case '#': if( add_zero ) padd("number:style", sXML_CDATA, "long"); - rstartEl("number:day", rList); - pList->clear(); + rstartEl("number:day", mxList.get()); + mxList->clear(); rendEl("number:day"); switch( hbox->date[DateCode::DAY] % 10) { case 1: - rstartEl("number:text", rList); + rstartEl("number:text", mxList.get()); rchars("st"); rendEl("number:text"); break; case 2: - rstartEl("number:text", rList); + rstartEl("number:text", mxList.get()); rchars("nd"); rendEl("number:text"); break; case 3: - rstartEl("number:text", rList); + rstartEl("number:text", mxList.get()); rchars("rd"); rendEl("number:text"); break; default: - rstartEl("number:text", rList); + rstartEl("number:text", mxList.get()); rchars("th"); rendEl("number:text"); break; @@ -3387,16 +3385,16 @@ case '$': if( add_zero ) padd("number:style", sXML_CDATA, "long"); - rstartEl("number:hours", rList); - pList->clear(); + rstartEl("number:hours", mxList.get()); + mxList->clear(); rendEl("number:hours"); break; case '5': case '%': if( add_zero ) padd("number:style", sXML_CDATA, "long"); - rstartEl("number:minutes", rList); - pList->clear(); + rstartEl("number:minutes", mxList.get()); + mxList->clear(); rendEl("number:minutes"); break; case '_': @@ -3404,15 +3402,15 @@ SAL_FALLTHROUGH; case '6': case '^': - rstartEl("number:day-of-week", rList); - pList->clear(); + rstartEl("number:day-of-week", mxList.get()); + mxList->clear(); rendEl("number:day-of-week"); break; case '7': case '&': case '+': - rstartEl("number:am-pm", rList); - pList->clear(); + rstartEl("number:am-pm", mxList.get()); + mxList->clear(); rendEl("number:am-pm"); break; case '~': // Chinese Locale @@ -3421,13 +3419,13 @@ hchar sbuf[2]; sbuf[0] = *fmt; sbuf[1] = 0; - rstartEl("number:text", rList); + rstartEl("number:text", mxList.get()); rchars(reinterpret_cast(hconv(sbuf))); rendEl("number:text"); break; } } - pList->clear(); + mxList->clear(); rendEl("number:date-style"); } @@ -3436,8 +3434,8 @@ { padd("style:data-style-name", sXML_CDATA, ascii(Int2Str(hbox->key, "N%d", buf))); - rstartEl( "text:date", rList ); - pList->clear(); + rstartEl( "text:date", mxList.get() ); + mxList->clear(); hchar_string const boxstr = hbox->GetString(); rchars(reinterpret_cast(hconv(boxstr.c_str()))); rendEl( "text:date" ); @@ -3446,7 +3444,7 @@ void HwpReader::makeTab(Tab * ) /*hbox */ { - rstartEl("text:tab-stop", rList); + rstartEl("text:tab-stop", mxList.get()); rendEl("text:tab-stop"); } @@ -3457,8 +3455,8 @@ ascii(Int2Str(hbox->style.boxnum, "Table%d", buf))); padd("table:style-name", sXML_CDATA, ascii(Int2Str(hbox->style.boxnum, "Table%d", buf))); - rstartEl("table:table", rList); - pList->clear(); + rstartEl("table:table", mxList.get()); + mxList->clear(); Table *tbl = hbox->m_pTable; // column @@ -3466,8 +3464,8 @@ { sprintf(buf,"Table%d.%c",hbox->style.boxnum, static_cast('A'+i)); padd("table:style-name", sXML_CDATA, ascii( buf )); - rstartEl("table:table-column", rList); - pList->clear(); + rstartEl("table:table-column", mxList.get()); + mxList->clear(); rendEl("table:table-column"); } @@ -3486,8 +3484,8 @@ // row sprintf(buf,"Table%d.row%d",hbox->style.boxnum, tcell->nRowIndex + 1); padd("table:style-name", sXML_CDATA, ascii( buf )); - rstartEl("table:table-row", rList); - pList->clear(); + rstartEl("table:table-row", mxList.get()); + mxList->clear(); j = tcell->nRowIndex; } @@ -3502,8 +3500,8 @@ padd("table:value-type", sXML_CDATA,"string"); if( tcell->pCell->protect ) padd("table:protected", sXML_CDATA,"true"); - rstartEl("table:table-cell", rList); - pList->clear(); + rstartEl("table:table-cell", mxList.get()); + mxList->clear(); parsePara(hbox->plists[tcell->pCell->key].front()); rendEl("table:table-cell"); } @@ -3556,15 +3554,15 @@ Double2Str(WTMM(( hbox->box_xs + hbox->cap_xs) )) + "mm"); padd("fo:min-height", sXML_CDATA, Double2Str(WTMM(( hbox->box_ys + hbox->cap_ys) )) + "mm"); - rstartEl("draw:text-box", rList); - pList->clear(); + rstartEl("draw:text-box", mxList.get()); + mxList->clear(); if( hbox->cap_pos % 2 ) /* The caption is on the top */ { parsePara(hbox->caption.front()); } padd( "text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); } else{ padd("draw:z-index", sXML_CDATA, @@ -3623,8 +3621,8 @@ if( hbox->type != EQU_TYPE ) { - rstartEl("draw:text-box", rList); - pList->clear(); + rstartEl("draw:text-box", mxList.get()); + mxList->clear(); /* If captions are present and it is on the top */ if( hbox->style.cap_len > 0 && (hbox->cap_pos % 2) && hbox->type == TBL_TYPE ) { @@ -3657,8 +3655,8 @@ } else // is Formula { - rstartEl("draw:object", rList); - pList->clear(); + rstartEl("draw:object", mxList.get()); + mxList->clear(); makeFormula(hbox); rendEl("draw:object"); } @@ -3712,7 +3710,7 @@ Formula *form = new Formula(mybuf); form->setDocumentHandler(m_rxDocumentHandler); - form->setAttributeListImpl(pList); + form->setAttributeListImpl(mxList.get()); form->parse(); delete form; @@ -3759,8 +3757,8 @@ padd("xlink:href", sXML_CDATA, OUString(tmp.c_str(), tmp.size()+1, RTL_TEXTENCODING_EUC_KR)); } - rstartEl("draw:a", rList); - pList->clear(); + rstartEl("draw:a", mxList.get()); + mxList->clear(); makeTextBox(hbox); rendEl("draw:a"); } @@ -3815,15 +3813,15 @@ Double2Str(WTMM( hbox->box_xs + hbox->style.margin[1][0] + hbox->style.margin[1][1] )) + "mm"); padd("fo:min-height", sXML_CDATA, Double2Str(WTMM( hbox->box_ys + hbox->style.margin[1][2] + hbox->style.margin[1][3] + hbox->cap_ys )) + "mm"); - rstartEl("draw:text-box", rList); - pList->clear(); + rstartEl("draw:text-box", mxList.get()); + mxList->clear(); if( hbox->cap_pos % 2 ) /* Caption is on the top */ { parsePara(hbox->caption.front()); } padd( "text:style-name", sXML_CDATA, "Standard"); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); } if( hbox->ishyper ) { @@ -3841,8 +3839,8 @@ padd("xlink:href", sXML_CDATA, reinterpret_cast(hconv(kstr2hstr(reinterpret_cast(urltounix(reinterpret_cast(hbox->follow + 5)).c_str())).c_str()))); #endif - rstartEl("draw:a", rList); - pList->clear(); + rstartEl("draw:a", mxList.get()); + mxList->clear(); } padd("draw:style-name", sXML_CDATA, ascii(Int2Str(hbox->style.boxnum, "G%d", buf))); @@ -3902,14 +3900,14 @@ } if( hbox->pictype == PICTYPE_OLE ) - rstartEl("draw:object-ole", rList); + rstartEl("draw:object-ole", mxList.get()); else - rstartEl("draw:image", rList); - pList->clear(); + rstartEl("draw:image", mxList.get()); + mxList->clear(); if (hbox->pictype == PICTYPE_EMBED || hbox->pictype == PICTYPE_OLE) { - rstartEl("office:binary-data", rList); - pList->clear(); + rstartEl("office:binary-data", mxList.get()); + mxList->clear(); if( hbox->pictype == PICTYPE_EMBED ){ EmPicture *emp = hwpfile.GetEmPicture(hbox); if( emp ) @@ -4019,8 +4017,8 @@ if (drawobj->type == HWPDO_CONTAINER) { - rstartEl("draw:g", rList); - pList->clear(); + rstartEl("draw:g", mxList.get()); + mxList->clear(); makePictureDRAW(drawobj->child, hbox); rendEl("draw:g"); } @@ -4131,8 +4129,8 @@ Double2Str (WTMM(y + b + drawobj->offset2.y + drawobj->extent.h)) + "mm"); } - rstartEl("draw:line", rList); - pList->clear(); + rstartEl("draw:line", mxList.get()); + mxList->clear(); rendEl("draw:line"); break; case HWPDO_RECT: /* rectangle - the starting position, vertical/horizontal */ @@ -4162,8 +4160,8 @@ Double2Str (WTMM( value / 2)) + "mm"); } - rstartEl("draw:rect", rList); - pList->clear(); + rstartEl("draw:rect", mxList.get()); + mxList->clear(); if( (drawobj->property.flag & HWPDO_FLAG_AS_TEXTBOX) && drawobj->property.pPara ) // As Textbox { @@ -4210,8 +4208,8 @@ padd("draw:end-angle", sXML_CDATA, Double2Str(end_angle)); } } - rstartEl("draw:ellipse", rList); - pList->clear(); + rstartEl("draw:ellipse", mxList.get()); + mxList->clear(); if( drawobj->property.flag >> 19 & 0x01 && drawobj->property.pPara ) // As Textbox { @@ -4320,8 +4318,8 @@ padd("draw:end-angle", sXML_CDATA, "180"); } } - rstartEl("draw:ellipse", rList); - pList->clear(); + rstartEl("draw:ellipse", mxList.get()); + mxList->clear(); if( drawobj->property.flag >> 19 & 0x01 && drawobj->property.pPara ) // As Textbox { @@ -4437,8 +4435,8 @@ padd("svg:d", sXML_CDATA, oustr); - rstartEl("draw:path", rList); - pList->clear(); + rstartEl("draw:path", mxList.get()); + mxList->clear(); // As Textbox if( drawobj->property.flag >> 19 & 0x01 && drawobj->property.pPara ) { @@ -4500,8 +4498,8 @@ if(bIsPolygon) { - rstartEl("draw:polygon", rList); - pList->clear(); + rstartEl("draw:polygon", mxList.get()); + mxList->clear(); if( drawobj->property.flag >> 19 & 0x01 && // As Textbox drawobj->property.pPara ) @@ -4518,8 +4516,8 @@ } else { - rstartEl("draw:polyline", rList); - pList->clear(); + rstartEl("draw:polyline", mxList.get()); + mxList->clear(); if( drawobj->property.flag >> 19 & 0x01 && // As Textbox drawobj->property.pPara ) @@ -4563,8 +4561,8 @@ Double2Str (WTMM( value / 2)) + "mm"); } - rstartEl("draw:text-box", rList); - pList->clear(); + rstartEl("draw:text-box", mxList.get()); + mxList->clear(); HWPPara *pPara = drawobj->u.textbox.h; //parsePara(pPara); @@ -4578,7 +4576,7 @@ break; } } - pList->clear(); + mxList->clear(); drawobj = drawobj->next; } } @@ -4590,8 +4588,8 @@ void HwpReader::makeLine(Line * ) { padd("text:style-name", sXML_CDATA, "Horizontal Line"); - rstartEl( "text:p", rList); - pList->clear(); + rstartEl( "text:p", mxList.get()); + mxList->clear(); } @@ -4607,8 +4605,8 @@ padd("text:condition", sXML_CDATA, ""); padd("text:string-value", sXML_CDATA, ""); - rstartEl("text:hidden-text", rList); - pList->clear(); + rstartEl("text:hidden-text", mxList.get()); + mxList->clear(); HWPPara *para = hbox->plist.front(); while (para) @@ -4638,15 +4636,15 @@ { padd("text:id", sXML_CDATA, ascii(Int2Str(hbox->number, "edn%d", buf))); - rstartEl("text:endnote", rList); - pList->clear(); + rstartEl("text:endnote", mxList.get()); + mxList->clear(); padd("text:label", sXML_CDATA, ascii(Int2Str(hbox->number, "%d", buf))); - rstartEl("text:endnote-citation", rList); - pList->clear(); + rstartEl("text:endnote-citation", mxList.get()); + mxList->clear(); rchars(ascii(Int2Str(hbox->number, "%d", buf))); rendEl("text:endnote-citation"); - rstartEl("text:endnote-body", rList); + rstartEl("text:endnote-body", mxList.get()); parsePara(hbox->plist.front()); rendEl("text:endnote-body"); rendEl("text:endnote"); @@ -4655,15 +4653,15 @@ { padd("text:id", sXML_CDATA, ascii(Int2Str(hbox->number, "ftn%d", buf))); - rstartEl("text:footnote", rList); - pList->clear(); + rstartEl("text:footnote", mxList.get()); + mxList->clear(); padd("text:label", sXML_CDATA, ascii(Int2Str(hbox->number, "%d", buf))); - rstartEl("text:footnote-citation", rList); - pList->clear(); + rstartEl("text:footnote-citation", mxList.get()); + mxList->clear(); rchars(ascii(Int2Str(hbox->number, "%d", buf))); rendEl("text:footnote-citation"); - rstartEl("text:footnote-body", rList); + rstartEl("text:footnote-body", mxList.get()); parsePara(hbox->plist.front()); rendEl("text:footnote-body"); rendEl("text:footnote"); @@ -4679,7 +4677,7 @@ switch (hbox->type) { case PGNUM_AUTO: - rstartEl("text:page-number", rList); + rstartEl("text:page-number", mxList.get()); rchars(ascii(Int2Str(hbox->number, "%d", buf))); rendEl("text:page-number"); break; @@ -4693,7 +4691,7 @@ ascii(Int2Str(hbox->number, "refIllustration%d", buf))); padd("text:name",sXML_CDATA, "Illustration"); padd("style:num-format",sXML_CDATA, "1"); - rstartEl("text:sequence", rList); + rstartEl("text:sequence", mxList.get()); rchars(ascii(Int2Str(hbox->number, "%d", buf))); rendEl("text:sequence"); break; @@ -4702,7 +4700,7 @@ ascii(Int2Str(hbox->number, "refTable%d", buf))); padd("text:name",sXML_CDATA, "Table"); padd("style:num-format",sXML_CDATA, "1"); - rstartEl("text:sequence", rList); + rstartEl("text:sequence", mxList.get()); rchars(ascii(Int2Str(hbox->number, "%d", buf))); rendEl("text:sequence"); break; @@ -4736,13 +4734,13 @@ padd("svg:y", sXML_CDATA, "0cm"); padd("svg:width", sXML_CDATA, "2.0cm"); padd("fo:min-height", sXML_CDATA, "0.5cm"); - rstartEl("draw:text-box", rList); - pList->clear(); + rstartEl("draw:text-box", mxList.get()); + mxList->clear(); padd("text:style-name", sXML_CDATA, ascii(Int2Str(nPos, "PNPara%d", buf))); - rstartEl("text:p", rList); - pList->clear(); + rstartEl("text:p", mxList.get()); + mxList->clear(); if( hbox->shape > 2 ) rchars("- "); if( hbox->shape % 3 == 0 ) @@ -4752,8 +4750,8 @@ else padd("style:num-format", sXML_CDATA, "i"); padd("text:select-page", sXML_CDATA, "current"); - rstartEl("text:page-number", rList); - pList->clear(); + rstartEl("text:page-number", mxList.get()); + mxList->clear(); rchars("2"); rendEl("text:page-number"); if( hbox->shape > 2 ) @@ -4792,8 +4790,8 @@ { padd("text:style-name", sXML_CDATA, ascii(getPStyleName(para->GetParaShape().index, buf))); - rstartEl( "text:p",rList); - pList->clear(); + rstartEl( "text:p",mxList.get()); + mxList->clear(); } if( d->bFirstPara && d->bInBody ) { @@ -4806,8 +4804,8 @@ // U+C758 HANGUL SYLLABLE YI, U+CC98 HANGUL SYLLABLE CEO, // U+C74C HANGUL SYLLABLE EUM: "Begin of Document" padd("text:name", sXML_CDATA, OUString(buf, strlen(buf), RTL_TEXTENCODING_UTF8)); - rstartEl("text:bookmark", rList); - pList->clear(); + rstartEl("text:bookmark", mxList.get()); + mxList->clear(); rendEl("text:bookmark"); d->bFirstPara = false; } diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpreader.hxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpreader.hxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/hwpreader.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/hwpreader.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -22,6 +22,7 @@ #include #include #include +#include #include #include @@ -90,8 +91,7 @@ } private: Reference< XDocumentHandler > m_rxDocumentHandler; - Reference< XAttributeList > rList; - AttributeListImpl *pList; + rtl::Reference mxList; HWPFile hwpfile; HwpReaderPrivate *d; private: diff -Nru libreoffice-l10n-5.3.2~rc2/hwpfilter/source/solver.cxx libreoffice-l10n-5.3.3~rc2/hwpfilter/source/solver.cxx --- libreoffice-l10n-5.3.2~rc2/hwpfilter/source/solver.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/hwpfilter/source/solver.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -18,6 +18,7 @@ */ #include +#include #include "solver.h" @@ -63,18 +64,15 @@ int mgcLinearSystemD::Solve (int n, double** a, double* b) { - int* indxc = new int[n]; + std::unique_ptr indxc( new int[n] ); if ( !indxc ) return 0; - int* indxr = new int[n]; + std::unique_ptr indxr( new int[n] ); if ( !indxr ) { - delete[] indxc; return 0; } - int* ipiv = new int[n]; + std::unique_ptr ipiv( new int[n] ); if ( !ipiv ) { - delete[] indxc; - delete[] indxr; return 0; } @@ -93,26 +91,23 @@ { if ( ipiv[j] != 1 ) { - for (k = 0; k < n; k++) - { - if ( ipiv[k] == 0 ) - { - if ( fabs(a[j][k]) >= big ) + for (k = 0; k < n; k++) { - big = fabs(a[j][k]); - irow = j; - icol = k; + if ( ipiv[k] == 0 ) + { + if ( fabs(a[j][k]) >= big ) + { + big = fabs(a[j][k]); + irow = j; + icol = k; + } + } + else if ( ipiv[k] > 1 ) + { + return 0; + } } } - else if ( ipiv[k] > 1 ) - { - delete[] ipiv; - delete[] indxr; - delete[] indxc; - return 0; - } - } - } } ipiv[icol]++; @@ -131,9 +126,6 @@ indxc[i] = icol; if ( a[icol][icol] == 0 ) { - delete[] ipiv; - delete[] indxr; - delete[] indxc; return 0; } @@ -162,16 +154,13 @@ { for (k = 0; k < n; k++) { - save = a[k][indxr[j]]; - a[k][indxr[j]] = a[k][indxc[j]]; - a[k][indxc[j]] = save; + save = a[k][indxr[j]]; + a[k][indxr[j]] = a[k][indxc[j]]; + a[k][indxc[j]] = save; } } } - delete[] ipiv; - delete[] indxr; - delete[] indxc; return 1; } diff -Nru libreoffice-l10n-5.3.2~rc2/i18npool/qa/cppunit/test_breakiterator.cxx libreoffice-l10n-5.3.3~rc2/i18npool/qa/cppunit/test_breakiterator.cxx --- libreoffice-l10n-5.3.2~rc2/i18npool/qa/cppunit/test_breakiterator.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/i18npool/qa/cppunit/test_breakiterator.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -759,6 +759,10 @@ { 0x0001, 0x0002, 0x0020, 0x00A0, + 0x0300, 0x036F, //Combining Diacritical Marks + 0x1AB0, 0x1AFF, //Combining Diacritical Marks Extended + 0x1DC0, 0x1DFF, //Combining Diacritical Marks Supplement + 0x20D0, 0x20FF, //Combining Diacritical Marks for Symbols 0x2150, 0x215F, //Number Forms, fractions 0x2160, 0x2180, //Number Forms, roman numerals 0x2200, 0x22FF, //Mathematical Operators diff -Nru libreoffice-l10n-5.3.2~rc2/i18npool/source/breakiterator/breakiteratorImpl.cxx libreoffice-l10n-5.3.3~rc2/i18npool/source/breakiterator/breakiteratorImpl.cxx --- libreoffice-l10n-5.3.2~rc2/i18npool/source/breakiterator/breakiteratorImpl.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/i18npool/source/breakiterator/breakiteratorImpl.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -444,7 +444,8 @@ static const UBlock2Script scriptList[] = { {UBLOCK_NO_BLOCK, UBLOCK_NO_BLOCK, ScriptType::WEAK}, - {UBLOCK_BASIC_LATIN, UBLOCK_ARMENIAN, ScriptType::LATIN}, + {UBLOCK_BASIC_LATIN, UBLOCK_SPACING_MODIFIER_LETTERS, ScriptType::LATIN}, + {UBLOCK_GREEK, UBLOCK_ARMENIAN, ScriptType::LATIN}, {UBLOCK_HEBREW, UBLOCK_MYANMAR, ScriptType::COMPLEX}, {UBLOCK_GEORGIAN, UBLOCK_GEORGIAN, ScriptType::LATIN}, {UBLOCK_HANGUL_JAMO, UBLOCK_HANGUL_JAMO, ScriptType::ASIAN}, Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/icon-themes/sifr/cmd/lc_editheaderandfooter.png and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/icon-themes/sifr/cmd/lc_editheaderandfooter.png differ Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/icon-themes/sifr/cmd/sc_editheaderandfooter.png and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/icon-themes/sifr/cmd/sc_editheaderandfooter.png differ Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/icon-themes/sifr/res/savemodified_small.png and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/icon-themes/sifr/res/savemodified_small.png differ diff -Nru libreoffice-l10n-5.3.2~rc2/include/comphelper/string.hxx libreoffice-l10n-5.3.3~rc2/include/comphelper/string.hxx --- libreoffice-l10n-5.3.2~rc2/include/comphelper/string.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/comphelper/string.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -255,6 +255,15 @@ COMPHELPER_DLLPUBLIC sal_Int32 indexOfAny(OUString const& rIn, sal_Unicode const*const pChars, sal_Int32 const nPos); +/** Remove any of a list of code units in the string. + @param rIn OUString to search + @param pChars 0-terminated array of sal_Unicode code units to search for + + @return OUString that has all of the pChars code units removed + */ +COMPHELPER_DLLPUBLIC OUString removeAny(OUString const& rIn, + sal_Unicode const*const pChars); + /** Convert a sequence of strings to a single comma separated string. Note that no escaping of commas or anything fancy is done. diff -Nru libreoffice-l10n-5.3.2~rc2/include/sal/log-areas.dox libreoffice-l10n-5.3.3~rc2/include/sal/log-areas.dox --- libreoffice-l10n-5.3.2~rc2/include/sal/log-areas.dox 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/sal/log-areas.dox 2017-05-03 16:46:29.000000000 +0000 @@ -464,6 +464,7 @@ @li @c sw @li @c sw.a11y - accessibility @li @c sw.core - Writer core +@li @c sw.layout - Writer core view: document layout @li @c sw.createcopy @li @c sw.doc @li @c sw.docappend diff -Nru libreoffice-l10n-5.3.2~rc2/include/svl/zforlist.hxx libreoffice-l10n-5.3.3~rc2/include/svl/zforlist.hxx --- libreoffice-l10n-5.3.2~rc2/include/svl/zforlist.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/svl/zforlist.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -517,6 +517,9 @@ /// Count of decimals sal_uInt16 GetFormatPrecision( sal_uInt32 nFormat ) const; + /// Count of decimals with correct subformat according to fValue + sal_uInt16 GetFormatPrecision( sal_uInt32 nFormat, double fValue ) const; + /// Count of integer digits sal_uInt16 GetFormatIntegerDigits( sal_uInt32 nFormat ) const; @@ -531,6 +534,9 @@ sal_uInt16& nPrecision, sal_uInt16& nAnzLeading, LanguageType eLnge = LANGUAGE_DONTKNOW ); + /// Get round value with fraction representation + double GetRoundFractionValue( sal_uInt32 nFormat, double fValue ) const; + /// Check if format code string may be deleted by user bool IsUserDefined( const OUString& sStr, LanguageType eLnge = LANGUAGE_DONTKNOW ); diff -Nru libreoffice-l10n-5.3.2~rc2/include/svl/zformat.hxx libreoffice-l10n-5.3.3~rc2/include/svl/zformat.hxx --- libreoffice-l10n-5.3.2~rc2/include/svl/zformat.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/svl/zformat.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -169,6 +169,9 @@ /// Get type of format, may include css::util::NumberFormat::DEFINED bit short GetType() const { return eType; } + /// Get type of format, does not include css::util::NumberFormat::DEFINED + short GetMaskedType() const { return eType & ~css::util::NumberFormat::DEFINED; } + void SetType(const short eSetType) { eType = eSetType; } // Standard means the I18N defined standard format of this type void SetStandard() { bStandard = true; } @@ -212,11 +215,22 @@ sal_uInt16& nPrecision, sal_uInt16& nAnzLeading) const; + /// Get index of subformat (0..3) according to conditions and fNumber value + sal_uInt16 GetSubformatIndex( double fNumber ) const; + /// Count of decimal precision - sal_uInt16 GetFormatPrecision() const { return NumFor[0].Info().nCntPost; } + sal_uInt16 GetFormatPrecision( sal_uInt16 nIx = 0 ) const + { return NumFor[nIx].Info().nCntPost; } /// Count of integer digits - sal_uInt16 GetFormatIntegerDigits() const { return NumFor[0].Info().nCntPre; } + sal_uInt16 GetFormatIntegerDigits( sal_uInt16 nIx = 0 ) const + { return NumFor[nIx].Info().nCntPre; } + + /** Count of hidden integer digits with thousands dividor: + * formats like "0," to show only thousands + */ + sal_uInt16 GetThousandDivisorPrecision( sal_uInt16 nIx = 0 ) const + { return NumFor[nIx].Info().nThousand * 3; } //! Read/write access on a special sal_uInt16 component, may only be used on the //! standard format 0, 5000, ... and only by the number formatter! @@ -242,6 +256,9 @@ OUString GetDenominatorString( sal_uInt16 nNumFor ) const; OUString GetNumeratorString( sal_uInt16 nNumFor ) const; OUString GetIntegerFractionDelimiterString( sal_uInt16 nNumFor ) const; + /// Round fNumber to its fraction representation + double GetRoundFractionValue ( double fNumber ) const; + /** If the count of string elements (substrings, ignoring [modifiers] and so on) in a subformat code nNumFor (0..3) is equal to the given number. Used by ImpSvNumberInputScan::IsNumberFormatMain() to detect a matched @@ -553,7 +570,8 @@ sal_Int32& k, sal_uInt16& j, sal_uInt16 nIx, - short eSymbolType ); + short eSymbolType, + bool bInsertRightBlank = false ); // Helper function to fill in the integer part and the group (AKA thousand) separators SVL_DLLPRIVATE bool ImpNumberFillWithThousands( OUStringBuffer& sStr, @@ -579,6 +597,19 @@ sal_uInt16 nIx, bool bInteger ); + /** Calculate each element of fraction: + * integer part, numerator part, denominator part + * @param fNumber value to be represented as fraction. Will contain absolute fractional part + * @param nIx subformat number 0..3 + * @param fIntPart integral part of fraction + * @param nFrac numerator of fraction + * @param nDic denominator of fraction + */ + SVL_DLLPRIVATE void ImpGetFractionElements( double& fNumber, + sal_uInt16 nIx, + double& fIntPart, + sal_uInt64& nFrac, + sal_uInt64& nDiv ) const; SVL_DLLPRIVATE bool ImpGetFractionOutput(double fNumber, sal_uInt16 nIx, OUStringBuffer& OutString); diff -Nru libreoffice-l10n-5.3.2~rc2/include/svtools/insdlg.hxx libreoffice-l10n-5.3.3~rc2/include/svtools/insdlg.hxx --- libreoffice-l10n-5.3.2~rc2/include/svtools/insdlg.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/svtools/insdlg.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -60,7 +60,7 @@ return aObjectServerList.size(); } - const SvObjectServer operator[]( size_t n ) const + const SvObjectServer& operator[]( size_t n ) const { return aObjectServerList[ n ]; } diff -Nru libreoffice-l10n-5.3.2~rc2/include/vcl/menu.hxx libreoffice-l10n-5.3.3~rc2/include/vcl/menu.hxx --- libreoffice-l10n-5.3.2~rc2/include/vcl/menu.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/include/vcl/menu.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -133,7 +133,7 @@ friend struct ImplMenuDelData; private: ImplMenuDelData* mpFirstDel; - MenuItemList* pItemList; // Liste mit den MenuItems + std::unique_ptr pItemList; // list with MenuItems MenuLogo* pLogo; VclPtr pStartedFrom; VclPtr pWindow; @@ -359,7 +359,7 @@ // Fuer Menu-'Funktionen' MenuItemList* GetItemList() const { - return pItemList; + return pItemList.get(); } // returns the system's menu handle if native menus are supported diff -Nru libreoffice-l10n-5.3.2~rc2/lotuswordpro/source/filter/lwpframelayout.cxx libreoffice-l10n-5.3.3~rc2/lotuswordpro/source/filter/lwpframelayout.cxx --- libreoffice-l10n-5.3.2~rc2/lotuswordpro/source/filter/lwpframelayout.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/lotuswordpro/source/filter/lwpframelayout.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -761,7 +761,7 @@ } LwpFrameLayout::LwpFrameLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) - : LwpPlacableLayout(objHdr, pStrm), m_pFrame(nullptr) + : LwpPlacableLayout(objHdr, pStrm), m_pFrame(nullptr), m_bGettingMaxWidth(false) { } @@ -946,6 +946,10 @@ */ double LwpFrameLayout::GetMaxWidth() { + if (m_bGettingMaxWidth) + throw std::runtime_error("recursive GetMaxWidth"); + + m_bGettingMaxWidth = true; double fActualWidth = 0; rtl::Reference xLayout(GetContainerLayout()); LwpMiddleLayout* pParent = dynamic_cast(xLayout.get()); @@ -974,6 +978,7 @@ fActualWidth = fParentWidth - fXOffset - fParentMarginRight - fWrapRight; } + m_bGettingMaxWidth = false; return fActualWidth; } diff -Nru libreoffice-l10n-5.3.2~rc2/lotuswordpro/source/filter/lwpframelayout.hxx libreoffice-l10n-5.3.3~rc2/lotuswordpro/source/filter/lwpframelayout.hxx --- libreoffice-l10n-5.3.2~rc2/lotuswordpro/source/filter/lwpframelayout.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/lotuswordpro/source/filter/lwpframelayout.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -141,6 +141,7 @@ private: LwpFrameLink m_Link; LwpFrame* m_pFrame; + bool m_bGettingMaxWidth; }; /** diff -Nru libreoffice-l10n-5.3.2~rc2/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu libreoffice-l10n-5.3.3~rc2/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu --- libreoffice-l10n-5.3.2~rc2/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 2017-05-03 16:46:29.000000000 +0000 @@ -41,6 +41,9 @@ Clear ~Direct Formatting + + 1 + diff -Nru libreoffice-l10n-5.3.2~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-5.3.3~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-5.3.2~rc2/readlicense_oo/license/CREDITS.fodt 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/readlicense_oo/license/CREDITS.fodt 2017-05-03 16:46:29.000000000 +0000 @@ -1,12 +1,12 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.3.1.2$Linux_X86_64 LibreOffice_project/e80a0e0fd1875e1696614d24c32df0f95f03deb22012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.3.2.2$Linux_X86_64 LibreOffice_project/6cd4f1ef626f15116896b1d8e1398b56da0d0ee12012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 626 + 542 501 - 41197 + 41965 21698 true true @@ -16,9 +16,9 @@ 3649 3471 501 - 626 - 41697 - 22322 + 542 + 42464 + 22237 0 0 false @@ -70,7 +70,7 @@ false false true - 6513620 + 6611056 false false false @@ -317,40 +317,40 @@ - + - + - + - + - + - + - + - + - + @@ -398,24 +398,21 @@ - + - + - + - - - - + - + @@ -1045,7 +1042,7 @@ Credits - 1270 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-03-29 21:12:33. + 1282 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-05-03 13:12:26. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1072,10 +1069,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 21672Joined: 2000-10-10 + Caolán McNamaraCommits: 21990Joined: 2000-10-10 - Stephan BergmannCommits: 13956Joined: 2000-10-04 + Stephan BergmannCommits: 14171Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1083,35 +1080,35 @@ - Tor LillqvistCommits: 7816Joined: 2010-03-23 + Tor LillqvistCommits: 7837Joined: 2010-03-23 - *Noel GrandinCommits: 6479Joined: 2011-12-12 + *Noel GrandinCommits: 6489Joined: 2011-12-12 - Miklos VajnaCommits: 6233Joined: 2010-07-29 + Miklos VajnaCommits: 6291Joined: 2010-07-29 - Michael StahlCommits: 5878Joined: 2008-06-16 + Michael StahlCommits: 5928Joined: 2008-06-16 - Kohei YoshidaCommits: 5482Joined: 2009-06-19 + Kohei YoshidaCommits: 5499Joined: 2009-06-19 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - *Markus MohrhardCommits: 4650Joined: 2011-03-17 + *Markus MohrhardCommits: 4691Joined: 2011-03-17 - Eike RathkeCommits: 3736Joined: 2000-10-11 + Eike RathkeCommits: 3797Joined: 2000-10-11 - David TardonCommits: 3465Joined: 2009-11-12 + David TardonCommits: 3471Joined: 2009-11-12 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1125,16 +1122,16 @@ - Oliver SpechtCommits: 2546Joined: 2000-09-21 + Oliver SpechtCommits: 2548Joined: 2000-09-21 - Jan HolesovskyCommits: 2417Joined: 2009-06-23 + Jan HolesovskyCommits: 2429Joined: 2009-06-23 - Michael MeeksCommits: 2237Joined: 2004-08-05 + Michael MeeksCommits: 2241Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2211Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2212Joined: 2009-10-14 @@ -1148,7 +1145,7 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Julien NabetCommits: 2041Joined: 2010-11-04 + *Julien NabetCommits: 2051Joined: 2010-11-04 @@ -1156,13 +1153,13 @@ Christian LippkaCommits: 1805Joined: 2000-09-25 - *Andras TimarCommits: 1749Joined: 2010-10-02 + *Andras TimarCommits: 1756Joined: 2010-10-02 *Matúš KukanCommits: 1712Joined: 2011-04-06 - *Tomaž VajngerlCommits: 1618Joined: 2012-06-02 + *Tomaž VajngerlCommits: 1638Joined: 2012-06-02 @@ -1181,13 +1178,13 @@ - *Takeshi AbeCommits: 1274Joined: 2010-11-08 + *Takeshi AbeCommits: 1293Joined: 2010-11-08 - Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 + Thorsten BehrensCommits: 1220Joined: 2001-04-25 - Thorsten BehrensCommits: 1203Joined: 2001-04-25 + Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 Armin Le GrandCommits: 1188Joined: 2000-09-25 @@ -1195,44 +1192,44 @@ - *Matteo CasalinCommits: 1136Joined: 2011-11-13 + *Matteo CasalinCommits: 1161Joined: 2011-11-13 - *Lionel Elie MamaneCommits: 999Joined: 2011-01-15 + *Noel GrandinCommits: 1025Joined: 2016-09-07 - Petr MladekCommits: 958Joined: 2006-10-03 + *Lionel Elie MamaneCommits: 1000Joined: 2011-01-15 - Noel PowerCommits: 950Joined: 2002-09-24 + Petr MladekCommits: 958Joined: 2006-10-03 - Kai AhrensCommits: 909Joined: 2000-09-21 + Noel PowerCommits: 950Joined: 2002-09-24 - Henning BrinkmannCommits: 899Joined: 2002-08-14 + *Chris SherlockCommits: 917Joined: 2013-02-25 - *Chris SherlockCommits: 887Joined: 2013-02-25 + Kai AhrensCommits: 909Joined: 2000-09-21 - Cédric BosdonnatCommits: 882Joined: 2009-11-16 + Henning BrinkmannCommits: 899Joined: 2002-08-14 - *Noel GrandinCommits: 878Joined: 2016-09-07 + Cédric BosdonnatCommits: 882Joined: 2009-11-16 Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 - Sven JacobiCommits: 850Joined: 2000-09-21 + *Tamás ZolnaiCommits: 851Joined: 2012-08-06 - *Tamás ZolnaiCommits: 839Joined: 2012-08-06 + Sven JacobiCommits: 850Joined: 2000-09-21 @@ -1282,18 +1279,18 @@ *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Maxim MonastirskyCommits: 567Joined: 2013-10-27 + *Maxim MonastirskyCommits: 584Joined: 2013-10-27 Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 - Christian LohmaierCommits: 518Joined: 2008-06-01 + Christian LohmaierCommits: 536Joined: 2008-06-01 - *Xisco FauliCommits: 515Joined: 2011-02-06 + *Xisco FauliCommits: 516Joined: 2011-02-06 Jürgen SchmidtCommits: 512Joined: 2000-10-09 @@ -1302,7 +1299,7 @@ *Peter FoleyCommits: 488Joined: 2011-09-04 - *Khaled HosnyCommits: 471Joined: 2011-01-28 + *Khaled HosnyCommits: 475Joined: 2011-01-28 @@ -1310,21 +1307,21 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Samuel MehrbrodtCommits: 424Joined: 2011-06-08 + *Zdeněk CrhonekCommits: 434Joined: 2016-05-19 - *Zdeněk CrhonekCommits: 424Joined: 2016-05-19 + *Yousuf PhilipsCommits: 434Joined: 2014-09-21 - *Yousuf PhilipsCommits: 419Joined: 2014-09-21 + *Samuel MehrbrodtCommits: 427Joined: 2011-06-08 - Rene EngelhardCommits: 411Joined: 2005-03-14 + *Katarina BehrensCommits: 417Joined: 2010-10-13 - *Katarina BehrensCommits: 411Joined: 2010-10-13 + Rene EngelhardCommits: 412Joined: 2005-03-14 Dirk VoelzkeCommits: 392Joined: 2000-11-27 @@ -1344,15 +1341,15 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Jochen NitschkeCommits: 339Joined: 2016-02-02 + *Jochen NitschkeCommits: 355Joined: 2016-02-02 - *Szymon KłosCommits: 337Joined: 2014-03-22 + *Szymon KłosCommits: 347Joined: 2014-03-22 - *David OstrovskyCommits: 321Joined: 2012-04-01 + *David OstrovskyCommits: 322Joined: 2012-04-01 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1366,13 +1363,13 @@ *August SodoraCommits: 285Joined: 2011-10-18 - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Adolfo Jayme BarrientosCommits: 281Joined: 2013-06-21 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Adolfo Jayme BarrientosCommits: 274Joined: 2013-06-21 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 @@ -1391,16 +1388,16 @@ - *Jan-Marek GlogowskiCommits: 234Joined: 2013-11-14 + *Jan-Marek GlogowskiCommits: 238Joined: 2013-11-14 - *Andrea GelminiCommits: 230Joined: 2014-10-30 + *Andrea GelminiCommits: 237Joined: 2014-10-30 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *Laurent Balland-PoirierCommits: 205Joined: 2011-08-31 - *Laurent Balland-PoirierCommits: 201Joined: 2011-08-31 + Ingo SchmidtCommits: 202Joined: 2004-02-05 @@ -1419,20 +1416,23 @@ - *Arnaud VersiniCommits: 182Joined: 2010-10-05 + *Gabor KelemenCommits: 187Joined: 2016-08-25 - *Marco CecchettiCommits: 180Joined: 2011-04-14 + *Marco CecchettiCommits: 185Joined: 2011-04-14 - *François TigeotCommits: 176Joined: 2011-01-31 + *Arnaud VersiniCommits: 182Joined: 2010-10-05 - *Justin LuthCommits: 172Joined: 2014-09-30 + *Justin LuthCommits: 178Joined: 2014-09-30 + *François TigeotCommits: 176Joined: 2011-01-31 + + *Philipp RiemerCommits: 171Joined: 2012-05-25 @@ -1441,9 +1441,6 @@ *Nigel HawkinsCommits: 160Joined: 2010-10-28 - - *Gabor KelemenCommits: 159Joined: 2016-08-25 - @@ -1456,29 +1453,29 @@ *Alexander WilmsCommits: 151Joined: 2012-05-26 - Gregor HartmannCommits: 141Joined: 2000-10-12 + *andreas kainzCommits: 144Joined: 2015-03-18 - Giuseppe CastagnoCommits: 138Joined: 2007-12-09 + Gregor HartmannCommits: 141Joined: 2000-10-12 - *Artur DryomovCommits: 137Joined: 2013-03-14 + Giuseppe CastagnoCommits: 138Joined: 2007-12-09 - *andreas kainzCommits: 133Joined: 2015-03-18 + *Mike KaganskiCommits: 137Joined: 2015-04-26 - *Jesús CorriusCommits: 130Joined: 2010-10-07 + *Artur DryomovCommits: 137Joined: 2013-03-14 - *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 + *Jesús CorriusCommits: 130Joined: 2010-10-07 - *Mike KaganskiCommits: 128Joined: 2015-04-26 + *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 @@ -1498,11 +1495,14 @@ Takashi OnoCommits: 122Joined: 2009-12-10 - *Douglas MenckenCommits: 119Joined: 2013-12-11 + Bartosz KosiorekCommits: 120Joined: 2010-09-17 + *Douglas MenckenCommits: 119Joined: 2013-12-11 + + *Sebastian SpaethCommits: 119Joined: 2010-09-28 @@ -1511,22 +1511,19 @@ *jan IversenCommits: 116Joined: 2015-11-03 - - *Joren De CuyperCommits: 114Joined: 2013-01-07 - - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *Joren De CuyperCommits: 114Joined: 2013-01-07 - *Matthias FreundCommits: 107Joined: 2013-02-08 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - Bartosz KosiorekCommits: 106Joined: 2010-09-17 + *Pranav KantCommits: 107Joined: 2016-01-27 - *Pranav KantCommits: 103Joined: 2016-01-27 + *Matthias FreundCommits: 107Joined: 2013-02-08 @@ -1551,42 +1548,45 @@ *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Mark HungCommits: 91Joined: 2014-11-04 - *Pranav KantCommits: 90Joined: 2015-03-01 + *Krisztian PinterCommits: 90Joined: 2013-02-18 - *Armin Le GrandCommits: 89Joined: 2015-11-09 + *Pranav KantCommits: 90Joined: 2015-03-01 - *Henry CastroCommits: 89Joined: 2015-01-09 + *Henry CastroCommits: 90Joined: 2015-01-09 - *Albert ThuswaldnerCommits: 88Joined: 2011-01-26 + *Jean-Pierre LedureCommits: 89Joined: 2013-10-12 - *Daniel BankstonCommits: 88Joined: 2012-04-03 + *Armin Le GrandCommits: 89Joined: 2015-11-09 - *Tim RetoutCommits: 88Joined: 2012-02-14 + *Albert ThuswaldnerCommits: 88Joined: 2011-01-26 - *Adam CoCommits: 86Joined: 2013-04-28 + *Daniel BankstonCommits: 88Joined: 2012-04-03 - *Jean-Pierre LedureCommits: 85Joined: 2013-10-12 + *Tim RetoutCommits: 88Joined: 2012-02-14 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Adam CoCommits: 86Joined: 2013-04-28 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 + + *Javier FernandezCommits: 84Joined: 2013-03-06 @@ -1595,19 +1595,16 @@ *Minh NgoCommits: 83Joined: 2013-05-02 - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - - *Korrawit PruegsanusakCommits: 82Joined: 2011-05-28 + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - *Mark HungCommits: 81Joined: 2014-11-04 + *Muhammet KaraCommits: 82Joined: 2016-03-20 - *Muhammet KaraCommits: 80Joined: 2016-03-20 + *Korrawit PruegsanusakCommits: 82Joined: 2011-05-28 *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1643,6 +1640,9 @@ + *Rohan KumarCommits: 64Joined: 2016-02-23 + + *Michael WeghornCommits: 63Joined: 2014-09-10 @@ -1651,53 +1651,53 @@ Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 + + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - - + + *Jens CarlCommits: 59Joined: 2014-05-28 + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 *shiming zhangCommits: 59Joined: 2013-11-04 + + *Simon SteinbeissCommits: 58Joined: 2015-06-01 *Martin HoskenCommits: 58Joined: 2011-02-25 - - *yiming juCommits: 57Joined: 2013-11-01 *Jaskaran SinghCommits: 57Joined: 2016-02-18 + + *matteocamCommits: 56Joined: 2014-02-25 *Juergen FunkCommits: 55Joined: 2014-09-17 - - - - *Rohan KumarCommits: 55Joined: 2016-02-23 - *Matthew J. FrancisCommits: 55Joined: 2014-08-25 Nikolai PretzellCommits: 54Joined: 2001-03-09 + + *Mihály PalenikCommits: 54Joined: 2013-07-11 - - *yangzhangCommits: 54Joined: 2013-11-04 @@ -1707,11 +1707,11 @@ *Martin KepplingerCommits: 53Joined: 2011-02-18 + + *Rob SneldersCommits: 53Joined: 2011-02-08 - - *Rosemary SebastianCommits: 52Joined: 2015-06-23 @@ -1721,11 +1721,11 @@ *Will ThompsonCommits: 51Joined: 2012-03-21 + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 - - *Rachit GuptaCommits: 51Joined: 2014-01-18 @@ -1735,11 +1735,11 @@ *Ptyl DragonCommits: 50Joined: 2013-05-09 + + *Urs FässlerCommits: 48Joined: 2013-02-14 - - *Marcel MetzCommits: 48Joined: 2011-12-05 @@ -1749,11 +1749,11 @@ *mingli juCommits: 48Joined: 2013-11-05 + + *J. Graeme LingardCommits: 47Joined: 2010-09-29 - - *Alexandre VicenziCommits: 46Joined: 2014-01-15 @@ -1763,70 +1763,78 @@ *Varun DhallCommits: 46Joined: 2015-03-07 + + *Lior KaplanCommits: 46Joined: 2010-10-05 - - + + *Gabor KelemenCommits: 46Joined: 2013-06-18 + *Mihai VargaCommits: 46Joined: 2014-02-27 *Susobhan GhoshCommits: 45Joined: 2016-01-03 + + mb93783Commits: 45Joined: 2009-07-15 *Eilidh McAdamCommits: 45Joined: 2011-03-10 - - *Ashod NakashianCommits: 45Joined: 2016-01-10 *Daniel RobertsonCommits: 44Joined: 2015-06-27 + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 *Luc CastermansCommits: 43Joined: 2011-11-13 - - *Philippe JungCommits: 43Joined: 2015-05-01 *Peter JentschCommits: 42Joined: 2011-01-07 + + *Mark WielaardCommits: 42Joined: 2013-05-13 *Sébastien Le RayCommits: 41Joined: 2011-02-10 - - *Christian M. HellerCommits: 41Joined: 2013-02-24 + *Regina HenschelCommits: 41Joined: 2010-11-04 + + + + *Tsutomu UchinoCommits: 41Joined: 2014-01-08 *Francisco SaitoCommits: 40Joined: 2011-03-21 - *Regina HenschelCommits: 40Joined: 2010-11-04 + *Tamás BunthCommits: 39Joined: 2016-03-08 - - *Kayo HamidCommits: 39Joined: 2010-10-09 + + *minwangCommits: 39Joined: 2013-11-04 @@ -1834,28 +1842,28 @@ *Dennis FrancisCommits: 39Joined: 2015-04-15 - *Tamás BunthCommits: 38Joined: 2016-03-08 - - - - *Valentin KettnerCommits: 38Joined: 2014-03-17 *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + + *Ashod NakashianCommits: 37Joined: 2015-01-07 *Iain BillettCommits: 37Joined: 2012-04-11 - - *Jennifer LiebelCommits: 37Joined: 2014-08-29 + *Olivier HallotCommits: 37Joined: 2016-12-20 + + + + *Vinaya MandkeCommits: 36Joined: 2013-02-08 @@ -1864,11 +1872,11 @@ *Csikós TamásCommits: 36Joined: 2013-07-01 - - *Guillaume PousselCommits: 36Joined: 2010-12-22 + + *Priyanka GaikwadCommits: 36Joined: 2013-11-12 @@ -1878,11 +1886,11 @@ *Santiago MartinezCommits: 35Joined: 2012-01-20 - - *Łukasz HryniukCommits: 35Joined: 2015-01-02 + + *xukai liuCommits: 35Joined: 2013-11-01 @@ -1892,11 +1900,11 @@ *Tobias LippertCommits: 35Joined: 2014-01-02 - - *dechuangCommits: 35Joined: 2013-11-04 + + *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 @@ -1906,11 +1914,11 @@ *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 - - *Mark PageCommits: 34Joined: 2016-04-29 + + *Yogesh BharateCommits: 33Joined: 2013-10-11 @@ -1920,11 +1928,11 @@ *Pranav KantCommits: 32Joined: 2016-02-12 - - *GokulCommits: 32Joined: 2012-07-10 + + *Luke DellerCommits: 32Joined: 2012-11-26 @@ -1932,12 +1940,15 @@ *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 - *Gabor KelemenCommits: 32Joined: 2013-06-18 + *Gulsah KoseCommits: 32Joined: 2015-03-14 + + + *Sushil ShindeCommits: 31Joined: 2013-10-21 - *Sushil ShindeCommits: 31Joined: 2013-10-21 + *jan IversenCommits: 31Joined: 2017-02-10 *fengzengCommits: 31Joined: 2013-11-04 @@ -1968,17 +1979,20 @@ *Manal AlhassounCommits: 30Joined: 2012-09-10 - *Bryan QuigleyCommits: 30Joined: 2012-12-12 + *keremCommits: 30Joined: 2015-10-12 - *Gulsah KoseCommits: 30Joined: 2015-03-14 + *Bryan QuigleyCommits: 30Joined: 2012-12-12 - *Isamu MogiCommits: 30Joined: 2013-04-27 + *Laurent AlonsoCommits: 30Joined: 2011-10-23 + *Isamu MogiCommits: 30Joined: 2013-04-27 + + *Elton ChungCommits: 29Joined: 2012-01-31 @@ -1987,16 +2001,13 @@ *Vasily MelenchukCommits: 29Joined: 2015-01-27 - - *xinjiangCommits: 29Joined: 2013-11-04 - - *Harri PitkänenCommits: 29Joined: 2010-10-04 + *xinjiangCommits: 29Joined: 2013-11-04 - *keremCommits: 29Joined: 2015-10-12 + *Harri PitkänenCommits: 29Joined: 2010-10-04 *Pallavi JadhavCommits: 28Joined: 2013-02-08 @@ -2044,38 +2055,27 @@ *José Guilherme VanzCommits: 27Joined: 2012-09-26 - *Laurent AlonsoCommits: 27Joined: 2011-10-23 + *Akash JainCommits: 26Joined: 2016-03-25 - *Olivier HallotCommits: 27Joined: 2016-12-20 - - - *Akash JainCommits: 26Joined: 2016-03-25 - - *Josh HeidenreichCommits: 26Joined: 2011-07-20 *Nicolas ChristenerCommits: 26Joined: 2011-03-10 - - - - *jan IversenCommits: 26Joined: 2017-02-10 - *Daniel SikelerCommits: 26Joined: 2014-08-28 *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + *VortCommits: 25Joined: 2014-01-21 - - *Prashant PandeyCommits: 25Joined: 2013-02-20 @@ -2085,12 +2085,12 @@ *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 - - *Jens CarlCommits: 24Joined: 2014-05-28 - + *Dennis RoczekCommits: 24Joined: 2015-06-09 + + *Uray M. JánosCommits: 24Joined: 2012-07-17 @@ -2099,11 +2099,11 @@ *Tomofumi YagiCommits: 24Joined: 2011-10-20 + + *Pedro GiffuniCommits: 24Joined: 2011-10-28 - - *Felix ZhangCommits: 23Joined: 2011-10-19 @@ -2113,11 +2113,11 @@ *Lucas BaudinCommits: 23Joined: 2011-01-25 + + *Sören MöllerCommits: 23Joined: 2011-01-03 - - *Robert RothCommits: 23Joined: 2010-10-31 @@ -2127,39 +2127,39 @@ *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + *zhenyu yuanCommits: 22Joined: 2013-11-06 - - + + *Johnny_MCommits: 22Joined: 2016-05-12 + *Jian Fang ZhangCommits: 22Joined: 2012-06-18 *Jacek WolszczakCommits: 22Joined: 2010-10-07 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 *Frédéric WangCommits: 22Joined: 2013-06-22 - - *Júlio HoffimannCommits: 22Joined: 2010-10-18 - *Dennis RoczekCommits: 21Joined: 2015-06-09 - - *Cor NouwsCommits: 21Joined: 2011-11-19 + + *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - *Tushar BendeCommits: 20Joined: 2013-09-27 @@ -2169,11 +2169,11 @@ *Andy HolderCommits: 20Joined: 2010-12-06 + + Eric BachardCommits: 20Joined: 2005-10-19 - - *Petr VorelCommits: 20Joined: 2012-02-17 @@ -2183,56 +2183,64 @@ *Lennard WasserthalCommits: 19Joined: 2012-08-11 + + *krishna keshavCommits: 19Joined: 2016-05-05 - - *AndrewCommits: 19Joined: 2014-02-26 + *Arnaud VersiniCommits: 19Joined: 2013-08-10 + + *Sven WehnerCommits: 19Joined: 2014-01-11 + + *Ravindra VidhateCommits: 19Joined: 2014-01-30 Xiaofei ZhangCommits: 19Joined: 2010-06-28 - - *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 *Alex PCommits: 18Joined: 2016-03-03 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 - - *Federico BassiniCommits: 18Joined: 2016-10-06 *Boris DušekCommits: 18Joined: 2013-07-21 + + *Alfonso EusebioCommits: 17Joined: 2011-01-16 *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - - + + *Vitaliy AndersonCommits: 17Joined: 2016-12-09 + *Jian Hong ChengCommits: 17Joined: 2012-06-26 + + *Bálint DózsaCommits: 17Joined: 2011-02-10 @@ -2242,11 +2250,11 @@ *Umesh KadamCommits: 17Joined: 2014-01-10 - - *navin patidarCommits: 17Joined: 2013-01-06 + + *Niko RönkköCommits: 16Joined: 2010-10-31 @@ -2256,11 +2264,11 @@ *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - - *tsahi glikCommits: 16Joined: 2013-06-04 + + *Jordan AyersCommits: 16Joined: 2010-11-04 @@ -2270,81 +2278,81 @@ *Chris LaplanteCommits: 16Joined: 2014-04-07 - - - - *Arnaud VersiniCommits: 16Joined: 2013-08-10 - Florian ReuterCommits: 16Joined: 2010-09-14 + + *Adam KasztennyCommits: 16Joined: 2016-03-27 *Maciej RumianowskiCommits: 16Joined: 2011-07-19 - - *Luke DixonCommits: 16Joined: 2010-10-26 *Lei De BinCommits: 16Joined: 2012-07-04 + + *Nikhil WalvekarCommits: 15Joined: 2013-11-01 *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Luke SymesCommits: 15Joined: 2010-10-01 *Heena GuptaCommits: 15Joined: 2014-06-17 + + *Joachim TremourouxCommits: 15Joined: 2010-11-19 Octavio AlvarezCommits: 15Joined: 2010-09-13 - - *Yifan JCommits: 15Joined: 2010-12-16 *Alexander BergmannCommits: 15Joined: 2012-01-13 + + *melikeyurtogluCommits: 15Joined: 2015-10-09 *Povilas KanapickasCommits: 15Joined: 2010-10-18 - - *Cosimo CecchiCommits: 15Joined: 2011-11-02 *Aron BudeaCommits: 14Joined: 2014-12-22 + + + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 + *Zhe WangCommits: 14Joined: 2012-06-20 *Sun YingCommits: 14Joined: 2012-08-16 - - *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 + + *Juan PiccaCommits: 14Joined: 2014-07-23 @@ -2354,23 +2362,15 @@ *Zsolt BölönyCommits: 14Joined: 2015-01-10 - - - - *Johnny_MCommits: 13Joined: 2016-05-12 - *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Prashant ShahCommits: 13Joined: 2010-10-10 - *LeMoyne CastleCommits: 13Joined: 2010-10-25 - - - - *Mathias HasselmannCommits: 13Joined: 2013-01-14 @@ -2379,11 +2379,11 @@ *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Abhilash SinghCommits: 12Joined: 2016-07-22 @@ -2393,11 +2393,11 @@ *Gábor StefanikCommits: 12Joined: 2012-04-07 + + *Jani MonosesCommits: 12Joined: 2010-10-30 - - *Mirek MazelCommits: 12Joined: 2012-06-05 @@ -2407,11 +2407,11 @@ *tymyjanCommits: 12Joined: 2016-04-03 + + *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 - - *Tomas HlavatyCommits: 12Joined: 2011-12-06 @@ -2421,11 +2421,11 @@ *Jean-Baptiste FaureCommits: 12Joined: 2011-02-20 + + *nadithCommits: 11Joined: 2016-07-14 - - *kadertarlanCommits: 11Joined: 2015-12-14 @@ -2433,30 +2433,38 @@ *Jung-uk KimCommits: 11Joined: 2012-08-13 + *brainbreakerCommits: 11Joined: 2017-02-06 + + + + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *Phillip SzCommits: 11Joined: 2015-03-16 *Maarten BosmansCommits: 11Joined: 2016-08-24 + + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + *Marco A.G.PintoCommits: 11Joined: 2016-02-02 + + *David BolenCommits: 11Joined: 2012-03-07 - - *Peter RabiCommits: 11Joined: 2011-07-14 + + *Sean YoungCommits: 11Joined: 2013-05-16 @@ -2466,11 +2474,11 @@ *Michael JaumannCommits: 11Joined: 2014-09-02 - - *Charu TyagiCommits: 11Joined: 2014-06-25 + + *René KjellerupCommits: 11Joined: 2010-10-14 @@ -2480,36 +2488,28 @@ *Benjamin NiCommits: 10Joined: 2015-04-02 - - *Kristian RietveldCommits: 10Joined: 2011-10-15 + + *Chirag ManwaniCommits: 10Joined: 2016-02-16 - *Vitaliy AndersonCommits: 10Joined: 2016-12-09 - - *Theo van KlaverenCommits: 10Joined: 2011-03-10 - - - - *Marco A.G.PintoCommits: 10Joined: 2016-02-02 - *Luke PetrolekasCommits: 10Joined: 2011-02-12 *Stefan WeibergCommits: 10Joined: 2014-08-28 + + *Mert TumerCommits: 10Joined: 2016-04-30 - - *Timo HeinoCommits: 10Joined: 2010-11-22 @@ -2517,20 +2517,31 @@ *Dinesh PatilCommits: 9Joined: 2014-03-12 + *Ximeng ZuCommits: 9Joined: 2017-03-17 + + + + + *heiko tietzeCommits: 9Joined: 2016-10-06 + + *Steven ButlerCommits: 9Joined: 2011-01-07 *skswalesCommits: 9Joined: 2016-05-06 - - *Robinson TryonCommits: 9Joined: 2012-06-21 + + *Michael DunphyCommits: 9Joined: 2013-04-18 + *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + *Matthew PottageCommits: 9Joined: 2014-07-26 @@ -2539,9 +2550,6 @@ - *Ryan McCoskrieCommits: 9Joined: 2014-09-14 - - *Gökhan GurbetoğluCommits: 9Joined: 2016-06-06 @@ -2550,67 +2558,67 @@ *Mattias JohnssonCommits: 9Joined: 2010-10-18 - - *David VogtCommits: 9Joined: 2012-02-05 + + *Sean DavisCommits: 8Joined: 2015-06-01 - *heiko tietzeCommits: 8Joined: 2016-10-06 - - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 - - *Matus UzakCommits: 8Joined: 2016-02-22 *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + *Michael CallahanCommits: 8Joined: 2010-12-06 - *Fakabbir AminCommits: 8Joined: 2017-01-29 + *Troy RolloCommits: 8Joined: 2011-07-11 - - - *Troy RolloCommits: 8Joined: 2011-07-11 + *Fakabbir AminCommits: 8Joined: 2017-01-29 *Jenei GáborCommits: 8Joined: 2011-07-29 + + *Robert DargaudCommits: 8Joined: 2011-04-12 *Ursache VladimirCommits: 8Joined: 2015-02-10 - - *Tomcsik BenceCommits: 8Joined: 2012-01-14 Fong LinCommits: 8Joined: 2010-09-14 + + + + *Dilek UzulmezCommits: 8Joined: 2016-10-15 + *RajashriCommits: 8Joined: 2013-12-06 *SouravCommits: 8Joined: 2014-03-15 - - *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + *HeiherCommits: 8Joined: 2015-07-07 @@ -2620,11 +2628,11 @@ *Daisuke NishinoCommits: 8Joined: 2011-11-06 - - *karthCommits: 8Joined: 2013-01-07 + + *Nathan YeeCommits: 8Joined: 2015-01-01 @@ -2634,11 +2642,11 @@ Jody GoldbergCommits: 8Joined: 2010-09-15 - - *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + *IanCommits: 8Joined: 2015-08-06 @@ -2648,11 +2656,11 @@ *Martin SrebotnjakCommits: 7Joined: 2010-12-19 - - - *brainbreakerCommits: 7Joined: 2017-02-06 + *Krunoslav ŠebetićCommits: 7Joined: 2016-04-03 + + *David DelmaCommits: 7Joined: 2014-05-13 @@ -2660,6 +2668,9 @@ *Roi IllouzCommits: 7Joined: 2013-10-20 + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 + + *Thies PierdolaCommits: 7Joined: 2011-01-28 @@ -2668,16 +2679,19 @@ *Mathias MichelCommits: 7Joined: 2012-11-19 + *Szymon KłosCommits: 7Joined: 2017-04-14 + + *Giuseppe BilottaCommits: 7Joined: 2014-09-09 *iremCommits: 7Joined: 2015-10-11 + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 - - *Terrence EngerCommits: 7Joined: 2011-10-27 @@ -2687,11 +2701,11 @@ *Christopher CopitsCommits: 7Joined: 2012-09-19 + + *Deena FrancisCommits: 7Joined: 2014-07-29 - - *Keith CurtisCommits: 7Joined: 2013-12-20 @@ -2701,11 +2715,11 @@ *Keith McRaeCommits: 7Joined: 2012-01-18 + + *Wang LeiCommits: 7Joined: 2012-06-14 - - *Rosemary SebastianCommits: 7Joined: 2017-01-03 @@ -2715,11 +2729,11 @@ *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 - - *Christoph LutzCommits: 7Joined: 2011-09-06 @@ -2727,9 +2741,6 @@ *V Stuart FooteCommits: 7Joined: 2014-12-04 - *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 - - *Eric SeynaeveCommits: 7Joined: 2013-02-04 @@ -2780,10 +2791,10 @@ *abdulwdCommits: 6Joined: 2016-12-22 - *Krunoslav ŠebetićCommits: 6Joined: 2016-04-03 + *Phil BordelonCommits: 6Joined: 2010-09-30 - *Phil BordelonCommits: 6Joined: 2010-09-30 + *Bjoern MichaelsenCommits: 6Joined: 2017-04-19 *Ricardo MorenoCommits: 6Joined: 2010-11-03 @@ -2797,14 +2808,17 @@ *Kay SchenkCommits: 6Joined: 2014-09-19 - *David VerrierCommits: 6Joined: 2013-02-26 + *Bernhard WidlCommits: 6Joined: 2017-03-27 - *tianyaoCommits: 6Joined: 2013-11-09 + *David VerrierCommits: 6Joined: 2013-02-26 + *tianyaoCommits: 6Joined: 2013-11-09 + + *Anurag KanungoCommits: 6Joined: 2013-04-19 @@ -2813,11 +2827,11 @@ *Fabio BusoCommits: 6Joined: 2015-11-01 + + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 - - *shiraharaCommits: 6Joined: 2011-01-28 @@ -2827,11 +2841,11 @@ *Sedat AkCommits: 6Joined: 2015-11-08 + + *Steven GuoCommits: 6Joined: 2016-03-02 - - *ChamalCommits: 6Joined: 2016-08-01 @@ -2841,11 +2855,11 @@ *Werner KoernerCommits: 5Joined: 2012-12-11 + + *Antoine ProulxCommits: 5Joined: 2011-01-30 - - *Timothy MarkleCommits: 5Joined: 2014-01-31 @@ -2855,11 +2869,11 @@ *Ciorba EdmondCommits: 5Joined: 2013-06-11 + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 - - *Jan KantertCommits: 5Joined: 2014-06-12 @@ -2869,11 +2883,11 @@ *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 + + *Miguel GomezCommits: 5Joined: 2013-04-02 - - *Berk GurekenCommits: 5Joined: 2015-10-01 @@ -2883,14 +2897,22 @@ *Pavel JaníkCommits: 5Joined: 2012-11-29 + + + + *Aron BudeaCommits: 5Joined: 2017-01-23 + *Guillaume SmahaCommits: 5Joined: 2015-11-25 - - + + *Thomas BeckCommits: 5Joined: 2017-03-27 + *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 + + *Marc-Andre LaverdiereCommits: 5Joined: 2011-07-19 @@ -2900,11 +2922,11 @@ *Pasi LallinahoCommits: 5Joined: 2015-06-02 - - *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + *tamsil1amani3Commits: 5Joined: 2016-12-22 @@ -2912,111 +2934,111 @@ *Kohei YoshidaCommits: 5Joined: 2013-09-07 - *Dilek UzulmezCommits: 5Joined: 2016-10-15 - - - - *Gian Domenico CeccariniCommits: 5Joined: 2017-01-13 *Bence BabatiCommits: 5Joined: 2012-08-13 + + *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 *pv2kCommits: 5Joined: 2016-11-28 - - *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 *David HobleyCommits: 5Joined: 2010-10-04 + + *Gil ForcadaCommits: 5Joined: 2010-09-28 *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Jeffrey ChangCommits: 5Joined: 2011-06-01 *Pavel KysilkaCommits: 5Joined: 2012-06-25 + + *Tom TromeyCommits: 4Joined: 2011-08-11 *Santiago AlessandriCommits: 4Joined: 2010-11-11 - - *Ken BiondiCommits: 4Joined: 2014-03-05 *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + *Kate GossCommits: 4Joined: 2012-02-11 *ClioCommits: 4Joined: 2011-01-30 - - *Elie RouxCommits: 4Joined: 2013-05-29 *Simon DannerCommits: 4Joined: 2014-08-02 + + *Thomas ViehmannCommits: 4Joined: 2014-08-15 *pasqual milvaquesCommits: 4Joined: 2015-12-02 - - *Alex HenrieCommits: 4Joined: 2014-03-05 *Derrick RochaCommits: 4Joined: 2015-08-26 + + *Maja DjordjevicCommits: 4Joined: 2011-01-06 *Michael MuenchCommits: 4Joined: 2011-02-13 - - *Andrea PescettiCommits: 4Joined: 2013-10-07 *Ulrich KitzingerCommits: 4Joined: 2013-11-30 + + *Kevin SuoCommits: 4Joined: 2014-11-06 *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - - + + *Patrick JaapCommits: 4Joined: 2017-01-30 + *Burcin AkalinCommits: 4Joined: 2015-12-18 + + *XiaoliCommits: 4Joined: 2013-03-23 @@ -3026,11 +3048,11 @@ *coypuCommits: 4Joined: 2016-02-03 - - *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 @@ -3040,11 +3062,11 @@ *Sahasranaman M SCommits: 4Joined: 2015-10-04 - - *Yossi ZahnCommits: 4Joined: 2016-11-25 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 @@ -3054,6 +3076,9 @@ *Tim EvesCommits: 4Joined: 2016-02-23 + + *Arkadiy IllarionovCommits: 4Joined: 2017-01-15 + @@ -3220,39 +3245,28 @@ *Marek DoleželCommits: 3Joined: 2015-07-06 - *Aron BudeaCommits: 3Joined: 2017-01-23 + *Mayank GuptaCommits: 3Joined: 2016-03-11 - *Patrick JaapCommits: 3Joined: 2017-01-30 - - - *Mayank GuptaCommits: 3Joined: 2016-03-11 - - *David NalleyCommits: 3Joined: 2011-03-03 *Golnaz IrannejadCommits: 3Joined: 2013-04-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 *Luboš LuňákCommits: 3Joined: 2014-03-18 + + *Sérgio MarquesCommits: 3Joined: 2011-11-25 - *baltasarqCommits: 3Joined: 2016-02-24 - - - - *Marina LatiniCommits: 3Joined: 2016-11-10 @@ -3261,11 +3275,11 @@ *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - - *Ulrich GemkowCommits: 3Joined: 2016-10-27 @@ -3275,11 +3289,11 @@ *Alexander ThurgoodCommits: 3Joined: 2011-01-26 + + *Bertrand LorentzCommits: 3Joined: 2012-08-03 - - *Marina PlakalovicCommits: 3Joined: 2012-12-14 @@ -3289,11 +3303,11 @@ *Haidong LianCommits: 3Joined: 2013-07-24 + + *Jacopo NespoloCommits: 3Joined: 2010-10-01 - - *Robert M CampbellCommits: 3Joined: 2013-11-13 @@ -3303,13 +3317,10 @@ *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 - - *Pascal UllrichCommits: 3Joined: 2010-12-28 - - *qarkaiCommits: 3Joined: 2017-01-15 + *Pascal UllrichCommits: 3Joined: 2010-12-28 *Edmund WongCommits: 3Joined: 2016-12-08 @@ -3332,56 +3343,67 @@ Keith StribleyCommits: 3Joined: 2010-06-29 - *Mike EberdtCommits: 3Joined: 2011-07-12 + *Jean-Sebastien BevilacquaCommits: 3Joined: 2017-02-09 + *Mike EberdtCommits: 3Joined: 2011-07-12 + + *Joan MontaneCommits: 3Joined: 2013-02-22 *Stephan van den AkkerCommits: 3Joined: 2012-06-07 + *baltasarqCommits: 3Joined: 2016-02-24 + + + + *Benjamin DrungCommits: 3Joined: 2012-06-08 *Jason HulmeCommits: 3Joined: 2013-06-05 - - *lbenesCommits: 3Joined: 2016-07-30 *Oliver GüntherCommits: 3Joined: 2012-08-09 + + *Thorsten WagnerCommits: 3Joined: 2015-04-24 *Roland BaudinCommits: 3Joined: 2011-05-16 - - *drazilCommits: 3Joined: 2016-08-27 *Guto MaiaCommits: 3Joined: 2011-03-18 + + *Nagy AkosCommits: 3Joined: 2013-06-27 *Anthony DurityCommits: 3Joined: 2011-04-18 - - *Xuacu SaturioCommits: 3Joined: 2010-12-19 + *Manfred BlumeCommits: 3Joined: 2017-03-27 + + + + *Jan DarmochwalCommits: 3Joined: 2011-01-27 @@ -3389,12 +3411,12 @@ *Jeremy BrownCommits: 3Joined: 2012-09-19 - - - + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 + + *sllCommits: 2Joined: 2016-09-06 @@ -3404,11 +3426,11 @@ *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Kenneth KoskiCommits: 2Joined: 2016-02-20 @@ -3418,11 +3440,11 @@ *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 - - *Gary HoustonCommits: 2Joined: 2014-12-15 + + *UrmasCommits: 2Joined: 2012-02-13 @@ -3432,11 +3454,11 @@ *Valter MuraCommits: 2Joined: 2015-06-07 - - *Andrew HigginsonCommits: 2Joined: 2012-04-10 + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 @@ -3446,15 +3468,18 @@ *Matthias KloseCommits: 2Joined: 2011-03-01 - - *Donizete WaterkemperCommits: 2Joined: 2013-05-23 + + *Yuri DarioCommits: 2Joined: 2012-07-18 + *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + *Tibor MógerCommits: 2Joined: 2016-12-06 @@ -3491,6 +3516,9 @@ + *Ilmari LauhakangasCommits: 2Joined: 2017-04-15 + + *Ed DeanCommits: 2Joined: 2011-01-14 @@ -3499,11 +3527,11 @@ *Jean Charles PapinCommits: 2Joined: 2011-02-11 + + *Tobias KranzCommits: 2Joined: 2011-02-17 - - *Kishor BhatCommits: 2Joined: 2015-01-28 @@ -3513,11 +3541,11 @@ *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - Loiseleur MichelCommits: 2Joined: 2010-09-14 @@ -3527,13 +3555,10 @@ *Sergey FarbotkaCommits: 2Joined: 2012-09-21 - - *Daniel StoneCommits: 2Joined: 2014-10-29 - - *Thomas BeckCommits: 2Joined: 2017-03-27 + *Daniel StoneCommits: 2Joined: 2014-10-29 *JeevanCommits: 2Joined: 2017-03-04 @@ -3679,142 +3704,139 @@ *Arne de BruijnCommits: 2Joined: 2012-12-11 - *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 - - *Martin HollmichelCommits: 2Joined: 2015-06-29 - - *Flex LiuCommits: 2Joined: 2012-09-04 + + *Jingtao YanCommits: 2Joined: 2015-03-23 - *Jean-Sebastien BevilacquaCommits: 2Joined: 2017-02-09 - - *Janos FaragoCommits: 2Joined: 2013-09-03 - - *Hussian AlamriCommits: 2Joined: 2014-05-14 *Christos StrubulisCommits: 2Joined: 2012-12-09 + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 *Jing XianCommits: 2Joined: 2013-06-26 - - *Michael NattererCommits: 2Joined: 2011-04-08 *Neil MooreCommits: 2Joined: 2013-08-09 + + *Jagan LokanathaCommits: 2Joined: 2013-11-19 *Arno TeigsethCommits: 2Joined: 2011-09-14 - - *Pierre LepageCommits: 2Joined: 2016-11-05 *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Sophie GautierCommits: 2Joined: 2010-12-19 *Markus WernigCommits: 2Joined: 2015-03-18 - - *Maxim IorshCommits: 2Joined: 2011-10-05 *dbeurleCommits: 2Joined: 2015-01-12 + + *Carlos LuqueCommits: 2Joined: 2015-07-16 *Robert SedakCommits: 2Joined: 2010-10-05 - - *Emanuele FiaCommits: 2Joined: 2011-11-02 *Janit AnjariaCommits: 2Joined: 2013-04-19 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 *Moritz KuettCommits: 2Joined: 2013-03-23 - - *Abeer SethiCommits: 2Joined: 2012-04-12 *Jan HubickaCommits: 2Joined: 2011-09-12 + + *ackepenekCommits: 2Joined: 2016-02-21 *Cyril RoelandtCommits: 2Joined: 2011-04-26 - - *Jacek FraczekCommits: 2Joined: 2016-10-05 *Yury TarasievichCommits: 2Joined: 2011-11-23 + + *John Paul Adrian GlaubitzCommits: 2Joined: 2016-11-27 *Hideki IkedaCommits: 2Joined: 2014-06-25 - - *Takashi NakamotoCommits: 2Joined: 2011-08-28 *Daniel HerdeCommits: 2Joined: 2012-08-09 + + *Edmund WongCommits: 2Joined: 2017-01-16 + *Alexey VlasovCommits: 2Joined: 2017-04-12 + + *Johann MessnerCommits: 2Joined: 2012-08-28 - - *Nadav VinikCommits: 2Joined: 2010-10-21 + + *Bisal NayalCommits: 2Joined: 2014-05-07 @@ -3824,13 +3846,13 @@ *Nurhak ALTINCommits: 1Joined: 2016-05-01 - - *Goran RakicCommits: 1Joined: 2013-03-30 + + - *Atef haresCommits: 1Joined: 2017-03-12 + *Olivier RCommits: 1Joined: 2017-05-02 *Ross BurtonCommits: 1Joined: 2012-04-18 @@ -3838,11 +3860,11 @@ *bansan85Commits: 1Joined: 2016-12-21 - - *Martin BrownCommits: 1Joined: 2013-02-23 + + *Philipp KaluzaCommits: 1Joined: 2012-10-21 @@ -3852,11 +3874,11 @@ *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Christina AccioneCommits: 1Joined: 2016-11-22 + + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 @@ -3866,15 +3888,18 @@ *Ruggero CyrilleCommits: 1Joined: 2014-10-18 - - *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Foo Lai ChooCommits: 1Joined: 2014-11-26 + *Atef haresCommits: 1Joined: 2017-03-12 + + *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 @@ -3928,16 +3953,19 @@ *thvalloisCommits: 1Joined: 2017-01-03 + *Gabriel HerreraCommits: 1Joined: 2017-04-05 + + *Robin KumarCommits: 1Joined: 2014-06-17 *Neven ĆosićCommits: 1Joined: 2012-10-08 + + *Lennart PoetteringCommits: 1Joined: 2014-10-09 - - *Zhengqiang WangCommits: 1Joined: 2016-06-02 @@ -3947,11 +3975,11 @@ *Krunoslav ŠebetićCommits: 1Joined: 2016-03-10 + + *Benjamin OtteCommits: 1Joined: 2013-06-15 - - *Nathan WellsCommits: 1Joined: 2015-09-03 @@ -3961,11 +3989,11 @@ *Dobra GaborCommits: 1Joined: 2015-04-02 + + *Naser SharifiCommits: 1Joined: 2012-11-26 - - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 @@ -3975,11 +4003,11 @@ *Mathias SuppCommits: 1Joined: 2014-02-25 + + *Eric S. RaymondCommits: 1Joined: 2013-06-07 - - *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 @@ -3989,11 +4017,11 @@ *Rafael CabralCommits: 1Joined: 2011-03-31 + + *tinderboxCommits: 1Joined: 2013-04-11 - - *pgajdosCommits: 1Joined: 2011-01-31 @@ -4003,11 +4031,11 @@ *Saurav SachidanandCommits: 1Joined: 2017-01-17 + + *Simon WilperCommits: 1Joined: 2015-01-24 - - *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 @@ -4017,11 +4045,11 @@ *Javier CatalaCommits: 1Joined: 2012-04-26 + + *Apachev IvanCommits: 1Joined: 2016-03-08 - - *n5xgdhCommits: 1Joined: 2016-12-04 @@ -4031,11 +4059,11 @@ *yjw9012Commits: 1Joined: 2013-12-30 + + *armijnCommits: 1Joined: 2010-12-30 - - *Ondřej SmržCommits: 1Joined: 2013-03-10 @@ -4045,13 +4073,10 @@ *massinissaHamidiCommits: 1Joined: 2015-05-07 - - *James ClarkeCommits: 1Joined: 2016-08-05 - - *Andor ErtseyCommits: 1Joined: 2011-09-04 + *James ClarkeCommits: 1Joined: 2016-08-05 *Patrick LubyCommits: 1Joined: 2015-10-04 @@ -4295,16 +4320,13 @@ *rpmbuildCommits: 1Joined: 2016-08-15 - *Bernhard WidlCommits: 1Joined: 2017-03-27 - - *ZirkCommits: 1Joined: 2015-01-07 - - *Kevin PengCommits: 1Joined: 2012-07-20 + + *Paolo PozzanCommits: 1Joined: 2010-12-19 @@ -4314,11 +4336,11 @@ *Ward van WanrooijCommits: 1Joined: 2012-06-25 - - *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + *Pierre SauterCommits: 1Joined: 2015-12-01 @@ -4328,11 +4350,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Fabio BioccettiCommits: 1Joined: 2016-10-21 @@ -4342,11 +4364,11 @@ *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 + + *Martin LiškaCommits: 1Joined: 2014-03-26 @@ -4356,11 +4378,11 @@ *Шиповський РоманCommits: 1Joined: 2016-10-28 - - *Jose ManuelCommits: 1Joined: 2012-04-25 + + *Fernando PiraniCommits: 1Joined: 2015-08-04 @@ -4370,11 +4392,11 @@ *Vojta KoukalCommits: 1Joined: 2013-03-03 - - *PrashantCommits: 1Joined: 2016-05-17 + + *Chris CheneyCommits: 1Joined: 2011-04-27 @@ -4384,11 +4406,11 @@ *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 - - *liongoldCommits: 1Joined: 2016-11-21 + + *Mike GorseCommits: 1Joined: 2017-03-11 @@ -4398,11 +4420,11 @@ *ricardobottoCommits: 1Joined: 2013-05-18 - - *Guillaume SmahaCommits: 1Joined: 2016-04-14 + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 @@ -4412,11 +4434,11 @@ *Danny BrownCommits: 1Joined: 2013-09-18 - - *David PenzesCommits: 1Joined: 2011-06-14 + + *Manas JoshiCommits: 1Joined: 2014-03-17 @@ -4426,11 +4448,11 @@ *sagarCommits: 1Joined: 2012-09-15 - - *Karan DesaiCommits: 1Joined: 2012-04-01 + + *Steven MeyerCommits: 1Joined: 2013-03-13 @@ -4440,10 +4462,13 @@ *ccshellerCommits: 1Joined: 2015-10-08 + + *Dona HertelCommits: 1Joined: 2011-04-14 + - *Dona HertelCommits: 1Joined: 2011-04-14 + *blendergeekCommits: 1Joined: 2017-04-08 *Lukas RöllinCommits: 1Joined: 2017-02-06 @@ -4499,6 +4524,9 @@ + *Werner TietzCommits: 1Joined: 2017-04-11 + + *Gleb MishchenkoCommits: 1Joined: 2016-03-22 @@ -4507,11 +4535,11 @@ *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 - - *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -4521,11 +4549,11 @@ *Dan CorneanuCommits: 1Joined: 2010-12-29 + + *PeterCommits: 1Joined: 2016-05-03 - - *Joseph BrownCommits: 1Joined: 2012-08-14 @@ -4535,11 +4563,11 @@ *Pavel KacerCommits: 1Joined: 2013-04-11 + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - - *Christophe StrobbeCommits: 1Joined: 2011-08-09 @@ -4549,11 +4577,11 @@ *Dag WieersCommits: 1Joined: 2016-03-13 + + *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 - - *Olivier PlotonCommits: 1Joined: 2012-12-12 @@ -4563,11 +4591,11 @@ *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 + + *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 - - *Justn LavoieCommits: 1Joined: 2016-12-30 @@ -4577,11 +4605,11 @@ *James Michael DuPontCommits: 1Joined: 2013-08-30 + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - - *dbarisakkurtCommits: 1Joined: 2012-02-02 @@ -4591,11 +4619,11 @@ *DaveCommits: 1Joined: 2012-08-23 + + *xjclCommits: 1Joined: 2014-08-04 - - *Serge KrotCommits: 1Joined: 2015-10-25 @@ -4605,11 +4633,11 @@ *Daniel MihalyiCommits: 1Joined: 2012-02-06 + + *Quentin PradetCommits: 1Joined: 2012-12-21 - - *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 @@ -4619,11 +4647,11 @@ *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + *Slávek BankoCommits: 1Joined: 2015-10-10 - - *HaidongWuCommits: 1Joined: 2016-03-09 @@ -4633,32 +4661,43 @@ *Chen ZuoJunCommits: 1Joined: 2012-10-08 + + + + *Catherine VanceCommits: 1Joined: 2017-04-17 + *Louis PossozCommits: 1Joined: 2012-10-26 - - *sunwebCommits: 1Joined: 2016-04-08 *Joan ParaisoCommits: 1Joined: 2015-09-25 + + *Jiri BlechaCommits: 1Joined: 2013-03-02 + *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *Serg BormantCommits: 1Joined: 2011-11-28 - - *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 + + *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + *James RaykowskiCommits: 1Joined: 2017-04-16 + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 @@ -5033,7 +5072,7 @@ *galbarnissanCommits: 1Joined: 2014-12-03 - + @@ -5076,6 +5115,9 @@ + *Laurent Balland-PoirierCommits: 2Joined: 2015-11-19 + + *David TardonCommits: 2Joined: 2012-08-20 @@ -5084,11 +5126,11 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Michael MuenchCommits: 1Joined: 2011-06-09 @@ -5098,9 +5140,6 @@ *Michael KovarikCommits: 1Joined: 2015-01-07 - - *Laurent Balland-PoirierCommits: 1Joined: 2015-11-19 - @@ -5654,7 +5693,7 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and @@ -5664,29 +5703,29 @@ Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2537 individuals contributed: + 2547 individuals contributed: - + - K-j (7138) + K-j (7266) - Roczek, Dennis (7043) + Roczek, Dennis (7091) - Goncharuk, Lera (5350) + Goncharuk, Lera (5354) - Pierre-yves samyn (4226) + Pierre-yves samyn (4248) - Uroveits (4199) + Uroveits (4232) Tagezibot (3924) @@ -5695,7 +5734,7 @@ Tryon, Robinson (3712) - Gautier, Sophie (3084) + Gautier, Sophie (3086) @@ -5703,24 +5742,24 @@ (2915) - Balland-Poirier, Laurent (2242) + Hrbrgr (2391) - Jeanweber (2192) + Balland-Poirier, Laurent (2253) - Bielefeld, Rainer (2075) + Jeanweber (2196) - Hrbrgr (2053) + Bielefeld, Rainer (2075) Effenberger, Florian (1613) - Michaelsen, Björn (1514) + Michaelsen, Björn (1519) João Mac-Cormick (1505) @@ -5728,30 +5767,30 @@ - Marcpare (1383) + Marcpare (1388) Adailton (1203) - Mirek2 (1162) + Filmsi (1173) - Buzzatti Pacheco, Gustavo (1137) + Mirek2 (1162) - Filmsi (1133) + Buzzatti Pacheco, Gustavo (1137) - Haas, Uwe (1095) + GerryT (1099) - GerryT (1093) + Haas, Uwe (1095) - Kompilainenn (1004) + Kompilainenn (1010) @@ -5759,7 +5798,7 @@ Novak, Nino (976) - Ostrovsky, David (965) + Ostrovsky, David (968) Tom (926) @@ -5773,21 +5812,21 @@ Clement21.philippe (896) - Meeks, Michael (887) + Jayme Barrientos, Adolfo (892) - Hallot, Olivier (871) + Meeks, Michael (887) - Jayme Barrientos, Adolfo (870) + Hallot, Olivier (876) - Nouws, Cor (832) + Enoki (838) - Enoki (832) + Nouws, Cor (833) Teo91 (733) @@ -5812,24 +5851,24 @@ - Hibagonsan (575) + Hibagonsan (584) Hazel (559) - ChristophNoack (549) + LibreOfficiant (551) - Paulo (546) + ChristophNoack (549) - Jmpierre (529) + Paulo (546) - LibreOfficiant (524) + Jmpierre (544) Knorr, Stefan (521) @@ -5846,7 +5885,7 @@ Reisinger, Florian (490) - Rathke, Eike (474) + Rathke, Eike (481) Mladek, Petr (450) @@ -5860,24 +5899,24 @@ Eskroni (437) - Rmfaile (436) + Lohmaier, Christian (436) - RobertG (435) + Raulpacheco (436) - Lohmaier, Christian (430) + Rmfaile (436) - Holešovský, Jan (425) + RobertG (435) - Foote, V Stuart (425) + Holešovský, Jan (426) - Raulpacheco (420) + Foote, V Stuart (425) @@ -5891,25 +5930,28 @@ Luz Coelho, Rogério (409) - Sefran (394) + Sefran (405) - Philips, Yousuf (393) + Philips, Yousuf (394) - Alexander Wilms (392) + X1sc0 (393) - Yoshida, Kohei (389) + Alexander Wilms (392) - McNamara, Caolán (386) + Yoshida, Kohei (389) + McNamara, Caolán (387) + + Foral (384) @@ -5918,11 +5960,11 @@ Emanuel Marcatinco (374) + + AndrasTimar (362) - - SteenRønnow (360) @@ -5930,46 +5972,43 @@ Tardon, David (359) - X1sc0 (356) - - Thiebaud, Norbert (341) - Mohrhard, Markus (338) + Mohrhard, Markus (339) - Pruegsanusak, Korrawit (330) + Beluga (337) - Stahl, Michael (330) + Stahl, Michael (334) - Volkerme (329) + Pruegsanusak, Korrawit (330) - Arranna (322) + Volkerme (329) - Sam m (315) + Henschel, Regina (328) - Beluga (313) + Arranna (322) - Veracape (310) + Sam m (317) - Heinzws (292) + Veracape (310) - Henschel, Regina (291) + Heinzws (292) Emanuel A. Marcatinco B. (290) @@ -5980,21 +6019,21 @@ - Mike.saunders (281) + Mike.saunders (285) - Thackert (276) + Thackert (277) Tseng, Cheng-Chia (272) - Epix (268) + Elcico (269) - Elcico (266) + Epix (268) Helen russian (266) @@ -6011,13 +6050,13 @@ Adrianoafonso (246) - Loic (240) + Lillqvist, Tor (243) - Steve (237) + Loic (240) - Lillqvist, Tor (234) + Steve (237) @@ -6045,7 +6084,7 @@ Jbfaure (211) - Kerwyn (206) + Kerwyn (211) @@ -6078,10 +6117,10 @@ - Vignoli, Italo (182) + Bergmann, Stephan (183) - Bergmann, Stephan (181) + Vignoli, Italo (182) Méixome, Antón (179) @@ -6154,14 +6193,17 @@ Óvári (140) - De Cuyper, Joren (138) + Tietze, Heiko (139) - Weissenbacher, Philipp (138) + De Cuyper, Joren (138) + Weissenbacher, Philipp (138) + + Heliojsf (137) @@ -6170,11 +6212,11 @@ Mamane, Lionel Elie (135) + + Norah (135) - - Filhocf (132) @@ -6182,9 +6224,6 @@ Lodahl (132) - Tietze, Heiko (131) - - Richteruwe (131) @@ -6196,32 +6235,32 @@ Nik (127) - Ikuya (125) + Ikuya (126) - Krackedpress (123) + Xystina (125) - RGB.ES (123) + Krackedpress (123) - Abe, Takeshi (123) + RGB.ES (123) - Trapezus (122) + Abe, Takeshi (123) - Jucasaca (121) + Shunesburg69 (122) - Shunesburg69 (121) + Trapezus (122) - Xystina (121) + Jucasaca (121) JohnSmith (120) @@ -6291,18 +6330,18 @@ Mantke, Andreas (103) - JZA (101) + Kevin, Suo (锁琨珑) (102) - Nemeth (101) + Pechlaner, Wolfgang (102) - Kevin, Suo (锁琨珑) (101) + JZA (101) - Pechlaner, Wolfgang (100) + Nemeth (101) Android272 (99) @@ -6339,28 +6378,39 @@ Frombenny (90) - Zeki (89) + Kosiorek, Bartosz (90) + Kara, Muhammet (89) + + + Zeki (89) + + Dan (88) Hertel, Jesper (88) + + Milos (87) Paulojose (87) - - Omori (86) + Nabet, Julien (85) + + + + KorrawitBot (84) @@ -6369,41 +6419,44 @@ Evy (83) + + Steve- - (83) + - Nabet, Julien (83) + Nogajun (82) - Steve- - (83) + JamesWalker (81) - Nogajun (82) + Gathoye, William (80) - JamesWalker (81) + 80686 (79) - 80686 (79) + KeithCu (79) - KeithCu (79) + Kitaygrad (79) MDDN (79) - Gathoye, William (79) + Xosé (78) - Xosé (78) + Fišeras, Aurimas (77) - Fišeras, Aurimas (77) + Chris-hoh (77) Albino (75) @@ -6420,18 +6473,18 @@ Emoreno (74) - Lbalbalba (74) + Jlv (74) - Chris-hoh (73) + Lbalbalba (74) - Kosiorek, Bartosz (73) + Castermans, Luc (72) - Castermans, Luc (72) + Franklin (72) Aury88 (71) @@ -6456,20 +6509,9 @@ - Kitaygrad (70) - - Horáček, Stanislav (70) - Jlv (69) - - - Kara, Muhammet (69) - - - - Malhassoun (69) @@ -6478,11 +6520,11 @@ Fábio Farias (68) + + Gghh (68) - - Donaldo (67) @@ -6492,27 +6534,24 @@ Karbasion, Bersam (65) - - StanG (65) - - Oipila (64) + StanG (65) - Kees538 (63) + Kees538 (64) - Kudelis, Rimas (63) + Oipila (64) - Sikeler (63) + Kudelis, Rimas (63) - Franklin (62) + Sikeler (63) Popa, Adrian Marius (62) @@ -6532,14 +6571,17 @@ Jlgrenar (60) - Neel, Daniel (58) + Monthoflibreoffice bot (59) - Loflex (58) + Neel, Daniel (58) + Loflex (58) + + Kukan, Matúš (58) @@ -6548,16 +6590,13 @@ Camillem (57) - - Davefilms (56) - - Glen.reesor (56) + Davefilms (56) - Monthoflibreoffice bot (56) + Glen.reesor (56) Ramones (56) @@ -6571,31 +6610,34 @@ Hunt, Andrzej (55) - Jrahemipour (55) + Köse, Gülşah (55) - Slacka (55) + Jrahemipour (55) - Cornell, Clayton (54) + Slacka (55) - Fanthomas (54) + Timur LOL (55) - Mahfiaz (54) + Cornell, Clayton (54) - Timur LOL (54) + Fanthomas (54) - Heben2 (53) + Mahfiaz (54) + Heben2 (53) + + Sunny2038 (53) @@ -6604,13 +6646,10 @@ ArnoldSchiller (51) - - Enio.gemmo (51) - - Köse, Gülşah (51) + Enio.gemmo (51) Helmar (51) @@ -6652,6 +6691,9 @@ + Bubli (47) + + Dagobert 78 (47) @@ -6660,9 +6702,6 @@ Buj Gelonch, Robert Antoni (47) - - Bubli (46) - @@ -6770,14 +6809,17 @@ RaducuG (37) - Danishka (36) + Teseu (37) - Patheticcockroach (36) + Danishka (36) + Patheticcockroach (36) + + Sci citation (36) @@ -6786,11 +6828,11 @@ Yan Pashkovsky (36) + + Liongold (35) - - Nora (35) @@ -6800,16 +6842,13 @@ Stalker08 (35) - - Subramanian, Muthu (35) - - Caco13 (34) + Subramanian, Muthu (35) - Teseu (34) + Caco13 (34) Corrius, Jesús (33) @@ -6879,16 +6918,19 @@ Jingtao, Yan (30) + Lendo (30) + + Njsg (30) Ptoye (30) + + Speck (30) - - Sherlock, Chris (30) @@ -6898,11 +6940,11 @@ Thardeck (30) + + Cida.Coltro (29) - - Darbe (29) @@ -6912,11 +6954,11 @@ Haaninjo (29) + + RodolfoRG (29) - - Серж (29) @@ -6926,25 +6968,25 @@ Arnaud versini (28) + + Bormant (28) - - Riemer, Philipp (28) - Jihui choi (28) + H (28) - Lendo (28) + Jihui choi (28) + + Sveinki (28) - - المسيكين (28) @@ -6954,11 +6996,11 @@ Marcos Paulo de Souza (27) + + Micm (27) - - Thuswaldner, Albert (27) @@ -6968,82 +7010,82 @@ Eresus (26) + + Ezeperez26 (26) - - Fanch (26) + Gurbetoğlu, Gökhan (26) + + Grandin, Noel (26) + + Linuxman (26) Hawkins, Nigel (26) - - PeppinoLib (26) Pirat Michi (26) + + Vaslav (26) Aidsoid (25) - - Roßmanith, Christina (25) Freddyrh (25) + + Sullivan, Gatlin (25) Lboccia (25) - - Manuel De Franceschi (25) Noelson (25) + + Freund, Matthias (25) Valdirbarbosa (25) - - Winniemiel05 (25) Elpapki (24) + + Gaianer (24) - Gurbetoğlu, Gökhan (24) - - - - Gérard24 (24) @@ -7052,11 +7094,11 @@ Nik vr (24) + + Olivier (24) - - PaoloPelloni (24) @@ -7066,11 +7108,11 @@ Hamurcu (23) + + Montané, Joan (23) - - Jstnlth (23) @@ -7080,11 +7122,11 @@ Schiavinatto (23) + + TaeWong (23) - - Team One (23) @@ -7094,11 +7136,11 @@ Youngman, Anthony W. (23) + + AnXh3L0 (22) - - Aphaia (22) @@ -7108,11 +7150,11 @@ Bjoern (22) + + Ponzo, Gabriele (22) - - HenryGR (22) @@ -7122,11 +7164,11 @@ Toxitom (22) + + Elmau (21) - - Jeppebundsgaard (21) @@ -7136,11 +7178,11 @@ Liusiqi43 (21) + + Lutch (21) - - Necdetyucel (21) @@ -7150,11 +7192,11 @@ WalterPape (21) + + Wayra (21) - - Bugmenot (20) @@ -7164,11 +7206,11 @@ HeinF (20) + + Icobgr (20) - - LLyaudet (20) @@ -7178,11 +7220,11 @@ Vdragon (20) + + Vmalep (20) - - XMatence (20) @@ -7192,16 +7234,13 @@ Zapata (20) - - Clarice Vigliazzi (19) - - Guateconexion (19) + Clarice Vigliazzi (19) - H (19) + Guateconexion (19) JaronBaron (19) @@ -7215,58 +7254,61 @@ Juergenfenn (19) + Kelemeng (19) + + Kentarch (19) Thumperward (19) + + + + Magee, Timothy (18) + Kłos, Szymon (18) - - Jstaerk (18) Narayan (18) + + Power, Noel (18) Richard (18) - - Sooth (18) UriHerrera (18) + + Vuhung (18) 林漢昌 (18) - - Akerbeltz (17) - Magee, Timothy (17) - - Chd (17) + + Craigo (17) - - Dlmoretz (17) @@ -7276,11 +7318,11 @@ Guilherme.vanz (17) + + Gulmorais (17) - - Monastirsky, Maxim (17) @@ -7290,11 +7332,11 @@ Taken (17) + + Yumakino (17) - - Беломир (17) @@ -7304,11 +7346,11 @@ Alexpikptz (16) + + Dhersh (16) - - Houbsi (16) @@ -7318,11 +7360,11 @@ Oweng (16) + + P.Guimberteau (16) - - PauGNU (16) @@ -7330,28 +7372,28 @@ Ristoi (16) + SophiaS (16) + + + + APerson (15) Akki95 (15) - - Andy98 (15) Bertob (15) + + Irmhild (15) - Kelemeng (15) - - - - Khlood Elsayed (15) @@ -7360,11 +7402,11 @@ Luctur (15) + + Miko (15) - - Naudy (15) @@ -7374,165 +7416,165 @@ Patriciasc (15) + + Raul.malea (15) - - + + Smrabelo (15) + Thorogood, Tom (15) Ulf hamburg (15) + + 暗影遺言 (15) Elrath (14) - - Fina (14) Guuml (14) + + Halencarjunior (14) Lfernandocarvalho (14) - - Librosaurus (14) Mderoucy (14) + + Rania (14) Reinsle (14) - - Royerjy (14) Smarquespt (14) + + Susobhang70 (14) Tamiliam (14) - - Testnoda (14) Thangamani-arun (14) + + Vipin121 (14) Akoscomp (13) - - Alrt84 (13) Alyssonware (13) + + Beuss (13) Cedric31 (13) - - Gallaecio (13) Glogowski, Jan-Marek (13) + + Funk, Juergen (13) Kadekilo (13) - - Leomota (13) Ljelly (13) + + Luc (13) Luked (13) - - Mabbb (13) Mihkel (13) + + Mortense (13) Odd123 (13) - - Pete Boyd (13) Kant, Pranav (13) + + S.Gecko (13) Samtuke (13) - - Sanyii (13) Simplicity Instinct (13) - - SophiaS (13) - + + ThierryM (13) - - Tnishiki (13) @@ -7542,138 +7584,138 @@ Vkkodali (13) + + Webmink (13) - - + + Alfabech (12) + AliIsingor (12) And471 (12) + + AustinW (12) Bhaskar (12) - - Cralin (12) Al-Otaibi, Faisal M. (12) + + Halan (12) Immanuelg (12) - - Godard, Laurent (12) Pcapeluto (12) + + Gupta, Rachit (12) Möller, Sören — spelled Soeren Moeller in some patches (12) - - Staticsafe (12) Veerh01 (12) + + 翼之靈歌 (12) Bryanquigley (11) - - Cdan (11) ChristopheS (11) + + Dajare (11) Ebraminio (11) - - Eduaraujo (11) Gokul, S (11) + + Kallecarl (11) Krabina (11) - - Luiz Henrique Natalino (11) MNeto (11) + + Marcuskgosi (11) NON (11) - - Johansson, Niklas (11) Nuernbergerj (11) + + PeeWee (11) Priyanka singh (11) - - Rogeniobelem (11) Salmaan (11) + + Raruenrom, Samphan (11) - Smrabelo (11) - - - - Sunk8 (11) @@ -7682,11 +7724,11 @@ Vrlivre (11) + + Zero0w (11) - - Admasonscottisha (10) @@ -7696,11 +7738,11 @@ Algotruneman (10) + + Bearon (10) - - Castagno, Giuseppe (10) @@ -7710,11 +7752,11 @@ Crolidge (10) + + Diginin (10) - - Eagles051387 (10) @@ -7724,277 +7766,277 @@ El7r (10) + + J.baer (10) - - + + Jdittrich (10) + Kadertarlan (10) Kirill NN (10) + + Linuxuser330250 (10) Lionlinux (10) - - Pearson, Timothy (10) Pinto, Marco A.G. (10) + + Chung, Elton (10) Mikalai (10) - - Mikeyy (10) Morvan (10) + + Nateyee (10) Otto (10) - - Revol (10) Ronja (10) + + Tatat (10) Tomg (10) - - Twstdude0to1 (10) User8192 (10) + + Wlenon (10) Al-Abdulrazzaq, Abdulmajeed (9) - - Agger (9) AtkinsSJ (9) + + Calisgarge (9) Camargo (9) - - Cnuss (9) Crazyskeggy (9) + + Dupreyb (9) Fatdf (9) - - Geeta (9) Gibi (9) + + GisbertFriege (9) Goranrakic (9) - - Ledure, Jean-Pierre (9) Jim-BobHarris (9) + + Jopsen (9) Jowyta (9) - - Kscanne (9) Lapetec (9) + + Lexeii (9) Mapper (9) - - Marco (9) Markharry08 (9) + + Meo (9) Msaffron (9) - - Ohnemax (9) Onting (9) + + Oprea.luci (9) Foley, Peter (9) - - Pixpray (9) Dricot, Lionel (9) + + Rogawa (9) Rpr (9) - - Spacebat (9) Therabi (9) + + Ttocsmij (9) Urdulizer (9) - - Woman99 (9) Zhangxiaofei (9) + + ميدو (9) Acbaird (8) - - Alexxed (8) AndreasL (8) + + Ausserirdischegesund (8) Cocofan (8) - - Cusiri (8) Dashohoxha (8) + + Dennisfrancis (8) DrDub (8) - - Ed Eyles (8) Elacheche (8) + + Horst (8) Israel Chaves (8) - - JR (8) - Jdittrich (8) - - Jrsiqueira (8) + + Jslozier (8) - - Hoffimann Mendes, Júlio (8) @@ -8004,11 +8046,11 @@ Kednar (8) + + Rietveld, Kristian (8) - - Lee (8) @@ -8018,11 +8060,11 @@ Leo.h.hildebrandt (8) + + Manj k (8) - - Mrmox2 (8) @@ -8030,100 +8072,108 @@ NightMonkey (8) + Osnola (8) + + + + Paulo.tavares (8) Peterpall (8) - - Ricardolau (8) Robwestein (8) + + Seomarketing221 (8) Thejack (8) - - Tibbylickle (8) Troumad (8) + + Vbkaisetsu (8) VlhOwn (8) - - Yakusha (8) Yostane (8) + + Kabatsayev, Ruslan (7) Alberthuddle1 (7) - - Andrea.soragna (7) Ashishku9888 (7) + + Bastik (7) Bjherbison (7) - - Bookman900 (7) Borim7 (7) + + Capiscuas (7) Chin Zee Yuen (7) - - Ciaran (7) Dado (7) + + Drose (7) Esbardu (7) - - + + GerhardW (7) + GuKK-Devel (7) + + Hunter, Kevin (7) @@ -8131,6 +8181,9 @@ Ingotian (7) + Johnny M (7) + + Johnrudelee (7) @@ -8181,19 +8234,16 @@ Opensas (7) - Osnola (7) - - Polte (7) RMCampos (7) - - Rantaro (7) + + Rodo (7) @@ -8203,11 +8253,11 @@ Simosx (7) - - Tonnysmile (7) + + Toxicbits (7) @@ -8217,11 +8267,11 @@ Wabuo (7) - - Woordje (7) + + صفا الفليج (7) @@ -8231,11 +8281,11 @@ Andreas ka (6) - - Armin Dänzer (6) + + Asian flower (6) @@ -8245,11 +8295,11 @@ Barend (6) - - Bobe (6) + + Bruno (6) @@ -8259,11 +8309,11 @@ ClausKofoed (6) - - Coypu (6) + + Wieërs, Dag (6) @@ -8273,11 +8323,11 @@ Ddxavier (6) - - Dfriedman (6) + + DotnetCarpenter (6) @@ -8287,11 +8337,11 @@ Dr.Faust (6) - - Druzhshchienschkyj (6) + + Edmond ciorba (6) @@ -8301,11 +8351,11 @@ Equis (6) - - FPhoenix (6) + + Fdekruijf (6) @@ -8315,11 +8365,11 @@ Fisiu (6) - - Florian heckl (6) + + Ghune (6) @@ -8329,11 +8379,11 @@ HdV (6) - - Hmoi (6) + + Hramrach (6) @@ -8343,11 +8393,11 @@ Iplaw67 (6) - - Timofeev, Ivan (6) + + James 00cat (6) @@ -8357,11 +8407,11 @@ Jonatoni (6) - - Jonyjony (6) + + Kawichi (6) @@ -8371,11 +8421,11 @@ Link Mauve (6) - - MaggieT (6) + + Manas (6) @@ -8385,11 +8435,11 @@ Mas (6) - - Mgommel (6) + + Mmetz (6) @@ -8399,11 +8449,11 @@ Öttl, Gerhard (6) - - Only you (6) + + Os cib (6) @@ -8413,11 +8463,11 @@ Pescetti (6) - - Peter Chastain (6) + + Peterhuang1kimo (6) @@ -8427,11 +8477,11 @@ Rotaj (6) - - Sn!py (6) + + Sukit (6) @@ -8441,11 +8491,11 @@ Thorwil (6) - - TiagoSantos (6) + + Tyree (6) @@ -8455,11 +8505,11 @@ Vgezer (6) - - Virthus (6) + + Wagner Augusto Silva Rodrigo (6) @@ -8469,11 +8519,11 @@ Tamás, Bunth (6) - - Wigglejimmy (6) + + Wiseacre (6) @@ -8483,11 +8533,11 @@ Adam Co (5) - - Alberthuddle (5) + + Albucasis (5) @@ -8497,11 +8547,11 @@ Alfalb (5) - - Alvarez, Octavio (5) + + Andrea Gelmini (5) @@ -8511,11 +8561,11 @@ Liwen, Fan (5) - - Art.Gilvanov (5) + + Sodora, August (5) @@ -8525,11 +8575,11 @@ Baumgarp (5) - - Belkacem77 (5) + + Bitigchi (5) @@ -8539,11 +8589,11 @@ Cray85 (5) - - Dejourdain (5) + + DickStomp (5) @@ -8553,11 +8603,11 @@ Elly15 (5) - - Fazbdillah (5) + + Florian.haftmann (5) @@ -8565,34 +8615,37 @@ GaboXandre (5) - GerhardW (5) - - - - Ggurley (5) Gpoussel (5) + + H.Sparks (5) Habib (5) - - HubPfalz (5) Hummer5354 (5) + + + + HwangTW (5) + Icyitscold (5) + Jaysponsored (5) + + JoeP (5) @@ -8604,16 +8657,13 @@ John.pratt (5) - Johnny M (5) - - KadlecOn (5) - - Kamataki (5) + + Kirti35 (5) @@ -8623,11 +8673,11 @@ Koji Annoura (5) - - LibreOfficeUser1 (5) + + Mak (5) @@ -8637,11 +8687,11 @@ Mgaster (5) - - Midimarcus (5) + + Laplante, Chris (5) @@ -8651,11 +8701,11 @@ Namikawa (5) - - OSVALDO LINS VIANA (5) + + Orcmid (5) @@ -8665,11 +8715,11 @@ Pepe (5) - - Pkoroau (5) + + Poeml (5) @@ -8679,15 +8729,18 @@ Rajesh (5) - - Raknor (5) + + Raulpaes (5) + RegisPerdreau (5) + + ReneEngelhard (5) @@ -8909,19 +8962,16 @@ Hossein (4) - HwangTW (4) - - ImperfectlyInformed (4) Jamesleader (4) - - Jiehong (4) + + Jjmeric (4) @@ -8931,11 +8981,11 @@ Jonata (4) - - Jones (4) + + Jooste (4) @@ -8945,11 +8995,11 @@ Le Bigot, Jean-Tiare (4) - - Lethargilistic (4) + + Loren.rogers (4) @@ -8959,11 +9009,11 @@ MPascual (4) - - Rumianowski, Maciej (4) + + Marco c (4) @@ -8973,11 +9023,11 @@ Mikedoherty ca (4) - - Rimkus, Modestas (4) + + Morgan greywolf (4) @@ -8987,11 +9037,11 @@ NGHLibreOffice (4) - - Offidocs (4) + + Orson69 (4) @@ -9001,15 +9051,18 @@ Paolopoz (4) - - Pegasus (4) + + Pgassmann (4) + Phillip.davis (4) + + Pjacquod (4) @@ -9374,14 +9427,17 @@ Jhbn (3) - Joe312213 (3) + Jo Cab (3) - Johannes Rohr (3) + Joe312213 (3) + Johannes Rohr (3) + + Joseroberto (3) @@ -9390,11 +9446,11 @@ Julianm (3) + + K Karthikeyan (3) - - Kbiondi (3) @@ -9404,11 +9460,11 @@ Kfogel (3) + + Khunshan (3) - - Kisamar7 (3) @@ -9418,11 +9474,11 @@ Kristof (3) + + Šebetić, Krunoslav (3) - - Kumartinkusingh08 (3) @@ -9432,11 +9488,11 @@ Lennoazevedo (3) + + LewisCowles (3) - - Libcub (3) @@ -9446,11 +9502,11 @@ LucaCappelletti (3) + + Hryniuk, Łukasz (3) - - Luuk (3) @@ -9460,11 +9516,11 @@ Marializ (3) + + Matteocam (3) - - Mattias (3) @@ -9474,11 +9530,11 @@ Measure for Measure (3) + + Melike (3) - - Mhoes (3) @@ -9488,11 +9544,11 @@ Michaelwheatland (3) + + Neookano (3) - - Nicolas.abel (3) @@ -9502,11 +9558,11 @@ Ragnarsson, Björgvin (3) + + Nloira (3) - - Noel Power (3) @@ -9516,11 +9572,11 @@ Steinbeiß, Simon (3) + + Ojeremyj (3) - - Oliverguenther (3) @@ -9530,9 +9586,6 @@ Penalvch (3) - - Phillip.davis (3) - @@ -9696,14 +9749,17 @@ Underdog (3) - Vikashkumar (3) + Urhixidur (3) - Vinctor (3) + Vikashkumar (3) + Vinctor (3) + + Vljubovic (3) @@ -9712,11 +9768,11 @@ Khoo, Wei Ming (3) + + WesPeacock (3) - - Williamendorson48 (3) @@ -9726,11 +9782,11 @@ Yukawa (3) + + Kolesnykov, Yurii (3) - - Yury Tarasievich (3) @@ -9740,11 +9796,11 @@ Zaxebo1 (3) + + §chinagl (3) - - ترجمان05 (3) @@ -9754,11 +9810,11 @@ AbbeyI19jfjc (2) + + AdamPrado8 (2) - - AdrianValdez4 (2) @@ -9768,11 +9824,11 @@ Adsha (2) + + Agarciamog (2) - - Aimee (2) @@ -9782,11 +9838,11 @@ Alan (2) + + Alg (2) - - AliceOliver7 (2) @@ -9796,11 +9852,11 @@ Alisha (2) + + AlmedaFrancis (2) - - AlphonsoNava4 (2) @@ -9810,11 +9866,11 @@ Amunizp (2) + + AmyCarney5 (2) - - Anasiic (2) @@ -9824,11 +9880,11 @@ AndrewKuhn7 (2) + + AndrewUlrich (2) - - Anipeter (2) @@ -9838,11 +9894,11 @@ Ankit (2) + + AnnabelMcmullen (2) - - AnnunciationGunn (2) @@ -9852,11 +9908,11 @@ AntoniaMead8 (2) + + Anurag121 (2) - - Anurag123 (2) @@ -9866,11 +9922,11 @@ Aplatypus (2) + + ApostlesSheldon (2) - - Armitadev (2) @@ -9880,11 +9936,11 @@ Ashaneba (2) + + Nakashian, Ashod (2) - - AvaGreer1 (2) @@ -9894,11 +9950,12 @@ BZT42 (2) + + + BernardMeza9 (2) - - Bernardi, Paolo (2) @@ -9908,11 +9965,11 @@ BirdRivas2 (2) + + BlazejJones1 (2) - - BlessedOrozco (2) @@ -9922,11 +9979,11 @@ Blushingorg (2) + + BoD (2) - - Bogcahi (2) @@ -9936,11 +9993,11 @@ Boldizsakawi7 (2) + + BoleslausSaunders (2) - - Bram (2) @@ -9950,11 +10007,11 @@ BridgetJarvis (2) + + Bruceschaller (2) - - BryantMclean6 (2) @@ -9964,11 +10021,11 @@ C0bb3r (2) + + C1pr1an (2) - - CallieMvzap (2) @@ -9978,12 +10035,11 @@ Cameron112 (2) + + CamilleMccarthy (2) - - - CandidoRutherford (2) @@ -9993,11 +10049,11 @@ Capri99 (2) + + CaraDang6 (2) - - Carlosr (2) @@ -10007,11 +10063,11 @@ CarrieDaniels (2) + + CarrollRico2 (2) - - Iacob, Catalin (2) @@ -10021,11 +10077,11 @@ Celsovsm (2) + + Cgrosdemange (2) - - Chabermu (2) @@ -10035,11 +10091,11 @@ ChanieSnow2 (2) + + Cheche (2) - - ChrzcicielCampbell (2) @@ -10049,11 +10105,11 @@ Cl-r (2) + + ClariceThorne (2) - - ClaudiaCramer (2) @@ -10063,11 +10119,11 @@ McDonald, Jason C. (2) + + Codingmicha (2) - - Colabo (2) @@ -10077,11 +10133,11 @@ Cookies01 (2) + + CoralieCarr7 (2) - - Crxssi (2) @@ -10091,11 +10147,11 @@ Cvk (2) + + CyrillicEscobedo (2) - - DaCaPo (2) @@ -10105,11 +10161,11 @@ Dairdev (2) + + DaisieQuigley (2) - - Damascene (2) @@ -10119,11 +10175,11 @@ Danese (2) + + Danthedev (2) - - DarellFarnell (2) @@ -10133,11 +10189,11 @@ David4you (2) + + Davidlamhauge (2) - - Bolen, David (2) @@ -10147,11 +10203,11 @@ Debugercz (2) + + DelinaRomano5 (2) - - DellePoole7 (2) @@ -10161,11 +10217,11 @@ Dennis' Spam test account (2) + + Denytracom (2) - - Devilcynthy (2) @@ -10175,11 +10231,11 @@ Retout, Tim (2) + + Django (2) - - DoctorBaxter7 (2) @@ -10189,11 +10245,11 @@ Domsau2 (2) + + DonaldBryant7 (2) - - DrDrack (2) @@ -10203,11 +10259,11 @@ Röllin, Lukas (2) + + Duiliodias (2) - - DukeDejesus7 (2) @@ -10217,11 +10273,11 @@ Ed (2) + + EdaFreeman3 (2) - - Eduardoarandah (2) @@ -10231,11 +10287,11 @@ Efs710920mex (2) + + Ejep520 (2) - - Sánchez, Bartolomé (2) @@ -10245,11 +10301,11 @@ ElisabethHolcomb (2) + + Elixir (2) - - EllieBowers3 (2) @@ -10259,11 +10315,11 @@ Eloquence (2) + + ElsieMacias7 (2) - - Emily (2) @@ -10273,11 +10329,11 @@ EnosKraus6 (2) + + Erdalronahi (2) - - Eren (2) @@ -10287,11 +10343,11 @@ Erikcht (2) + + Ersteinmal (2) - - ErwinHammond3 (2) @@ -10301,11 +10357,11 @@ EsterEngland7 (2) + + EthylCardenas (2) - - FannyTillman8 (2) @@ -10315,11 +10371,11 @@ Fcojavmc (2) + + Feldo (2) - - Ffinlo (2) @@ -10329,11 +10385,11 @@ FlorenceGrossman (2) + + FlorenceKim1 (2) - - Flyntyuei2 (2) @@ -10343,11 +10399,11 @@ FordRhodes5 (2) + + FranciscoByrne (2) - - FredaDowning7 (2) @@ -10357,11 +10413,11 @@ Garcia.marc (2) + + GayeRossetti (2) - - GeoDowning4 (2) @@ -10371,11 +10427,11 @@ GeorgiannaOchoa (2) + + Gerardgiraud (2) - - Gerpunzel (2) @@ -10385,11 +10441,11 @@ GiertrudaLehman (2) + + Girvinh (2) - - GiuseppOQH (2) @@ -10399,11 +10455,11 @@ Glococo (2) + + Gmealer (2) - - GraciaNorwood (2) @@ -10413,11 +10469,11 @@ Grim (2) + + Gualtiero (2) - - Guillem (2) @@ -10427,11 +10483,11 @@ HannaEspinoza (2) + + HardyBurris1 (2) - - HarleyWatkins (2) @@ -10441,11 +10497,11 @@ Hector (2) + + Hedaja (2) - - Hellpé (2) @@ -10455,11 +10511,11 @@ Hemmerling (2) + + Jensen, Henrik (2) - - HeriberDacomb (2) @@ -10469,11 +10525,11 @@ Herronrobertson (2) + + HershelPeterson (2) - - IIIYates8 (2) @@ -10483,11 +10539,11 @@ IkeVasquez9 (2) + + IlaRoberts4 (2) - - Imagin8or (2) @@ -10497,11 +10553,11 @@ IraLane4 (2) + + IrinaMccormack (2) - - IrvinBernard9 (2) @@ -10511,11 +10567,11 @@ IsaiahBuck5 (2) + + IsiahLackey2 (2) - - IvaRoach5 (2) @@ -10525,11 +10581,11 @@ JOIMER REYES (2) + + JacintaGibson (2) - - Adams, Jonathan (2) @@ -10539,11 +10595,11 @@ JanetSolberg (2) + + JanuariusStringer (2) - - Jasmins (2) @@ -10553,11 +10609,11 @@ JavierFernandez (2) + + JayStafford3 (2) - - Jcentel (2) @@ -10567,11 +10623,11 @@ Jeraldinesewell (2) + + JesseBHXEmrh (2) - - JettieGibson2 (2) @@ -10581,11 +10637,11 @@ Lingard, J. Graeme (2) + + Jiero (2) - - Jnicolas (2) @@ -10595,11 +10651,11 @@ Johnplay1 (2) + + JonesRichter8 (2) - - Jowenshaw (2) @@ -10609,11 +10665,11 @@ Jstaniek (2) + + JudasPeoples9 (2) - - JudasPritchard (2) @@ -10623,810 +10679,810 @@ Jumoun (2) + + JustinaEldridge (2) - - K.euser (2) + Kabe (2) + + Kamran Mackey (2) + + Karakartala (2) KarkGunn4 (2) - - Karolus (2) Kasos (2) + + Kazuyuki Yoshimura (2) Keepiledar (2) - - KeithC (2) Khokkanen (2) + + KittyBauer5 (2) KlementynaMckinney (2) - - Kmr (2) KolbeKline1 (2) + + Kolorguild (2) Krauss (2) - - keshav, krishna (2) KroniK907 (2) + + KrystalMinchin (2) KsaweryDempsey (2) - - Kwilliams (2) L (2) + + LariaJohn3 (2) LeanaParks2 (2) - - LeilaniLattimor (2) LemuelHo1 (2) + + LemuelWerner5 (2) Lhcezar (2) - - LidaMasters1 (2) Lino (2) + + Liotier (2) Lliehu (2) - - LovisaKessler (2) Petrolekas, Luke (2) + + LubomyrWalden (2) LucretiLlb (2) - - Lukasjelinek (2) LynnForbes3 (2) + + Casalin, Matteo (2) Mărăşoiu, Mariana (2) - - MZNBelendndq (2) Ma83mit (2) + + MabelleStanley (2) MadisonDarnell (2) - - MagdaleneOneal (2) MaggieGray2 (2) + + MagnoliaParsons (2) Mangat veer sagar (2) - - Manu.unni (2) MarMai (2) + + Bessières, Marc (2) MarchCourtney (2) - - Marcinz (2) Marco74 (2) + + MargeretRiley (2) MargeryThorpe (2) - - MarillaMarsh7 (2) Marius (2) + + Markcooper (2) Marric (2) - - MartaRollins2 (2) MarthaBright4 (2) + + MartinPC (2) MateuszDominguez (2) - - Matt 51 (2) MattieSchleinit (2) + + Mazuritz (2) Mbemidio (2) - - MercedesDelatorre (2) Merchantbusiness (2) + + Kepplinger, Martin (2) MerleGlass6 (2) - - Mesutkullar (2) Mgiri (2) + + Michaelx (2) Michel Gagnon (2) - - Michiel (2) MikeyZ (2) + + MinaHuggins7 (2) Mind4z (2) - - MinervaLuna8 (2) Mitcoes (2) + + Mjkopp (2) Mklever (2) - - Lechner, Marco (2) Mloiseleur (2) + + Mnalima (2) Mnsoto (2) - - Mordocai (2) MorganJohnstone (2) + + Rugiero, Mario (2) Msmac02 (2) - - Mst0 (2) Mttza1 (2) + + Musicstave (2) Nathansen, Martin (2) - - Mzalewski (2) Nacerix (2) + + Narcisgarcia (2) NealEspinoza6 (2) - - Nestor (2) NettaHurd9 (2) + + NettieParra1 (2) NewtonZuniga9 (2) - - Nishino, Daisuke (2) NicholasLanier (2) + + Nickk (2) Christener, Nicolas (2) - - NinaLam6 (2) Noirin (2) + + NoricumArthur (2) NorrisAndersen (2) - - NovemberVogel (2) Nsharifi (2) + + Nuclearbob (2) OUPS (2) - - Oashnic (2) Office2016 (2) + + Oiaohm (2) OlaPost6 (2) - - OlieBooth3 (2) OlivierC (2) + + OnopriyBrandon (2) OrlandoArellano (2) - - OscarMeredith (2) Pascaje (2) + + Percherie (2) PercherskySanford (2) - - Senna Tschudin, Peter (2) Pgraber (2) + + Phil.davis (2) Szelat, Phillip (2) - - Pierre (2) Pitonyak (2) + + Pkst (2) PolishHungarianSharp (2) - - Posterboy (2) PragueBergman (2) + + Pulsifer (2) R.Yu. (2) - - Rahul050 (2) Rbecke (2) + + ReaganBaudin (2) ReeseShepherd (2) - - ReginaldMcgraw (2) RenniePrescott (2) + + RetaStern5 (2) RhodaMackey3 (2) - - RiceBurger3 (2) Rmarquardt (2) + + Roadrunner (2) Rogerlee (2) - - RollandHannah (2) RosaliaFair4 (2) + + RosalinBlaubaum (2) RosannaPaul7 (2) - - RosariaLampungm (2) RoyFokker (2) + + RoyShelton7 (2) Royal420 (2) - - Ryan (2) Sagar.libo (2) + + Sahasranaman M S (2) Sam888 (2) - - SamBenavides5 (2) Sankarshan (2) + + SavinaShaffer (2) Bosio, Santiago (2) - - Seanyoung (2) SebastianNorth (2) + + Sebutler (2) Sergwish (2) - - Sfeuser (2) Sgrotz (2) + + Shaforostoff (2) Shankar (2) - - Shaun.schutte (2) Shounmark707 (2) + + SidneyArredondo (2) Silwol (2) - - Simplecontrast (2) SlavicNapier8 (2) + + Kasztenny, Adam (2) Soothsilver (2) - - Sotrud nik (2) Spledger (2) + + Sshelagh (2) Ssorgatem (2) - - StaciBorthwick (2) Stappers (2) + + Weiberg, Stefan (2) Stephan66 (2) - - Stevesmith (2) Stuarta0 (2) + + Sturm (2) Sungkhum (2) - - Superurbi (2) SusanSwain3 (2) + + Sven.fischer.de (2) Sydbarrett74 (2) - - Synanceia (Pierre) (2) Syntaxerrormmm (2) + + Tauon (2) Techal (2) - - Teelittle (2) TeenaWilburn (2) + + TeresaMacias3 (2) Teresavillegas1 (2) - - TerraShears (2) TheaGallardo8 (2) + + TheodoseyPeralta (2) TheophilusHess (2) - - Thomase (2) Thomeck (2) + + Thorongil (2) Tim1075 (2) - - Timeshifter (2) TimothyChilds (2) + + TomaMora8 (2) Tomkeb (2) - - Tomrobert87 (2) TraciKQAZnsqjho (2) + + TressieCulver (2) Tsimonq2 (2) - - Isnard, Timothée (2) Tux40000 (2) + + Unknown 32 (2) - Urhixidur (2) - - - - Usik64 (2) @@ -11435,11 +11491,11 @@ VanHogan7 (2) + + Dhall, Varun (2) - - VasylynaKendall (2) @@ -11449,11 +11505,11 @@ VernitaDonley (2) + + VeronaXiong3 (2) - - VeronicaGrimes (2) @@ -11463,11 +11519,11 @@ Viper550 (2) + + VirginArredondo (2) - - VladimirBassett (2) @@ -11477,11 +11533,11 @@ VladislavA (2) + + Volker (2) - - VolodymyraGagnon (2) @@ -11491,11 +11547,11 @@ WaclawaSavage (2) + + WalentynaPatrick (2) - - WallaceSolano (2) @@ -11505,11 +11561,11 @@ WashingtonOakley (2) + + Watermelons (2) - - WeronikaKeene (2) @@ -11519,11 +11575,11 @@ WilhelminaEaton (2) + + Williamjames5611 (2) - - Willsoncartlea (2) @@ -11533,11 +11589,11 @@ Wirelessben (2) + + Wkn (2) - - Wulei (2) @@ -11547,11 +11603,11 @@ Yaw (2) + + ZiriaKo (2) - - ZoraWinkler1 (2) @@ -11561,11 +11617,11 @@ 流星依旧 (2) + + 29jm (1) - - A H (1) @@ -11575,11 +11631,11 @@ Abde.jarti99 (1) + + Abdulaziz A Alayed (1) - - Absolute Garcinia (1) @@ -11589,11 +11645,11 @@ Kepenek, Ahmet Can (1) + + AdalberDesailll (1) - - Adlard.matthew (1) @@ -11603,11 +11659,11 @@ Aevora (1) + + Agradecido (1) - - Ainurshakirov (1) @@ -11617,11 +11673,11 @@ Alagris (1) + + Albrechtloh (1) - - Aleks (1) @@ -11631,11 +11687,11 @@ Alex38-68 (1) + + Alex80 (1) - - AlexF (1) @@ -11645,11 +11701,11 @@ Alexandrevicenzi (1) + + Alexandri (1) - - Chemichev, Alexey (1) @@ -11659,11 +11715,11 @@ Alexis Wilke (1) + + Alexnivan (1) - - Alexone (1) @@ -11673,11 +11729,11 @@ Ali (1) + + AlphonsDen (1) - - Alvaropg (1) @@ -11687,11 +11743,11 @@ Amacater (1) + + Amplesearch (1) - - Andarilhobotto (1) @@ -11701,11 +11757,11 @@ AndreasK (1) + + AndreasNeudecker (1) - - AndresZapata (1) @@ -11715,11 +11771,11 @@ Andriazdk2177 (1) + + AngelaRusconi (1) - - AngelinChisolm (1) @@ -11729,11 +11785,11 @@ Anjilajoli (1) + + Anjilojilo (1) - - AntoineVe (1) @@ -11743,11 +11799,11 @@ AntoniePonder (1) + + Anurag kanungo (1) - - Apfelsaft (1) @@ -11757,11 +11813,11 @@ ArdenRatcliff (1) + + Arekm (1) - - Ari (1) @@ -11771,11 +11827,11 @@ Arkonide (1) + + Armandos (1) - - Arnaudc (1) @@ -11785,11 +11841,11 @@ Teigseth, Arno (1) + + Artintal (1) - - Arulm (1) @@ -11799,11 +11855,11 @@ Asselbornmauro (1) + + Astalaseven (1) - - AstridGoo (1) @@ -11813,11 +11869,11 @@ Tang, Audrey (1) + + Augustina (1) - - AundreaPqf (1) @@ -11827,11 +11883,11 @@ Ayoooub (1) + + B3t (1) - - Bailiwick (1) @@ -11841,11 +11897,11 @@ Bami (1) + + Bandera (1) - - Le Garrec, Vincent (1) @@ -11855,11 +11911,11 @@ BarryLovegrove (1) + + Vincent, Babu (1) - - Bckurera (1) @@ -11869,11 +11925,11 @@ BernardHannafor (1) + + Bestdating (1) - - Beyoken (1) @@ -11883,11 +11939,11 @@ Bezzy (1) + + Bgloberman (1) - - Bgranados (1) @@ -11897,11 +11953,11 @@ Biofool (1) + + Bjossir (1) - - Bkg2018 (1) @@ -11911,11 +11967,11 @@ BlakeGartrell (1) + + BlancheBelstead (1) - - BlancheClopton (1) @@ -11925,11 +11981,11 @@ Bobmarley (1) + + Boboo (1) - - Bolo (1) @@ -11939,11 +11995,11 @@ Borowcm (1) + + Bortis (1) - - Sowden, Brad (1) @@ -11953,11 +12009,11 @@ BrentHawthorne (1) + + BridgettC (1) - - Brinzing, Oliver (1) @@ -11967,11 +12023,11 @@ BryceBrassell (1) + + BryceMoorhouse (1) - - Budo (1) @@ -11981,11 +12037,11 @@ Bureken (1) + + Burger.ga (1) - - Bzsolt (1) @@ -11995,11 +12051,11 @@ CalebSommer (1) + + CalebWgypcu (1) - - CamillaPena (1) @@ -12009,11 +12065,11 @@ CandelariaJageu (1) + + Capira (1) - - CarloASilva (1) @@ -12023,11 +12079,11 @@ Carlos.gilaranz (1) + + CarlotaF42 (1) - - Castarco (1) @@ -12037,11 +12093,11 @@ Cesera (1) + + ChantalWalker (1) - - Charles12 (1) @@ -12051,11 +12107,11 @@ Chatjoe (1) + + Chmilblick (1) - - Beauzée-Luyssen, Hugo (1) @@ -12065,11 +12121,11 @@ Christoph.herzog (1) + + Chrlutz (1) - - Ciampix (1) @@ -12079,11 +12135,11 @@ Ciriaco (1) + + Classieur (1) - - Cleitongalvao (1) @@ -12093,11 +12149,11 @@ CletaValentino (1) + + Clint7236c (1) - - Comcasthelp (1) @@ -12107,11 +12163,11 @@ Cora17 (1) + + Corsolibreoffice (1) - - Cosmopolitan (1) @@ -12121,11 +12177,11 @@ Cpinedar (1) + + Cpmipn (1) - - Craigsbookclub (1) @@ -12135,443 +12191,454 @@ Csongorhalmai (1) + + + + Css17 (1) + Cœur, Antoine (1) - - DaisieDavison (1) DamionThorp (1) + + Danichocolate (1) Danielt998 (1) - - Dar18proore (1) Darcy0243gd (1) + + DarylAlcantar (1) DarylBoot (1) - - Datesmen (1) Dave (1) + + Davidmichel (1) DawnOgles (1) - - Dbojan (1) Di Marco, Daniel (1) + + DeShark (1) DeannaQuaife (1) - - DeanneKer (1) Ray, Debarshi (1) + + DebbraWingfield (1) DeborahW18 (1) - - DelbertChristie (1) DelilahBock (1) + + Deva09 (1) Dezsiszabi (1) - - Kis-Ádám, László (1) Herde, Daniel (1) + + Dhiren (1) Dianasedlak (1) - - Kettner, Valentin (1) Do Nhu Vy (1) + + DocuFree (1) Dominiko (1) - - Dominuk (1) Donadel (1) + + DoreenDuell (1) Douglasm (1) - - Drizamanuber (1) Drlandi (1) + + Drtimwright (1) Dusek (1) - - Dxider (1) EEFElishaqjbzjy (1) + + EHGSammyevumvzq (1) EarnestLamaro (1) - - EarnestT57 (1) Echada (1) + + Edsonlead (1) Edz (1) - - Efcis (1) Efegurkan (1) + + Brill, Christoph (1) Ehenryb (1) - - ElahiMohammad (1) EleanoreC (1) + + Elisa0474wgwgq (1) Elliot1415 (1) - - ElmaWalcott (1) Elshize (1) + + Emyr (1) Enesates (1) - - Ennael (1) Erasmo (1) + + Erdemdemirkapi (1) Eric (1) - - ErickRijoJr (1) Ernsttremel (1) + + Roux, Elie (1) Esben aaberg (1) - - EstebanUD (1) EstelaAWTxiu (1) + + Evelyn3794 (1) Evfool (1) - - EyalRozenberg (1) FMA (1) + + Factooor (1) Faiq Aminuddin (1) - - Falatooni (1) Falcao (1) + + Farhaf (1) Farhank (1) - - Farlfr (1) FarzanehSarafraz (1) + + Faseeh1218 (1) FelipaSwan (1) - - Fenchi (1) Ferlodev (1) + + FerminAndrade (1) Feyza (1) - - Fghj (1) Fgland (1) + + Flirtwomens (1) Foobar (1) - - Fourdollars (1) Francesco (1) + + Frangrie25 (1) Fred.th (1) - - Fredbenj24 (1) Manas Joshi (1) + + GabrielSwart (1) Gabrielezorzi (1) - - Garhitusqr (1) Gautrucdo (1) + + Bilotta, Giuseppe (1) Gcoelho (1) - - GeeZ (1) Gekacheka (1) + + Geoff newson (1) Gerard (1) - - van Valkenhoef, Gert (1) Houston, Gary (1) + + Giancav (1) Gicmo (1) - - Gmeijssen (1) Gmolleda (1) + + Goldensgui (1) Gpmanrpi (1) - - Grahl (1) GrantCelley (1) + + Grass-tree (1) Hernandez, Gregg (1) - - Grover47Ywzdn (1) GroverYQVvwokac (1) + + + + Grzesiek a (1) + Gstein (1) Guhde (1) + + Guilhem (1) + @@ -13141,14 +13208,17 @@ Literacyglenys (1) - Liturgist (1) + Litishia (1) - Llalllal1 (1) + Liturgist (1) + Llalllal1 (1) + + Scheidt, Heiko (1) @@ -13157,11 +13227,11 @@ Lorne (1) + + Lovelawsoutlaws (1) - - Luca (1) @@ -13171,11 +13241,11 @@ Lucker1 (1) + + LudieNutter (1) - - Luiz Cláudio (1) @@ -13185,11 +13255,11 @@ LydiaDgxuysav (1) + + LyndonCastiglio (1) - - M.sacharewicz (1) @@ -13199,11 +13269,11 @@ MJW (1) + + Maahicool (1) - - Mabel7997eelu (1) @@ -13213,11 +13283,11 @@ Maemst (1) + + Magicienap (1) - - Magmag (1) @@ -13227,11 +13297,11 @@ Mahmudul (1) + + Maliuta (1) - - Manveru1986 (1) @@ -13241,11 +13311,11 @@ MarcelaHeffron (1) + + MarcoZ (1) - - Biscaro, Marco (1) @@ -13255,11 +13325,11 @@ Marcosalex (1) + + Marcosps (1) - - MargaretaNorthc (1) @@ -13269,11 +13339,11 @@ MarianaConnell (1) + + Mariano Gaudix (1) - - MarinaManess (1) @@ -13283,11 +13353,11 @@ Markcoomes (1) + + Markzog21 (1) - - MarlonMarcum (1) @@ -13297,11 +13367,11 @@ Marwan (1) + + MaryellenW31 (1) - - MarylynKu (1) @@ -13311,11 +13381,11 @@ Massao (1) + + Mastizada (1) - - Matsuura (1) @@ -13325,11 +13395,11 @@ Campanelli, Matteo (1) + + Matěj (1) - - Mau (1) @@ -13339,11 +13409,11 @@ Maxjf1 (1) + + Bechler, Moritz (1) - - Mdanrana0123 (1) @@ -13353,11 +13423,11 @@ Megan44Dgxg (1) + + Melikeyurtoglu (1) - - MelisaBroughton (1) @@ -13367,11 +13437,11 @@ Menturi (1) + + MeriMerideth (1) - - MeskoBalazs (1) @@ -13381,11 +13451,11 @@ Mhaehnel (1) + + Mhcrnl (1) - - Mhenriday (1) @@ -13395,11 +13465,11 @@ Michaelwood (1) + + Michka B (1) - - Midomidi2013 (1) @@ -13409,11 +13479,11 @@ Miguelverdu (1) + + Mikedorson (1) - - Mikolg (1) @@ -13423,11 +13493,11 @@ Milanbv (1) + + Miles (1) - - Minarja4 (1) @@ -13437,11 +13507,11 @@ MitchellP (1) + + Miurahr (1) - - Mixer (1) @@ -13451,11 +13521,11 @@ Mlager (1) + + Mmeof (1) - - Moberg (1) @@ -13465,11 +13535,11 @@ Mohammedzalta (1) + + Momo50 (1) - - Monikayadav (1) @@ -13479,11 +13549,11 @@ Muhammadsufyanzainalabidin (1) + + Mw (1) - - Myan (1) @@ -13493,11 +13563,11 @@ N3rd4i (1) + + NEOhidra (1) - - NNe8Lx2gc (1) @@ -13507,11 +13577,11 @@ Nanotron (1) + + Nattu (1) - - Ncaio (1) @@ -13521,11 +13591,11 @@ NellieSMWX (1) + + Neteler (1) - - Nevanos (1) @@ -13535,11 +13605,11 @@ Nickko (1) + + NiklasHor (1) - - Nilss (1) @@ -13549,11 +13619,11 @@ Nnino2 (1) + + Normac01 (1) - - Northwestfirestarters (1) @@ -13563,11 +13633,11 @@ Notafish (1) + + NotesTracker (1) - - Nouiurm (1) @@ -13577,985 +13647,986 @@ Nurohman (1) + + + + Naeil, Zoueidi (1) + OBMLorraine (1) - - Oclei (1) Oig (1) + + Oiouitt (1) Okusi (1) - - Olea (1) OliverHoffnung (1) + + Oliversmithusa3 (1) Omansmith (1) - - Omerta (1) Onurkucuk67 (1) + + Oosterkamp (1) Opestawon (1) - - Ophelia2399 (1) Orrd (1) + + Osoitz (1) Oui (1) - - Anderson, Owen (1) Esen, Özcan (1) + + Ozpoz (1) PBsoft (1) - - PPRShaywuttpocn (1) Pal, Pawan (1) + + Padenton (1) PamalaDorsch (1) - - Pankaj (1) Papesky (1) + + Passerpunt (1) Pastim (1) - - Patelumesh (1) PatriceMerrick (1) + + Paulmenzel (1) Paulolima (1) - - PearlFelton (1) PearlMoyazw (1) + + Pelambrera (1) PenelopHewlett (1) - - Nowee, Peter (1) Vorel, Petr (1) + + Pharmankur (1) Phb.nbnet.nb.ca (1) - - Pherjung (1) PhilDur (1) + + Philhart (1) PhilipTimms (1) - - Philippe43 (1) PhillippBethea (1) + + Phomes (1) Paraiso, Joan (1) - - Piero (1) PieterDeBruijn (1) + + Pietro.caballeri (1) Pilavi (1) - - Piratu (1) Piternoize (1) + + Pjotr (1) Pkavinda (1) - - Plastique (1) Plastovicka (1) + + Moscu, Alexandru (1) Poonama (1) - - PoppyHart (1) PopularOutcast (1) + + Por (1) PorfiriMansergh (1) - - PorterEncarnaci (1) Carter, Travis (1) + + Prosper (1) Psauthor (1) - - Psychicread531 (1) Vidhey Pv (1) + + QGBWinonajrdtpj (1) Illarionov, Arkadiy (1) - - Qiguo (1) Qokoqoko (1) + + Qtwallaert (1) Quick8130 (1) - - Quickbooktech (1) Qwe (1) + + R425075 (1) RafaelaTrudel (1) - - Rafealandrande (1) Rahuldeshmukh101 (1) + + Rainy (1) Ramonturner (1) - - Randolp1949 (1) RashadEsp (1) + + Ratias (1) Rcampbelllaos (1) - - Bevilacqua, Jean-Sébastien (1) RebeccaToscano (1) + + Recoverymail (1) Rettichschnidi (1) - - ReubenFow (1) RexRTEJnlzus (1) + + Rholler (1) Richardprins (1) - - Richdorg25 (1) RickieHpejt (1) + + Riessmi (1) Rif (1) - - Ringlerloje (1) Rion (1) + + Ritzema, Brent (1) Rizobix (1) - - Rizwan1218 (1) Robert Wetzlmayr (1) + + Robertkelly35 (1) Robineh (1) - - Robotdesoja (1) Robotdesojaa (1) + + Robustchao (1) RoccoAPIUqpuoia (1) - - Rockcows31 (1) Rockers (1) + + Rodney78 (1) RogelioTrost (1) - - Deshmukh, Rohit (1) Rojerdesoja (1) + + Rombert (1) Ron1 (1) - - Ronny (1) Roscoe5731 (1) + + Rosemarie (1) Rpott (1) - - Rsedak (1) RuleAndLine (1) + + Rvr (1) Ryho (1) - - ONODERA, Ryo (1) SallyMorales (1) + + Samanicute (1) Tygier, Sam (1) - - SamuelPoltpalin (1) Samuse (1) + + Sandeeps (1) Sanipache (1) - - Saracans (1) Sbar1 (1) + + Schrillesbunteshamburg (1) Scito (1) - - Scno (1) Sctenebro (1) + + SecondLifeGuerilla (1) Ak, Sedat (1) - - Senopen (1) ShannaCockrell (1) + + Shay030 (1) ShaynaMan (1) - - SherrieMarroqui (1) SherrillGabriel (1) + + SherylMillingto (1) Shore, Shimon (1) - - Shin en (1) Shortblack (1) + + Siegi (1) Silvestr (1) - - Simonbr (1) SimsimiUy (1) + + SiobhanLandale (1) Skierpage (1) - - SkyeCorreia (1) Smalalur (1) + + Socialmitchell (1) Sojatasingh (1) - - Son Sonson (1) SonyaBunnell (1) + + Sovichet (1) Sphericalhorse (1) - - Spreadsheetsorter (1) Spyros (1) + + Srijanani (1) Stewart75H (1) - - Stifinpark (1) Stonehubmn (1) + + Subhash (1) Supportex (1) - - SusieVeasley (1) Svalo (1) + + SvenHornung (1) Svend-ev (1) - - Sviola (1) Svtlichnijj (1) + + Sébastien C. (1) TAQSamueld (1) - - Talueses (1) Tanguy k (1) + + Thanakanok, Tantai (1) TaylorSlemp (1) - - TeganCreswick (1) Tegas (1) + + Testsflirt (1) The Magpie (1) - - ThePokehach (1) Thephilosoft (1) + + TheronAbdullah (1) Thom (1) - - Thor574 (1) ThudDriver (1) + + Tifroumi (1) Tigerbeard (1) - - Tilt (1) TimothyDempster (1) + + Tmongkol (1) Tomasdd (1) - - Viehmann, Thomas (1) Tpokorra (1) + + Transcend (1) TrevorPfe (1) - - Trondtr (1) Ttv20 (1) + + Tuliouel (1) Tuping (1) - - Tvallois (1) Jain, Umang (1) + + Udit Sharma (1) Shahid, Umair (1) - - Vincent, Brennan (1) UrmasD (1) + + UrsulaHorrell (1) Ushabtay (1) - - VIPSylar (1) VO Genesis (1) + + VPUJamikajklq (1) ValenciaS (1) - - Vandenoever (1) Veeven (1) + + Vera Cavalcante (1) VerenaGaskins (1) - - Verisonhelpline (1) VernaSchulze (1) + + VeroniqueGQAQ (1) VickyShick (1) - - Vidya002050 (1) Vincentvikram (1) + + Vinkas (1) Virus009 (1) - - WMZGiseleun (1) WOBFriedauk (1) + + WZEMonica (1) Wadrian (1) - - WandaSingletary (1) Waqas mirza6 (1) + + Wastl (1) Waynemcl (1) - - Webistrator (1) Wes (1) + + Westantenna (1) Wezchlebaty (1) - - Wilhelm (1) William Avery (1) + + Williewortel (1) Wilsonsim (1) - - Klausner, Thomas (1) Woulouf (1) + + XSXKristin (1) Baudin, Lucas (1) - - Xsdcfghjk (1) XtinaS (1) + + Xtrusia (1) Yangyiji (1) - - Yara (1) YaroslavRutledge (1) + + Yazu (1) Yeliztaneroglu (1) - - Desai, Yogesh (1) Yoshiharu Kawai (1) + + Yowbooks (1) Yufducv98 (1) - - YvanM (1) Yy y ja jp (1) + + Bölöny, Zsolt (1) ZAXHesterlpu (1) - - ZBMCallumbwire (1) ZakGregory (1) + + Zangune (1) Zizzle (1) - - 鄒延 (1) - + - - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-l10n-5.3.2~rc2/sc/inc/arealink.hxx libreoffice-l10n-5.3.3~rc2/sc/inc/arealink.hxx --- libreoffice-l10n-5.3.2~rc2/sc/inc/arealink.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/inc/arealink.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -75,7 +75,6 @@ const ScRange& GetDestArea() const { return aDestArea; } DECL_LINK( RefreshHdl, Timer*, void ); - DECL_LINK( AreaEndEditHdl, Dialog&, void ); }; #endif diff -Nru libreoffice-l10n-5.3.2~rc2/sc/inc/refdata.hxx libreoffice-l10n-5.3.3~rc2/sc/inc/refdata.hxx --- libreoffice-l10n-5.3.2~rc2/sc/inc/refdata.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/inc/refdata.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -190,6 +190,8 @@ @return TRUE if changed. */ bool IncEndRowSticky( SCROW nDelta, const ScAddress& rPos ); + bool IsDeleted() const; + #if DEBUG_FORMULA_COMPILER void Dump( int nIndent = 0 ) const; #endif diff -Nru libreoffice-l10n-5.3.2~rc2/sc/inc/scabstdlg.hxx libreoffice-l10n-5.3.3~rc2/sc/inc/scabstdlg.hxx --- libreoffice-l10n-5.3.2~rc2/sc/inc/scabstdlg.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/inc/scabstdlg.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -221,7 +221,7 @@ virtual OUString GetSelectEntry() const = 0; }; -class AbstractScLinkedAreaDlg : public VclAbstractDialog2 +class AbstractScLinkedAreaDlg : public VclAbstractDialog { protected: virtual ~AbstractScLinkedAreaDlg() override = default; diff -Nru libreoffice-l10n-5.3.2~rc2/sc/qa/unit/ucalc.cxx libreoffice-l10n-5.3.3~rc2/sc/qa/unit/ucalc.cxx --- libreoffice-l10n-5.3.2~rc2/sc/qa/unit/ucalc.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/qa/unit/ucalc.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -6403,6 +6403,162 @@ pDoc->SetDocOptions(aOpt); } +void Test::checkPrecisionAsShown( OUString& rCode, double fValue, double fExpectedRoundVal ) +{ + SvNumberFormatter* pFormatter = m_pDoc->GetFormatTable(); + sal_uInt32 nFormat = pFormatter->GetEntryKey( rCode ); + if ( nFormat == NUMBERFORMAT_ENTRY_NOT_FOUND ) + { + sal_Int32 nCheckPos = 0; + short nType; + pFormatter->PutEntry( rCode, nCheckPos, nType, nFormat ); + CPPUNIT_ASSERT_EQUAL( nCheckPos, sal_Int32(0) ); + } + double fRoundValue = m_pDoc->RoundValueAsShown( fValue, nFormat ); + rtl::OString aMessage = "Format \""; + aMessage += rtl::OUStringToOString( rCode, RTL_TEXTENCODING_ASCII_US ); + aMessage += "\" is not correctly rounded"; + CPPUNIT_ASSERT_EQUAL_MESSAGE( aMessage.getStr(), fExpectedRoundVal, fRoundValue ); +} + +void Test::testPrecisionAsShown() +{ + m_pDoc->InsertTab(0, "Test"); + + // Turn on "precision as shown" option. + setCalcAsShown( m_pDoc, true); + + OUString aCode; + double fValue, fExpectedRoundVal; + { // decimal rounding + aCode = "0.00"; + fValue = 1.0/3.0; + fExpectedRoundVal = 0.33; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 10.001; + fExpectedRoundVal = 10.0; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + } + { // thousand rounding bogus!!!! tdf#106253 + aCode = "0,,"; + fValue = 4.0e9 / 7.0; + fExpectedRoundVal = 571e6; // actual is 571428571 + //checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + fValue = -4.0e8 / 7.0; + fExpectedRoundVal = -57e6; // actual is 57142857 + //checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + } + { // percent rounding + aCode = "0.00%"; + fValue = 4.0 / 7.0; + fExpectedRoundVal = 0.5714; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 40.0 / 7.0; + fExpectedRoundVal = 5.7143; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + } + { // scientific rounding + aCode = "0.00E0"; + fValue = 400000.0 / 7.0; + fExpectedRoundVal = 57100.0; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 70000.0; + fExpectedRoundVal = 5.71e-5; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + // engineering rounding tdf#106252 + aCode = "##0.000E0"; + fValue = 400000.0 / 7.0; + fExpectedRoundVal = 57.143e3; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4000000.0 / 7.0; + fExpectedRoundVal = 571.429e3; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 40000000.0 / 7.0; + fExpectedRoundVal = 5.714e6; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 70000.0; + fExpectedRoundVal = 57.143e-6; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 7000.0; + fExpectedRoundVal = 571.429e-6; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 700.0; + fExpectedRoundVal = 5.714e-3; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + aCode = "##?0.0#E0"; + fValue = 400000.0 / 7.0; + fExpectedRoundVal = 5.71e4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4000000.0 / 7.0; + fExpectedRoundVal = 57.14e4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 40000000.0 / 7.0; + fExpectedRoundVal = 571.43e4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 400000000.0 / 7.0; + fExpectedRoundVal = 5714.29e4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 70000.0; + fExpectedRoundVal = 5714.29e-8; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 7000.0; + fExpectedRoundVal = 5.71e-4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 700.0; + fExpectedRoundVal = 57.14e-4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + fValue = 4.0 / 70.0; + fExpectedRoundVal = 571.43e-4; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + } + { // fraction rounding tdf#105657 + aCode = "# ?/?"; + fValue = 0.35; + fExpectedRoundVal = 1.0/3.0; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + } + { // exact fraction + aCode = "# ?/??"; + fValue = 0.35; + fExpectedRoundVal = 0.35; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + checkPrecisionAsShown( aCode, -fValue, -fExpectedRoundVal ); + } + { // several sub-formats tdf#106052 + aCode = "0.00;-0.000"; + fValue = 1.0/3.0; + fExpectedRoundVal = 0.33; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + fValue = -1.0/3.0; + fExpectedRoundVal = -0.333; + checkPrecisionAsShown( aCode, fValue, fExpectedRoundVal ); + } + + setCalcAsShown( m_pDoc, false); + m_pDoc->DeleteTab(0); +} + CPPUNIT_TEST_SUITE_REGISTRATION(Test); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/qa/unit/ucalc.hxx libreoffice-l10n-5.3.3~rc2/sc/qa/unit/ucalc.hxx --- libreoffice-l10n-5.3.2~rc2/sc/qa/unit/ucalc.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/qa/unit/ucalc.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -60,6 +60,7 @@ static void setCalcAsShown(ScDocument* pDoc, bool bCalcAsShown); + void checkPrecisionAsShown( OUString& rCode, double fValue, double fExpectedRoundVal ); template static ScRange insertRangeData( @@ -488,6 +489,8 @@ void testEmptyCalcDocDefaults(); + void testPrecisionAsShown(); + CPPUNIT_TEST_SUITE(Test); CPPUNIT_TEST(testCollator); CPPUNIT_TEST(testSharedStringPool); @@ -735,6 +738,7 @@ CPPUNIT_TEST(testTdf97369); CPPUNIT_TEST(testTdf97587); CPPUNIT_TEST(testEmptyCalcDocDefaults); + CPPUNIT_TEST(testPrecisionAsShown); CPPUNIT_TEST_SUITE_END(); private: diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/data/documen4.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/data/documen4.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/data/documen4.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/data/documen4.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -19,6 +19,7 @@ #include #include +#include #include #include "document.hxx" @@ -651,14 +652,16 @@ double ScDocument::RoundValueAsShown( double fVal, sal_uInt32 nFormat ) const { + const SvNumberformat* pFormat = GetFormatTable()->GetEntry( nFormat ); short nType; - if ( (nType = GetFormatTable()->GetType( nFormat )) != css::util::NumberFormat::DATE - && nType != css::util::NumberFormat::TIME && nType != css::util::NumberFormat::DATETIME ) + if (pFormat && (nType = pFormat->GetMaskedType()) != css::util::NumberFormat::DATE + && nType != css::util::NumberFormat::TIME && nType != css::util::NumberFormat::DATETIME ) { short nPrecision; if ((nFormat % SV_COUNTRY_LANGUAGE_OFFSET) != 0) { - nPrecision = (short)GetFormatTable()->GetFormatPrecision( nFormat ); + sal_uInt16 nIdx = pFormat->GetSubformatIndex( fVal ); + nPrecision = (short)pFormat->GetFormatPrecision( nIdx ); switch ( nType ) { case css::util::NumberFormat::PERCENT: // 0.41% == 0.0041 @@ -666,10 +669,33 @@ break; case css::util::NumberFormat::SCIENTIFIC: // 1.23e-3 == 0.00123 { + short nExp = 0; if ( fVal > 0.0 ) - nPrecision = sal::static_int_cast( nPrecision - (short)floor( log10( fVal ) ) ); + nExp = (short)floor( log10( fVal ) ); else if ( fVal < 0.0 ) - nPrecision = sal::static_int_cast( nPrecision - (short)floor( log10( -fVal ) ) ); + nExp = (short)floor( log10( -fVal ) ); + nPrecision -= nExp; + short nInteger = (short)pFormat->GetFormatIntegerDigits( nIdx ); + if ( nInteger > 1 ) // Engineering notation + { + short nIncrement = nExp % nInteger; + if ( nIncrement != 0 ) + { + nPrecision += nIncrement; + if (nExp < 0 ) + nPrecision += nInteger; + } + } + break; + } + case css::util::NumberFormat::FRACTION: // get value of fraction representation + { + return pFormat->GetRoundFractionValue( fVal ); + } + case css::util::NumberFormat::NUMBER: + case css::util::NumberFormat::CURRENCY: + { // tdf#106253 Thousands dividors for format "0," + nPrecision -= pFormat->GetThousandDivisorPrecision( nIdx ); break; } } diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/data/document10.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/data/document10.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/data/document10.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/data/document10.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -125,6 +125,15 @@ maTabs[i]->CopyOneCellFromClip(rCxt, nCol1, nRow1, nCol2, nRow2, aClipRange.aStart.Row(), pSrcTab); } + sc::RefUpdateContext aRefCxt(*this); + aRefCxt.maRange = ScRange(nCol1, nRow1, rCxt.getTabStart(), nCol2, nRow2, nTabEnd); + aRefCxt.mnColDelta = nCol1 - aSrcPos.Col(); + aRefCxt.mnRowDelta = nRow1 - aSrcPos.Row(); + aRefCxt.mnTabDelta = rCxt.getTabStart() - aSrcPos.Tab(); + // Only Copy&Paste, for Cut&Paste we already bailed out early. + aRefCxt.meMode = URM_COPY; + UpdateReference(aRefCxt, rCxt.getUndoDoc(), false); + return true; } diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/interpr4.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/interpr4.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/interpr4.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/interpr4.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -975,10 +975,17 @@ break; case svSingleRef: { + const ScSingleRefData* pRefData = p->GetSingleRef(); + if (pRefData->IsDeleted()) + { + SetError( FormulaError::NoRef); + break; + } + SCCOL nCol; SCROW nRow; SCTAB nTab; - SingleRefToVars( *p->GetSingleRef(), nCol, nRow, nTab); + SingleRefToVars( *pRefData, nCol, nRow, nTab); rAdr.Set( nCol, nRow, nTab ); if (!pDok->m_TableOpList.empty()) ReplaceCell( rAdr ); @@ -1100,9 +1107,17 @@ nGlobalError = pToken->GetError(); break; case svDoubleRef: + { --sp; - DoubleRefToRange( *pToken->GetDoubleRef(), rRange); + const ScComplexRefData* pRefData = pToken->GetDoubleRef(); + if (pRefData->IsDeleted()) + { + SetError( FormulaError::NoRef); + break; + } + DoubleRefToRange( *pRefData, rRange); break; + } case svRefList: { const ScRefList* pList = pToken->GetRefList(); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/interpr6.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/interpr6.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/interpr6.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/interpr6.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -613,6 +613,9 @@ case svSingleRef : { PopSingleRef( aAdr ); + if (nGlobalError == FormulaError::NoRef) + return 0.0; + if ( nGlobalError != FormulaError::NONE && ( eFunc == ifCOUNT2 || eFunc == ifCOUNT || ( mnSubTotalFlags & SubtotalFlags::IgnoreErrVal ) ) ) { @@ -676,6 +679,9 @@ case svRefList : { PopDoubleRef( aRange, nParamCount, nRefInList); + if (nGlobalError == FormulaError::NoRef) + return 0.0; + if ( nGlobalError != FormulaError::NONE && ( eFunc == ifCOUNT2 || eFunc == ifCOUNT || ( mnSubTotalFlags & SubtotalFlags::IgnoreErrVal ) ) ) { diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/parclass.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/parclass.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/parclass.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/parclass.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -80,6 +80,7 @@ { ocCell, {{ Value, Reference }, 0 }}, { ocColumn, {{ Reference }, 0 }}, { ocColumns, {{ Reference }, 1 }}, + { ocConcat_MS, {{ Reference }, 1 }}, { ocCorrel, {{ ForceArray, ForceArray }, 0 }}, { ocCount, {{ Reference }, 1 }}, { ocCount2, {{ Reference }, 1 }}, @@ -195,6 +196,7 @@ { ocSumXMY2, {{ ForceArray, ForceArray }, 0 }}, { ocSheet, {{ Reference }, 0 }}, { ocSheets, {{ Reference }, 1 }}, + { ocTextJoin_MS, {{ Reference, Value, Reference }, 1 }}, { ocTrend, {{ Reference, Reference, Reference, Value }, 0 }}, { ocTrimMean, {{ Reference, Value }, 0 }}, { ocTTest, {{ ForceArray, ForceArray, Value, Value }, 0 }}, diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/refdata.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/refdata.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/refdata.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/refdata.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -553,6 +553,11 @@ return true; } +bool ScComplexRefData::IsDeleted() const +{ + return Ref1.IsDeleted() || Ref2.IsDeleted(); +} + #if DEBUG_FORMULA_COMPILER void ScComplexRefData::Dump( int nIndent ) const { diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/token.cxx libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/token.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/core/tool/token.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/core/tool/token.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2624,6 +2624,12 @@ } } +void restoreDeletedRef( ScComplexRefData& rRef, const sc::RefUpdateContext& rCxt ) +{ + restoreDeletedRef(rRef.Ref1, rCxt); + restoreDeletedRef(rRef.Ref2, rCxt); +} + bool shrinkRange( const sc::RefUpdateContext& rCxt, ScRange& rRefRange, const ScRange& rDeletedRange, const ScComplexRefData& rRef ) { @@ -2999,6 +3005,19 @@ } } + if (!rCxt.isDeleted() && rRef.IsDeleted()) + { + // Check if the token has reference to previously deleted region. + ScRange aCheckRange = rRef.toAbs(aNewPos); + if (aSelectedRange.In(aCheckRange)) + { + // This reference was previously in the deleted region. Restore it. + restoreDeletedRef(rRef, rCxt); + aRes.mbValueChanged = true; + break; + } + } + if (rCxt.isInserted()) { if (expandRange(rCxt, aAbs, aSelectedRange, rRef)) @@ -3147,6 +3166,11 @@ aAbs = aErrorPos; aRes.mbReferenceModified = true; } + else if (rCxt.maRange.In(aAbs)) + { + // Referenced cell has been overwritten. + aRes.mbValueChanged = true; + } rRef.SetAddress(aAbs, rNewPos); rRef.SetFlag3D(aAbs.Tab() != rNewPos.Tab() || !rRef.IsTabRel()); @@ -3163,6 +3187,11 @@ aAbs = aErrorRange; aRes.mbReferenceModified = true; } + else if (rCxt.maRange.In(aAbs)) + { + // Referenced range has been entirely overwritten. + aRes.mbValueChanged = true; + } rRef.SetRange(aAbs, rNewPos); // Absolute sheet reference => set 3D flag. diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/filter/excel/xlformula.cxx libreoffice-l10n-5.3.3~rc2/sc/source/filter/excel/xlformula.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/filter/excel/xlformula.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/filter/excel/xlformula.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -408,6 +408,9 @@ #define EXC_FUNCENTRY_V_VR_IMPORT( opcode, minparam, maxparam, flags, asciiname ) \ { opcode, NOID, minparam, maxparam, V, { VR }, EXC_FUNCFLAG_IMPORTONLY|(flags), EXC_FUNCNAME( asciiname ) } +#define EXC_FUNCENTRY_V_RO_EXPORT( opcode, minparam, maxparam, flags, asciiname ) \ + { opcode, 255, (minparam)+1, (maxparam)+1, V, { RO_E, RO }, EXC_FUNCFLAG_EXPORTONLY|(flags), EXC_FUNCNAME( asciiname ) } + #define EXC_FUNCENTRY_A_VR( opcode, minparam, maxparam, flags, asciiname ) \ { opcode, NOID, minparam, maxparam, A, { VR }, EXC_FUNCFLAG_IMPORTONLY|(flags), EXC_FUNCNAME( asciiname ) }, \ { opcode, 255, (minparam)+1, (maxparam)+1, A, { RO_E, RO }, EXC_FUNCFLAG_EXPORTONLY|(flags), EXC_FUNCNAME( asciiname ) } @@ -524,6 +527,7 @@ EXC_FUNCENTRY_V_VR( ocBitRshift, 2, 2, 0, "BITRSHIFT" ), EXC_FUNCENTRY_V_VR( ocBitXor, 2, 2, 0, "BITXOR" ), EXC_FUNCENTRY_V_VR( ocCeil_Math, 1, 3, 0, "CEILING.MATH" ), + EXC_FUNCENTRY_V_RO_EXPORT( ocCeil, 1, 3, 0, "CEILING.MATH" ), EXC_FUNCENTRY_V_VR( ocCombinA, 2, 2, 0, "COMBINA" ), EXC_FUNCENTRY_V_VR_IMPORT( ocCot, 1, 1, 0, "COT" ), EXC_FUNCENTRY_V_VR_IMPORT( ocCotHyp, 1, 1, 0, "COTH" ), @@ -538,6 +542,7 @@ EXC_FUNCENTRY_V_VR( ocNoName, 3, 3, 0, "FINV" ), EXC_FUNCENTRY_V_VR( ocFilterXML, 2, 2, 0, "FILTERXML" ), EXC_FUNCENTRY_V_VR( ocFloor_Math, 1, 3, 0, "FLOOR.MATH" ), + EXC_FUNCENTRY_V_RO_EXPORT( ocFloor, 1, 3, 0, "FLOOR.MATH" ), EXC_FUNCENTRY_V_RO( ocFormula, 1, 1, 0, "FORMULATEXT" ), EXC_FUNCENTRY_V_VR( ocGamma, 1, 1, 0, "GAMMA" ), EXC_FUNCENTRY_V_VR( ocGauss, 1, 1, 0, "GAUSS" ), diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/filter/oox/formulabase.cxx libreoffice-l10n-5.3.3~rc2/sc/source/filter/oox/formulabase.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/filter/oox/formulabase.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/filter/oox/formulabase.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -785,7 +785,7 @@ { "BITRSHIFT", "BITRSHIFT", NOID, NOID, 2, 2, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "BITXOR", "BITXOR", NOID, NOID, 2, 2, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "COM.MICROSOFT.CEILING.MATH", "CEILING.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_MACROCALL_NEW }, - { "CEILING", "CEILING.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_EXPORTONLY }, + { "CEILING", "CEILING.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_EXPORTONLY | FUNCFLAG_MACROCALL_NEW }, { "COMBINA", "COMBINA", NOID, NOID, 2, 2, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "COT", "COT", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "COTH", "COTH", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW }, @@ -796,7 +796,7 @@ { "COM.MICROSOFT.ENCODEURL","ENCODEURL", NOID, NOID, 1, 1, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "COM.MICROSOFT.FILTERXML","FILTERXML", NOID, NOID, 2, 2, V, { VR }, FUNCFLAG_MACROCALL_NEW }, { "COM.MICROSOFT.FLOOR.MATH", "FLOOR.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_MACROCALL_NEW }, - { "FLOOR", "FLOOR.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_EXPORTONLY }, + { "FLOOR", "FLOOR.MATH", NOID, NOID, 1, 3, V, { VR }, FUNCFLAG_EXPORTONLY | FUNCFLAG_MACROCALL_NEW }, // NOTE: this FDIST is not our LEGACY.FDIST { nullptr/*"FDIST"*/, "FDIST", NOID, NOID, 3, 4, V, { VR }, FUNCFLAG_MACROCALL_NEW }, // NOTE: this FINV is not our LEGACY.FINV diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/attrdlg/scdlgfact.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/attrdlg/scdlgfact.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/attrdlg/scdlgfact.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/attrdlg/scdlgfact.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -90,7 +90,6 @@ IMPL_ABSTDLG_BASE(AbstractScInsertContentsDlg_Impl); IMPL_ABSTDLG_BASE(AbstractScInsertTableDlg_Impl); IMPL_ABSTDLG_BASE(AbstractScSelEntryDlg_Impl); -IMPL_ABSTDLG2_BASE(AbstractScLinkedAreaDlg_Impl); IMPL_ABSTDLG_BASE(AbstractScMetricInputDlg_Impl); IMPL_ABSTDLG_BASE(AbstractScMoveTableDlg_Impl); IMPL_ABSTDLG_BASE(AbstractScNameCreateDlg_Impl); @@ -110,6 +109,14 @@ IMPL_ABSTDLG_BASE(AbstractScTextImportOptionsDlg_Impl); IMPL_ABSTDLG_BASE(ScAbstractTabDialog_Impl); +AbstractScLinkedAreaDlg_Impl::~AbstractScLinkedAreaDlg_Impl() +{ +} +short AbstractScLinkedAreaDlg_Impl::Execute() +{ + return pDlg->Execute(); +} + void ScAbstractTabDialog_Impl::SetCurPageId( sal_uInt16 nId ) { pDlg->SetCurPageId( nId ); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/attrdlg/scdlgfact.hxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/attrdlg/scdlgfact.hxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/attrdlg/scdlgfact.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/attrdlg/scdlgfact.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -258,8 +258,12 @@ class AbstractScLinkedAreaDlg_Impl : public AbstractScLinkedAreaDlg { - DECL_ABSTDLG2_BASE( AbstractScLinkedAreaDlg_Impl, ScLinkedAreaDlg) - + ScopedVclPtr pDlg; +public: + explicit AbstractScLinkedAreaDlg_Impl( ScLinkedAreaDlg* p) + : pDlg(p) {} + virtual ~AbstractScLinkedAreaDlg_Impl() override; + virtual short Execute() override; virtual void InitFromOldLink( const OUString& rFile, const OUString& rFilter, const OUString& rOptions, const OUString& rSource, sal_uLong nRefresh ) override; diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/cctrl/checklistmenu.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/cctrl/checklistmenu.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/cctrl/checklistmenu.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/cctrl/checklistmenu.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1215,7 +1215,7 @@ IMPL_LINK_NOARG(ScCheckListMenuWindow, EdModifyHdl, Edit&, void) { OUString aSearchText = maEdSearch->GetText(); - aSearchText = aSearchText.toAsciiLowerCase(); + aSearchText = ScGlobal::pCharClass->lowercase( aSearchText ); bool bSearchTextEmpty = aSearchText.isEmpty(); size_t n = maMembers.size(); size_t nSelCount = 0; @@ -1234,10 +1234,10 @@ if ( !bSearchTextEmpty ) { if ( !bIsDate ) - bPartialMatch = ( aLabelDisp.toAsciiLowerCase().indexOf( aSearchText ) != -1 ); + bPartialMatch = ( ScGlobal::pCharClass->lowercase( aLabelDisp ).indexOf( aSearchText ) != -1 ); else if ( maMembers[i].meDatePartType == ScCheckListMember::DAY ) // Match with both numerical and text version of month - bPartialMatch = bPartialMatch || ( OUString( maMembers[i].maRealName + maMembers[i].maDateParts[1] ) - .toAsciiLowerCase().indexOf( aSearchText ) != -1 ); + bPartialMatch = bPartialMatch || ( ScGlobal::pCharClass->lowercase( OUString( maMembers[i].maRealName + maMembers[i].maDateParts[1] ) ) + .indexOf( aSearchText ) != -1 ); else continue; } @@ -1916,12 +1916,14 @@ if (aLabel.isEmpty()) aLabel = ScGlobal::GetRscString(STR_EMPTYDATA); bool bState = maChecks->IsChecked( aLabel, maMembers[i].mpParent ); - OUString sName; + ResultEntry aResultEntry; + aResultEntry.bValid = bState; if ( maMembers[i].mbDate ) - sName = maMembers[i].maRealName; + aResultEntry.aName = maMembers[i].maRealName; else - sName = maMembers[i].maName; - aResult.insert(ResultType::value_type(sName, bState)); + aResultEntry.aName = maMembers[i].maName; + aResultEntry.bDate = maMembers[i].mbDate; + aResult.insert(aResultEntry); } } rResult.swap(aResult); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/condformat/condformatdlg.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/condformat/condformatdlg.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/condformat/condformatdlg.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/condformat/condformatdlg.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -572,7 +572,10 @@ OUString aRefStr(rRef.Format(nFlags, mpViewData->GetDocument(), ScAddress::Details(mpViewData->GetDocument()->GetAddressConvention(), 0, 0))); - pEdit->SetRefString( aRefStr ); + if (pEdit != mpEdRange) + pEdit->ReplaceSelected(aRefStr); + else + pEdit->SetRefString( aRefStr ); updateTitle(); } } diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/docshell/arealink.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/docshell/arealink.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/docshell/arealink.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/docshell/arealink.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -92,7 +92,18 @@ OSL_ENSURE(pDlg, "Dialog create fail!"); pDlg->InitFromOldLink( aFileName, aFilterName, aOptions, aSourceArea, GetRefreshDelay() ); pImpl->m_pDialog = pDlg; - pDlg->StartExecuteModal( LINK( this, ScAreaLink, AreaEndEditHdl ) ); + if ( pDlg->Execute() == RET_OK ) + { + aOptions = pImpl->m_pDialog->GetOptions(); + Refresh( pImpl->m_pDialog->GetURL(), pImpl->m_pDialog->GetFilter(), + pImpl->m_pDialog->GetSource(), pImpl->m_pDialog->GetRefresh() ); + + // copy source data from members (set in Refresh) into link name for dialog + OUString aNewLinkName; + sfx2::MakeLnkName( aNewLinkName, nullptr, aFileName, aSourceArea, &aFilterName ); + SetName( aNewLinkName ); + } + pImpl->m_pDialog.clear(); // dialog is deleted with parent } ::sfx2::SvBaseLink::UpdateResult ScAreaLink::DataChanged( @@ -482,23 +493,4 @@ Refresh( aFileName, aFilterName, aSourceArea, GetRefreshDelay() ); } -IMPL_LINK_NOARG(ScAreaLink, AreaEndEditHdl, Dialog&, void) -{ - // #i76514# can't use link argument to access the dialog, - // because it's the ScLinkedAreaDlg, not AbstractScLinkedAreaDlg - - if ( pImpl->m_pDialog && pImpl->m_pDialog->GetResult() == RET_OK ) - { - aOptions = pImpl->m_pDialog->GetOptions(); - Refresh( pImpl->m_pDialog->GetURL(), pImpl->m_pDialog->GetFilter(), - pImpl->m_pDialog->GetSource(), pImpl->m_pDialog->GetRefresh() ); - - // copy source data from members (set in Refresh) into link name for dialog - OUString aNewLinkName; - sfx2::MakeLnkName( aNewLinkName, nullptr, aFileName, aSourceArea, &aFilterName ); - SetName( aNewLinkName ); - } - pImpl->m_pDialog.clear(); // dialog is deleted with parent -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/docshell/docfunc.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/docshell/docfunc.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/docshell/docfunc.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/docshell/docfunc.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2826,7 +2826,7 @@ ScDrawLayer::MoveCells() which may move away inserted objects to wrong positions (e.g. if source and destination range overlaps).*/ rDoc.CopyFromClip( aPasteDest, aDestMark, InsertDeleteFlags::ALL & ~(InsertDeleteFlags::OBJECTS), - nullptr, pClipDoc, true, false, bIncludeFiltered ); + pUndoDoc, pClipDoc, true, false, bIncludeFiltered ); // skipped rows and merged cells don't mix if ( !bIncludeFiltered && pClipDoc->HasClipFilteredRows() ) diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/inc/checklistmenu.hxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/inc/checklistmenu.hxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/inc/checklistmenu.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/inc/checklistmenu.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -293,7 +293,18 @@ class ScCheckListMenuWindow : public ScMenuFloatingWindow { public: - typedef std::unordered_map ResultType; + struct ResultEntry + { + OUString aName; + bool bValid; + bool bDate; + + bool operator<(const ResultEntry& rhs) const + { + return aName < rhs.aName; + } + }; + typedef std::set ResultType; /** * Extended data that the client code may need to store. Create a diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/undo/undoblk.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/undo/undoblk.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/undo/undoblk.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/undo/undoblk.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1102,7 +1102,7 @@ ScUndoDragDrop::ScUndoDragDrop( ScDocShell* pNewDocShell, const ScRange& rRange, ScAddress aNewDestPos, bool bNewCut, ScDocument* pUndoDocument, bool bScenario ) : - ScMoveUndo( pNewDocShell, pUndoDocument, nullptr, SC_UNDO_REFFIRST ), + ScMoveUndo( pNewDocShell, pUndoDocument, nullptr, SC_UNDO_REFLAST ), mnPaintExtFlags( 0 ), aSrcRange( rRange ), bCut( bNewCut ), diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/vba/vbarange.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/vba/vbarange.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/vba/vbarange.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/vba/vbarange.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -4215,8 +4215,20 @@ } } - uno::Reference< sheet::XSpreadsheetView > xView( getCurrentExcelDoc(xContext)->getCurrentController(), uno::UNO_QUERY ); - uno::Reference< table::XCellRange > xSheetRange( xView->getActiveSheet(), uno::UNO_QUERY_THROW ); + uno::Reference xSheetRange; + + try + { + uno::Reference xView( + getCurrentExcelDoc(xContext)->getCurrentController(), uno::UNO_QUERY_THROW); + + xSheetRange.set(xView->getActiveSheet(), uno::UNO_QUERY_THROW); + } + catch (const uno::Exception&) + { + return uno::Reference(); + } + ScVbaRange* pRange = new ScVbaRange( excel::getUnoSheetModuleObj( xSheetRange ), xContext, xSheetRange ); uno::Reference< excel::XRange > xVbSheetRange( pRange ); return pRange->Range( Cell1, Cell2, true ); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/cellsh1.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/cellsh1.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/cellsh1.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/cellsh1.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2505,16 +2505,16 @@ case SID_EXTERNAL_SOURCE: { - OUString aFile; - OUString aFilter; - OUString aOptions; - OUString aSource; - sal_uLong nRefresh=0; - const SfxStringItem* pFile = rReq.GetArg(SID_FILE_NAME); const SfxStringItem* pSource = rReq.GetArg(FN_PARAM_1); if ( pFile && pSource ) { + OUString aFile; + OUString aFilter; + OUString aOptions; + OUString aSource; + sal_uLong nRefresh=0; + aFile = pFile->GetValue(); aSource = pSource->GetValue(); const SfxStringItem* pFilter = rReq.GetArg(SID_FILTER_NAME); @@ -2526,6 +2526,8 @@ const SfxUInt32Item* pRefresh = rReq.GetArg(FN_PARAM_2); if ( pRefresh ) nRefresh = pRefresh->GetValue(); + + ExecuteExternalSource( aFile, aFilter, aOptions, aSource, nRefresh, rReq ); } else { @@ -2538,11 +2540,29 @@ OSL_ENSURE(pImpl->m_pLinkedDlg, "Dialog create fail!"); delete pImpl->m_pRequest; pImpl->m_pRequest = new SfxRequest( rReq ); - pImpl->m_pLinkedDlg->StartExecuteModal( LINK( this, ScCellShell, DialogClosed ) ); - return; - } + OUString sFile, sFilter, sOptions, sSource; + sal_uLong nRefresh = 0; + if (pImpl->m_pLinkedDlg->Execute() == RET_OK) + { + sFile = pImpl->m_pLinkedDlg->GetURL(); + sFilter = pImpl->m_pLinkedDlg->GetFilter(); + sOptions = pImpl->m_pLinkedDlg->GetOptions(); + sSource = pImpl->m_pLinkedDlg->GetSource(); + nRefresh = pImpl->m_pLinkedDlg->GetRefresh(); + if ( !sFile.isEmpty() ) + pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILE_NAME, sFile ) ); + if ( !sFilter.isEmpty() ) + pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILTER_NAME, sFilter ) ); + if ( !sOptions.isEmpty() ) + pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILE_FILTEROPTIONS, sOptions ) ); + if ( !sSource.isEmpty() ) + pImpl->m_pRequest->AppendItem( SfxStringItem( FN_PARAM_1, sSource ) ); + if ( nRefresh ) + pImpl->m_pRequest->AppendItem( SfxUInt32Item( FN_PARAM_2, nRefresh ) ); + } - ExecuteExternalSource( aFile, aFilter, aOptions, aSource, nRefresh, rReq ); + ExecuteExternalSource( sFile, sFilter, sOptions, sSource, nRefresh, *(pImpl->m_pRequest) ); + } } break; @@ -2959,35 +2979,6 @@ SC_MOD()->SetInputMode(SC_INPUT_TABLE, &aInit); } -IMPL_LINK_NOARG(ScCellShell, DialogClosed, Dialog&, void) -{ - assert(pImpl->m_pLinkedDlg && "ScCellShell::DialogClosed(): invalid request"); - assert(pImpl->m_pRequest && "ScCellShell::DialogClosed(): invalid request"); - OUString sFile, sFilter, sOptions, sSource; - sal_uLong nRefresh = 0; - - if ( pImpl->m_pLinkedDlg->GetResult() == RET_OK ) - { - sFile = pImpl->m_pLinkedDlg->GetURL(); - sFilter = pImpl->m_pLinkedDlg->GetFilter(); - sOptions = pImpl->m_pLinkedDlg->GetOptions(); - sSource = pImpl->m_pLinkedDlg->GetSource(); - nRefresh = pImpl->m_pLinkedDlg->GetRefresh(); - if ( !sFile.isEmpty() ) - pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILE_NAME, sFile ) ); - if ( !sFilter.isEmpty() ) - pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILTER_NAME, sFilter ) ); - if ( !sOptions.isEmpty() ) - pImpl->m_pRequest->AppendItem( SfxStringItem( SID_FILE_FILTEROPTIONS, sOptions ) ); - if ( !sSource.isEmpty() ) - pImpl->m_pRequest->AppendItem( SfxStringItem( FN_PARAM_1, sSource ) ); - if ( nRefresh ) - pImpl->m_pRequest->AppendItem( SfxUInt32Item( FN_PARAM_2, nRefresh ) ); - } - - ExecuteExternalSource( sFile, sFilter, sOptions, sSource, nRefresh, *(pImpl->m_pRequest) ); -} - CellShell_Impl::~CellShell_Impl() { } diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/gridwin2.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/gridwin2.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/gridwin2.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/gridwin2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -554,29 +554,29 @@ ScCheckListMenuWindow::ResultType aRawResult; mpDPFieldPopup->getResult(aRawResult); - ScCheckListMenuWindow::ResultType aResult; + std::unordered_map aResult; ScCheckListMenuWindow::ResultType::const_iterator itr = aRawResult.begin(), itrEnd = aRawResult.end(); for (; itr != itrEnd; ++itr) { - MemNameMapType::const_iterator itrNameMap = aMemNameMap.find(itr->first); + MemNameMapType::const_iterator itrNameMap = aMemNameMap.find(itr->aName); if (itrNameMap == aMemNameMap.end()) { // This is an original member name. Use it as-is. - OUString aName = itr->first; + OUString aName = itr->aName; if (aName.equals(ScGlobal::GetRscString(STR_EMPTYDATA))) // Translate the special empty name into an empty string. aName.clear(); aResult.insert( - ScCheckListMenuWindow::ResultType::value_type( - aName, itr->second)); + std::unordered_map::value_type( + aName, itr->bValid)); } else { // This is a layout name. Get the original member name and use it. aResult.insert( - ScCheckListMenuWindow::ResultType::value_type( - itrNameMap->second, itr->second)); + std::unordered_map::value_type( + itrNameMap->second, itr->bValid)); } } pDim->UpdateMemberVisibility(aResult); diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/gridwin.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/gridwin.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/gridwin.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/gridwin.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -642,13 +642,16 @@ public: AddItemToEntry(ScQueryEntry::QueryItemsType& rItems, svl::SharedStringPool& rPool) : mrItems(rItems), mrPool(rPool) {} - void operator() (const OUString& rSelected) + void operator() (const ScCheckListMenuWindow::ResultEntry& rEntry) { - ScQueryEntry::Item aNew; - aNew.maString = mrPool.intern(rSelected); - aNew.meType = ScQueryEntry::ByString; - aNew.mfVal = 0.0; - mrItems.push_back(aNew); + if (rEntry.bValid) + { + ScQueryEntry::Item aNew; + aNew.maString = mrPool.intern(rEntry.aName); + aNew.meType = rEntry.bDate ? ScQueryEntry::ByDate : ScQueryEntry::ByString; + aNew.mfVal = 0.0; + mrItems.push_back(aNew); + } } }; @@ -852,17 +855,10 @@ ScCheckListMenuWindow::ResultType aResult; mpAutoFilterPopup->getResult(aResult); - std::vector aSelected; - ScCheckListMenuWindow::ResultType::const_iterator itr = aResult.begin(), itrEnd = aResult.end(); - for (; itr != itrEnd; ++itr) - { - if (itr->second) - aSelected.push_back(itr->first); - } ScQueryEntry::QueryItemsType& rItems = pEntry->GetQueryItems(); rItems.clear(); - std::for_each(aSelected.begin(), aSelected.end(), AddItemToEntry(rItems, rPool)); + std::for_each(aResult.begin(), aResult.end(), AddItemToEntry(rItems, rPool)); } break; case Top10: diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/tabvwshf.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/tabvwshf.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/tabvwshf.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/tabvwshf.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -624,13 +624,13 @@ { TheTabs.push_back(i); bTabFlag = true; - if (nNewTab == i) + if (nNewTab == i && i+1 < nTabCount) nNewTab++; } if (!bTabFlag) nFirstTab = i; } - if (nNewTab >= nTabCount) + if (nNewTab >= nTabCount - static_cast(TheTabs.size())) nNewTab = nFirstTab; } diff -Nru libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/viewfun2.cxx libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/viewfun2.cxx --- libreoffice-l10n-5.3.2~rc2/sc/source/ui/view/viewfun2.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sc/source/ui/view/viewfun2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1932,6 +1932,7 @@ ( nTab == nOldTab ) && ( nCol != nOldCol || nRow != nOldRow ) ) { + AlignToCursor(nCol, nRow, SC_FOLLOW_JUMP); SetCursor( nCol, nRow, true ); } } diff -Nru libreoffice-l10n-5.3.2~rc2/scripting/source/pyprov/pythonscript.py libreoffice-l10n-5.3.3~rc2/scripting/source/pyprov/pythonscript.py --- libreoffice-l10n-5.3.2~rc2/scripting/source/pyprov/pythonscript.py 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/scripting/source/pyprov/pythonscript.py 2017-05-03 16:46:29.000000000 +0000 @@ -405,7 +405,12 @@ allFuncs.append(node.name) elif isinstance(node, ast.Assign): for target in node.targets: - if target.id == "g_exportedScripts": + try: + identifier = target.id + except AttributeError: + identifier = "" + pass + if identifier == "g_exportedScripts": for value in node.value.elts: g_exportedScripts.append(value.id) return g_exportedScripts diff -Nru libreoffice-l10n-5.3.2~rc2/sd/source/ui/dlg/dlgsnap.cxx libreoffice-l10n-5.3.3~rc2/sd/source/ui/dlg/dlgsnap.cxx --- libreoffice-l10n-5.3.2~rc2/sd/source/ui/dlg/dlgsnap.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sd/source/ui/dlg/dlgsnap.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -156,8 +156,8 @@ nYValue = Fraction( GetCoreValue( *m_pMtrFldY, MapUnit::Map100thMM) ) * aUIScale; rOutAttrs.Put(SfxAllEnumItem(ATTR_SNAPLINE_KIND, (sal_uInt16)eKind)); - rOutAttrs.Put(SfxUInt32Item(ATTR_SNAPLINE_X, nXValue)); - rOutAttrs.Put(SfxUInt32Item(ATTR_SNAPLINE_Y, nYValue)); + rOutAttrs.Put(SfxInt32Item(ATTR_SNAPLINE_X, nXValue)); + rOutAttrs.Put(SfxInt32Item(ATTR_SNAPLINE_Y, nYValue)); } void SdSnapLineDlg::HideRadioGroup() diff -Nru libreoffice-l10n-5.3.2~rc2/sd/source/ui/dlg/navigatr.cxx libreoffice-l10n-5.3.3~rc2/sd/source/ui/dlg/navigatr.cxx --- libreoffice-l10n-5.3.2~rc2/sd/source/ui/dlg/navigatr.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sd/source/ui/dlg/navigatr.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -82,6 +82,9 @@ maTlbObjects->SetAccessibleName(SD_RESSTR(STR_OBJECTS_TREE)); + maTlbObjects->SetDoubleClickHdl(LINK(this, SdNavigatorWin, ClickObjectHdl)); + maTlbObjects->SetSelectionMode(SelectionMode::Single); + maToolbox->SetSelectHdl( LINK( this, SdNavigatorWin, SelectToolboxHdl ) ); maToolbox->SetDropdownClickHdl( LINK(this, SdNavigatorWin, DropdownClickToolBoxHdl) ); const sal_uInt16 nDragTypeId = maToolbox->GetItemId("dragmode"); diff -Nru libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/dialog.hrc libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/dialog.hrc --- libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/dialog.hrc 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/dialog.hrc 2017-05-03 16:46:29.000000000 +0000 @@ -62,6 +62,9 @@ #define STR_STYLE_ELEMTLIST ( RC_DIALOG_BEGIN + 125 ) #define STR_FONT_TABPAGE ( RC_DIALOG_BEGIN + 126 ) #define STR_PREVIEW_CHECKBOX ( RC_DIALOG_BEGIN + 127 ) +#define STR_STYLE_FILL_FORMAT_MODE ( RC_DIALOG_BEGIN + 128 ) +#define STR_STYLE_NEW_STYLE_FROM_SELECTION ( RC_DIALOG_BEGIN + 129 ) +#define STR_STYLE_UPDATE_STYLE ( RC_DIALOG_BEGIN + 130 ) #endif diff -Nru libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/templdlg.cxx libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/templdlg.cxx --- libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/templdlg.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/templdlg.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2196,18 +2196,15 @@ if (xUICommands.is()) { uno::Any aCommand = xUICommands->getByName(".uno:StyleApply"); - OUString sLabel = lcl_GetLabel( aCommand ); - m_aActionTbR->InsertItem( SID_STYLE_WATERCAN, sLabel ); + m_aActionTbR->InsertItem( SID_STYLE_WATERCAN, SfxResId(STR_STYLE_FILL_FORMAT_MODE).toString() ); m_aActionTbR->SetHelpId(SID_STYLE_WATERCAN, HID_TEMPLDLG_WATERCAN); aCommand = xUICommands->getByName(".uno:StyleNewByExample"); - sLabel = lcl_GetLabel( aCommand ); - m_aActionTbR->InsertItem( SID_STYLE_NEW_BY_EXAMPLE, sLabel ); + m_aActionTbR->InsertItem( SID_STYLE_NEW_BY_EXAMPLE, SfxResId(STR_STYLE_NEW_STYLE_FROM_SELECTION).toString() ); m_aActionTbR->SetHelpId(SID_STYLE_NEW_BY_EXAMPLE, HID_TEMPLDLG_NEWBYEXAMPLE); aCommand = xUICommands->getByName(".uno:StyleUpdateByExample"); - sLabel = lcl_GetLabel( aCommand ); - m_aActionTbR->InsertItem( SID_STYLE_UPDATE_BY_EXAMPLE, sLabel ); + m_aActionTbR->InsertItem( SID_STYLE_UPDATE_BY_EXAMPLE, SfxResId(STR_STYLE_UPDATE_STYLE).toString() ); m_aActionTbR->SetHelpId(SID_STYLE_UPDATE_BY_EXAMPLE, HID_TEMPLDLG_UPDATEBYEXAMPLE); } } diff -Nru libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/templdlg.src libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/templdlg.src --- libreoffice-l10n-5.3.2~rc2/sfx2/source/dialog/templdlg.src 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sfx2/source/dialog/templdlg.src 2017-05-03 16:46:29.000000000 +0000 @@ -44,4 +44,19 @@ Text [ en-US ] = "Hierarchical" ; }; +String STR_STYLE_FILL_FORMAT_MODE +{ + Text [ en-US ] = "Fill Format Mode" ; +}; + +String STR_STYLE_NEW_STYLE_FROM_SELECTION +{ + Text [ en-US ] = "New Style from Selection" ; +}; + +String STR_STYLE_UPDATE_STYLE +{ + Text [ en-US ] = "Update Style" ; +}; + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.3.2~rc2/solenv/bin/macosx-codesign-app-bundle libreoffice-l10n-5.3.3~rc2/solenv/bin/macosx-codesign-app-bundle --- libreoffice-l10n-5.3.2~rc2/solenv/bin/macosx-codesign-app-bundle 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/solenv/bin/macosx-codesign-app-bundle 2017-05-03 16:46:29.000000000 +0000 @@ -26,7 +26,7 @@ done APP_BUNDLE="$1" - +entitlements= if test -n "$ENABLE_MACOSX_SANDBOX"; then # In a sandboxed build executables need the entitlements entitlements="--entitlements $BUILDDIR/lo.xcent" @@ -47,7 +47,11 @@ find -d "$APP_BUNDLE" \( -name '*.jnilib' \) ! -type l | while read file; do id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'` - codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" || exit 1 + codesign --verbose --force --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" > "/tmp/codesign_$(basename "$file").log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_$(basename "$file").log" done # Sign dylibs @@ -62,7 +66,11 @@ $other_files \) ! -type l | while read file; do id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'` - codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" || exit 1 + codesign --verbose --force --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" > "/tmp/codesign_$(basename "$file").log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_$(basename "$file").log" done # Sign included bundles. First .app ones (i.e. the Python.app inside @@ -74,7 +82,11 @@ fn=${fn%.*} # Assume the app has a XML (and not binary) Info.plist id=`grep -A 1 'CFBundleIdentifier' $app/Contents/Info.plist | tail -1 | sed -e 's,.*,,' -e 's,.*,,'` - codesign --verbose --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$app" || exit 1 + codesign --verbose --force --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$app" > "/tmp/codesign_${fn}.log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_${fn}.log" done # Then .framework ones. Again, be generic just for kicks. @@ -87,8 +99,12 @@ if test ! -L "$version" -a -d "$version"; then # Assume the framework has a XML (and not binary) Info.plist id=`grep -A 1 'CFBundleIdentifier' $version/Resources/Info.plist | tail -1 | sed -e 's,.*,,' -e 's,.*,,'` - codesign --verbose --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$version" || exit 1 - fi + codesign --verbose --force --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$version" > "/tmp/codesign_${fn}.log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_${fn}.log" + fi done done @@ -96,7 +112,11 @@ find "$APP_BUNDLE" -name '*.mdimporter' -type d | while read bundle; do - codesign --verbose --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY" "$bundle" || exit 1 + codesign --verbose --force --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY" "$bundle" > "/tmp/codesign_$(basename "${bundle}").log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_$(basename "${bundle}").log" done # Sign executables @@ -108,7 +128,11 @@ ;; *) id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'` - codesign --force --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$file" || exit 1 + codesign --force --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$file" > "/tmp/codesign_${MACOSX_BUNDLE_IDENTIFIER}.${id}.log" 2>&1 + if [ "$?" != "0" ] ; then + exit 1 + fi + rm "/tmp/codesign_${MACOSX_BUNDLE_IDENTIFIER}.${id}.log" ;; esac done @@ -127,6 +151,9 @@ id=`echo ${PRODUCTNAME} | tr ' ' '-'` -codesign --force --verbose --identifier="${MACOSX_BUNDLE_IDENTIFIER}" --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$APP_BUNDLE" || exit 1 - +codesign --force --verbose --identifier="${MACOSX_BUNDLE_IDENTIFIER}" --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$APP_BUNDLE" > "/tmp/codesign_${MACOSX_BUNDLE_IDENTIFIER}.log" 2>&1 +if [ "$?" != "0" ] ; then + exit 1 +fi +rm "/tmp/codesign_${MACOSX_BUNDLE_IDENTIFIER}.log" exit 0 Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz differ diff -Nru libreoffice-l10n-5.3.2~rc2/src/fetch.log libreoffice-l10n-5.3.3~rc2/src/fetch.log --- libreoffice-l10n-5.3.2~rc2/src/fetch.log 2017-03-30 08:36:31.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/src/fetch.log 2017-05-03 18:35:07.000000000 +0000 @@ -1,5 +1,5 @@ -Do 30. Mär 10:03:47 CEST 2017 ---2017-03-30 10:03:47-- http://dev-www.libreoffice.org/src/libabw-0.1.1.tar.bz2 +Mi 3. Mai 20:05:08 CEST 2017 +--2017-05-03 20:05:08-- http://dev-www.libreoffice.org/src/libabw-0.1.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -8,9 +8,9 @@ 0K ..... 100% 239K=1,5s -2017-03-30 10:03:58 (239 KB/s) - »./libabw-0.1.1.tar.bz2« gespeichert [369311/369311] +2017-05-03 20:05:10 (239 KB/s) - »./libabw-0.1.1.tar.bz2« gespeichert [369311/369311] ---2017-03-30 10:03:59-- http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz +--2017-05-03 20:05:10-- http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -19,9 +19,9 @@ 0K .. 100% 239K=0,8s -2017-03-30 10:03:59 (239 KB/s) - »./commons-logging-1.2-src.tar.gz« gespeichert [188536/188536] +2017-05-03 20:05:11 (239 KB/s) - »./commons-logging-1.2-src.tar.gz« gespeichert [188536/188536] ---2017-03-30 10:03:59-- http://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz +--2017-05-03 20:05:11-- http://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -30,55 +30,55 @@ 0K ........ ....... 100% 239K=4,2s -2017-03-30 10:04:04 (239 KB/s) - »./apr-1.5.2.tar.gz« gespeichert [1031613/1031613] +2017-05-03 20:05:15 (239 KB/s) - »./apr-1.5.2.tar.gz« gespeichert [1031613/1031613] ---2017-03-30 10:04:04-- http://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz +--2017-05-03 20:05:15-- http://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 874044 (854K) [application/x-gzip] Wird in »»./apr-util-1.5.4.tar.gz«« gespeichert. - 0K ........ ..... 100% 239K=3,6s + 0K ........ ..... 100% 240K=3,6s -2017-03-30 10:04:08 (239 KB/s) - »./apr-util-1.5.4.tar.gz« gespeichert [874044/874044] +2017-05-03 20:05:19 (240 KB/s) - »./apr-util-1.5.4.tar.gz« gespeichert [874044/874044] ---2017-03-30 10:04:08-- http://dev-www.libreoffice.org/src/boost_1_60_0.tar.bz2 +--2017-05-03 20:05:19-- http://dev-www.libreoffice.org/src/boost_1_60_0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 76553944 (73M) [application/x-bzip] Wird in »»./boost_1_60_0.tar.bz2«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 4% 236K 5m3s - 3072K ........ ........ ........ ........ ........ ........ 8% 239K 4m48s - 6144K ........ ........ ........ ........ ........ ........ 12% 240K 4m35s - 9216K ........ ........ ........ ........ ........ ........ 16% 239K 4m22s - 12288K ........ ........ ........ ........ ........ ........ 20% 240K 4m9s - 15360K ........ ........ ........ ........ ........ ........ 24% 239K 3m56s - 18432K ........ ........ ........ ........ ........ ........ 28% 240K 3m43s - 21504K ........ ........ ........ ........ ........ ........ 32% 239K 3m30s - 24576K ........ ........ ........ ........ ........ ........ 36% 239K 3m17s - 27648K ........ ........ ........ ........ ........ ........ 41% 232K 3m5s - 30720K ........ ........ ........ ........ ........ ........ 45% 247K 2m51s - 33792K ........ ........ ........ ........ ........ ........ 49% 240K 2m38s - 36864K ........ ........ ........ ........ ........ ........ 53% 240K 2m26s - 39936K ........ ........ ........ ........ ........ ........ 57% 239K 2m13s - 43008K ........ ........ ........ ........ ........ ........ 61% 240K 2m0s - 46080K ........ ........ ........ ........ ........ ........ 65% 239K 1m47s - 49152K ........ ........ ........ ........ ........ ........ 69% 235K 94s - 52224K ........ ........ ........ ........ ........ ........ 73% 244K 81s - 55296K ........ ........ ........ ........ ........ ........ 78% 239K 68s - 58368K ........ ........ ........ ........ ........ ........ 82% 239K 56s - 61440K ........ ........ ........ ........ ........ ........ 86% 240K 43s - 64512K ........ ........ ........ ........ ........ ........ 90% 240K 30s - 67584K ........ ........ ........ ........ ........ ........ 94% 231K 17s - 70656K ........ ........ ........ ........ ........ ........ 98% 246K 4s - 73728K ........ ........ 100% 240K=5m12s + 0K ........ ........ ........ ........ ........ ........ 4% 222K 5m23s + 3072K ........ ........ ........ ........ ........ ........ 8% 210K 5m18s + 6144K ........ ........ ........ ........ ........ ........ 12% 218K 5m3s + 9216K ........ ........ ........ ........ ........ ........ 16% 243K 4m41s + 12288K ........ ........ ........ ........ ........ ........ 20% 235K 4m24s + 15360K ........ ........ ........ ........ ........ ........ 24% 240K 4m8s + 18432K ........ ........ ........ ........ ........ ........ 28% 236K 3m53s + 21504K ........ ........ ........ ........ ........ ........ 32% 232K 3m39s + 24576K ........ ........ ........ ........ ........ ........ 36% 246K 3m24s + 27648K ........ ........ ........ ........ ........ ........ 41% 239K 3m10s + 30720K ........ ........ ........ ........ ........ ........ 45% 232K 2m57s + 33792K ........ ........ ........ ........ ........ ........ 49% 240K 2m43s + 36864K ........ ........ ........ ........ ........ ........ 53% 240K 2m30s + 39936K ........ ........ ........ ........ ........ ........ 57% 236K 2m16s + 43008K ........ ........ ........ ........ ........ ........ 61% 233K 2m3s + 46080K ........ ........ ........ ........ ........ ........ 65% 233K 1m50s + 49152K ........ ........ ........ ........ ........ ........ 69% 234K 97s + 52224K ........ ........ ........ ........ ........ ........ 73% 238K 83s + 55296K ........ ........ ........ ........ ........ ........ 78% 230K 70s + 58368K ........ ........ ........ ........ ........ ........ 82% 250K 57s + 61440K ........ ........ ........ ........ ........ ........ 86% 230K 44s + 64512K ........ ........ ........ ........ ........ ........ 90% 205K 31s + 67584K ........ ........ ........ ........ ........ ........ 94% 230K 18s + 70656K ........ ........ ........ ........ ........ ........ 98% 260K 4s + 73728K ........ ........ 100% 240K=5m20s -2017-03-30 10:09:20 (239 KB/s) - »./boost_1_60_0.tar.bz2« gespeichert [76553944/76553944] +2017-05-03 20:10:40 (233 KB/s) - »./boost_1_60_0.tar.bz2« gespeichert [76553944/76553944] ---2017-03-30 10:09:20-- http://dev-www.libreoffice.org/src/breakpad.zip +--2017-05-03 20:10:40-- http://dev-www.libreoffice.org/src/breakpad.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -86,36 +86,36 @@ Wird in »»./breakpad.zip«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 21% 236K 49s - 3072K ........ ........ ........ ........ ........ ........ 42% 240K 35s - 6144K ........ ........ ........ ........ ........ ........ 63% 240K 22s - 9216K ........ ........ ........ ........ ........ ........ 84% 239K 9s - 12288K ........ ........ ........ ........ ... 100% 216K=62s + 3072K ........ ........ ........ ........ ........ ........ 42% 199K 39s + 6144K ........ ........ ........ ........ ........ ........ 63% 240K 24s + 9216K ........ ........ ........ ........ ........ ........ 84% 237K 10s + 12288K ........ ........ ........ ........ ... 100% 228K=64s -2017-03-30 10:10:23 (235 KB/s) - »./breakpad.zip« gespeichert [14897049/14897049] +2017-05-03 20:11:45 (226 KB/s) - »./breakpad.zip« gespeichert [14897049/14897049] ---2017-03-30 10:10:23-- http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2017-05-03 20:11:45-- http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1997625 (1,9M) [application/zip] Wird in »»./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip«« gespeichert. - 0K ........ ........ ........ ...... 100% 239K=8,2s + 0K ........ ........ ........ ...... 100% 240K=8,1s -2017-03-30 10:10:31 (239 KB/s) - »./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip« gespeichert [1997625/1997625] +2017-05-03 20:11:54 (240 KB/s) - »./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip« gespeichert [1997625/1997625] ---2017-03-30 10:10:31-- http://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz +--2017-05-03 20:11:54-- http://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 782025 (764K) [application/x-gzip] Wird in »»./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz«« gespeichert. - 0K ........ ... 100% 239K=3,2s + 0K ........ ... 100% 222K=3,4s -2017-03-30 10:10:34 (239 KB/s) - »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert [782025/782025] +2017-05-03 20:11:57 (222 KB/s) - »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert [782025/782025] ---2017-03-30 10:10:34-- http://dev-www.libreoffice.org/src/23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz +--2017-05-03 20:11:57-- http://dev-www.libreoffice.org/src/23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -123,32 +123,32 @@ Wird in »»./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 8% 236K 2m16s - 3072K ........ ........ ........ ........ ........ ........ 17% 239K 2m2s - 6144K ........ ........ ........ ........ ........ ........ 26% 240K 1m49s - 9216K ........ ........ ........ ........ ........ ........ 34% 240K 96s - 12288K ........ ........ ........ ........ ........ ........ 43% 230K 84s - 15360K ........ ........ ........ ........ ........ ........ 52% 250K 70s - 18432K ........ ........ ........ ........ ........ ........ 61% 239K 57s - 21504K ........ ........ ........ ........ ........ ........ 69% 233K 45s - 24576K ........ ........ ........ ........ ........ ........ 78% 248K 32s - 27648K ........ ........ ........ ........ ........ ........ 87% 240K 19s - 30720K ........ ........ ........ ........ ........ ........ 96% 240K 6s - 33792K ........ ........ ..... 100% 230K=2m27s + 3072K ........ ........ ........ ........ ........ ........ 17% 221K 2m7s + 6144K ........ ........ ........ ........ ........ ........ 26% 227K 1m54s + 9216K ........ ........ ........ ........ ........ ........ 34% 245K 99s + 12288K ........ ........ ........ ........ ........ ........ 43% 235K 85s + 15360K ........ ........ ........ ........ ........ ........ 52% 240K 72s + 18432K ........ ........ ........ ........ ........ ........ 61% 240K 58s + 21504K ........ ........ ........ ........ ........ ........ 69% 231K 45s + 24576K ........ ........ ........ ........ ........ ........ 78% 240K 32s + 27648K ........ ........ ........ ........ ........ ........ 87% 231K 19s + 30720K ........ ........ ........ ........ ........ ........ 96% 234K 6s + 33792K ........ ........ ..... 100% 208K=2m31s -2017-03-30 10:13:02 (239 KB/s) - »./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz« gespeichert [36040596/36040596] +2017-05-03 20:14:28 (233 KB/s) - »./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz« gespeichert [36040596/36040596] ---2017-03-30 10:13:02-- http://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz +--2017-05-03 20:14:29-- http://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 878784 (858K) [application/x-gzip] Wird in »»./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz«« gespeichert. - 0K ........ ..... 100% 240K=3,6s + 0K ........ ..... 100% 220K=3,9s -2017-03-30 10:13:06 (240 KB/s) - »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert [878784/878784] +2017-05-03 20:14:33 (220 KB/s) - »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert [878784/878784] ---2017-03-30 10:13:06-- http://dev-www.libreoffice.org/src/libcdr-0.1.3.tar.bz2 +--2017-05-03 20:14:33-- http://dev-www.libreoffice.org/src/libcdr-0.1.3.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -157,31 +157,31 @@ 0K ........ ... 100% 239K=3,0s -2017-03-30 10:13:09 (239 KB/s) - »./libcdr-0.1.3.tar.bz2« gespeichert [731755/731755] +2017-05-03 20:14:36 (239 KB/s) - »./libcdr-0.1.3.tar.bz2« gespeichert [731755/731755] ---2017-03-30 10:13:09-- http://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2017-05-03 20:14:36-- http://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2241498 (2,1M) [application/x-gzip] Wird in »»./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ .. 100% 241K=9,1s + 0K ........ ........ ........ ........ .. 100% 234K=9,3s -2017-03-30 10:13:18 (241 KB/s) - »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert [2241498/2241498] +2017-05-03 20:14:45 (234 KB/s) - »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert [2241498/2241498] ---2017-03-30 10:13:18-- http://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz +--2017-05-03 20:14:45-- http://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 767701 (750K) [application/x-gzip] Wird in »»./libcmis-0.5.1.tar.gz«« gespeichert. - 0K ........ ... 100% 240K=3,1s + 0K ........ ... 100% 239K=3,1s -2017-03-30 10:13:21 (240 KB/s) - »./libcmis-0.5.1.tar.gz« gespeichert [767701/767701] +2017-05-03 20:14:49 (239 KB/s) - »./libcmis-0.5.1.tar.gz« gespeichert [767701/767701] ---2017-03-30 10:13:21-- http://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2017-05-03 20:14:49-- http://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -189,24 +189,24 @@ Wird in »»./CoinMP-1.7.6.tgz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 30% 236K 30s - 3072K ........ ........ ........ ........ ........ ........ 60% 239K 17s - 6144K ........ ........ ........ ........ ........ ........ 91% 238K 4s - 9216K ........ ..... 100% 239K=42s + 3072K ........ ........ ........ ........ ........ ........ 60% 233K 17s + 6144K ........ ........ ........ ........ ........ ........ 91% 225K 4s + 9216K ........ ..... 100% 311K=43s -2017-03-30 10:14:04 (238 KB/s) - »./CoinMP-1.7.6.tgz« gespeichert [10343849/10343849] +2017-05-03 20:15:31 (237 KB/s) - »./CoinMP-1.7.6.tgz« gespeichert [10343849/10343849] ---2017-03-30 10:14:04-- http://dev-www.libreoffice.org/src/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 +--2017-05-03 20:15:31-- http://dev-www.libreoffice.org/src/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 555291 (542K) [application/x-bzip] Wird in »»./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2«« gespeichert. - 0K ........ 100% 239K=2,3s + 0K ........ 100% 238K=2,3s -2017-03-30 10:14:07 (239 KB/s) - »./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2« gespeichert [555291/555291] +2017-05-03 20:15:34 (238 KB/s) - »./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2« gespeichert [555291/555291] ---2017-03-30 10:14:07-- http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz +--2017-05-03 20:15:34-- http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -215,32 +215,32 @@ 0K ........ ...... 100% 239K=3,9s -2017-03-30 10:14:11 (239 KB/s) - »./cppunit-1.13.2.tar.gz« gespeichert [953596/953596] +2017-05-03 20:15:38 (239 KB/s) - »./cppunit-1.13.2.tar.gz« gespeichert [953596/953596] ---2017-03-30 10:14:11-- http://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt +--2017-05-03 20:15:38-- http://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 49659 (48K) [text/plain] Wird in »»./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt«« gespeichert. - 0K 100% 235K=0,2s + 0K 100% 237K=0,2s -2017-03-30 10:14:11 (235 KB/s) - »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert [49659/49659] +2017-05-03 20:15:38 (237 KB/s) - »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert [49659/49659] ---2017-03-30 10:14:11-- http://dev-www.libreoffice.org/src/curl-7.52.1.tar.gz +--2017-05-03 20:15:38-- http://dev-www.libreoffice.org/src/curl-7.52.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3504621 (3,3M) [application/x-gzip] Wird in »»./curl-7.52.1.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 236K 1s - 3072K ..... 100% 240K=14s + 0K ........ ........ ........ ........ ........ ........ 89% 235K 1s + 3072K ..... 100% 228K=15s -2017-03-30 10:14:26 (236 KB/s) - »./curl-7.52.1.tar.gz« gespeichert [3504621/3504621] +2017-05-03 20:15:53 (235 KB/s) - »./curl-7.52.1.tar.gz« gespeichert [3504621/3504621] ---2017-03-30 10:14:26-- http://dev-www.libreoffice.org/src/libe-book-0.1.2.tar.bz2 +--2017-05-03 20:15:53-- http://dev-www.libreoffice.org/src/libe-book-0.1.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -249,20 +249,20 @@ 0K ....... 100% 239K=1,9s -2017-03-30 10:14:28 (239 KB/s) - »./libe-book-0.1.2.tar.bz2« gespeichert [465922/465922] +2017-05-03 20:15:56 (239 KB/s) - »./libe-book-0.1.2.tar.bz2« gespeichert [465922/465922] ---2017-03-30 10:14:28-- http://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2017-05-03 20:15:56-- http://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 463264 (452K) [application/x-gzip] Wird in »»./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz«« gespeichert. - 0K ....... 100% 238K=1,9s + 0K ....... 100% 239K=1,9s -2017-03-30 10:14:30 (238 KB/s) - »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert [463264/463264] +2017-05-03 20:15:58 (239 KB/s) - »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert [463264/463264] ---2017-03-30 10:14:30-- http://dev-www.libreoffice.org/src/libetonyek-0.1.6.tar.bz2 +--2017-05-03 20:15:58-- http://dev-www.libreoffice.org/src/libetonyek-0.1.6.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -271,9 +271,9 @@ 0K ........ ........ ........ . 100% 239K=6,9s -2017-03-30 10:14:37 (239 KB/s) - »./libetonyek-0.1.6.tar.bz2« gespeichert [1696455/1696455] +2017-05-03 20:16:05 (239 KB/s) - »./libetonyek-0.1.6.tar.bz2« gespeichert [1696455/1696455] ---2017-03-30 10:14:37-- http://dev-www.libreoffice.org/src/expat-2.2.0.tar.bz2 +--2017-05-03 20:16:05-- http://dev-www.libreoffice.org/src/expat-2.2.0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -282,9 +282,9 @@ 0K ...... 100% 239K=1,7s -2017-03-30 10:14:39 (239 KB/s) - »./expat-2.2.0.tar.bz2« gespeichert [414352/414352] +2017-05-03 20:16:07 (239 KB/s) - »./expat-2.2.0.tar.bz2« gespeichert [414352/414352] ---2017-03-30 10:14:39-- http://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 +--2017-05-03 20:16:07-- http://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -292,13 +292,13 @@ Wird in »»./Firebird-3.0.0.32483-0.tar.bz2«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 32% 236K 27s - 3072K ........ ........ ........ ........ ........ ........ 65% 239K 13s - 6144K ........ ........ ........ ........ ........ ........ 98% 233K 0s - 9216K . 100% 815K=39s + 3072K ........ ........ ........ ........ ........ ........ 65% 240K 13s + 6144K ........ ........ ........ ........ ........ ........ 98% 240K 0s + 9216K . 100% 237K=39s -2017-03-30 10:15:18 (238 KB/s) - »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert [9552809/9552809] +2017-05-03 20:16:46 (238 KB/s) - »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert [9552809/9552809] ---2017-03-30 10:15:18-- http://dev-www.libreoffice.org/src/77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz +--2017-05-03 20:16:46-- http://dev-www.libreoffice.org/src/77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -307,9 +307,9 @@ 0K ........ ........ ....... 100% 239K=6,3s -2017-03-30 10:15:25 (239 KB/s) - »./77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz« gespeichert [1548409/1548409] +2017-05-03 20:16:52 (239 KB/s) - »./77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz« gespeichert [1548409/1548409] ---2017-03-30 10:15:25-- http://dev-www.libreoffice.org/src/libfreehand-0.1.1.tar.bz2 +--2017-05-03 20:16:52-- http://dev-www.libreoffice.org/src/libfreehand-0.1.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -318,20 +318,20 @@ 0K ........ . 100% 239K=2,4s -2017-03-30 10:15:27 (239 KB/s) - »./libfreehand-0.1.1.tar.bz2« gespeichert [597212/597212] +2017-05-03 20:16:55 (239 KB/s) - »./libfreehand-0.1.1.tar.bz2« gespeichert [597212/597212] ---2017-03-30 10:15:27-- http://dev-www.libreoffice.org/src/dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2 +--2017-05-03 20:16:55-- http://dev-www.libreoffice.org/src/dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1492568 (1,4M) [application/x-bzip] Wird in »»./dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2«« gespeichert. - 0K ........ ........ ...... 100% 239K=6,1s + 0K ........ ........ ...... 100% 240K=6,1s -2017-03-30 10:15:33 (239 KB/s) - »./dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2« gespeichert [1492568/1492568] +2017-05-03 20:17:01 (240 KB/s) - »./dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2« gespeichert [1492568/1492568] ---2017-03-30 10:15:33-- http://dev-www.libreoffice.org/src/3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip +--2017-05-03 20:17:01-- http://dev-www.libreoffice.org/src/3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -340,9 +340,9 @@ 0K ........ ...... 100% 239K=3,8s -2017-03-30 10:15:37 (239 KB/s) - »./3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip« gespeichert [925313/925313] +2017-05-03 20:17:05 (239 KB/s) - »./3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip« gespeichert [925313/925313] ---2017-03-30 10:15:37-- http://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip +--2017-05-03 20:17:05-- http://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -350,11 +350,11 @@ Wird in »»./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 59% 236K 9s - 3072K ........ ........ ........ ........ 100% 239K=22s + 3072K ........ ........ ........ ........ 100% 240K=22s -2017-03-30 10:15:59 (237 KB/s) - »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert [5290295/5290295] +2017-05-03 20:17:27 (237 KB/s) - »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert [5290295/5290295] ---2017-03-30 10:15:59-- http://dev-www.libreoffice.org/src/3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz +--2017-05-03 20:17:27-- http://dev-www.libreoffice.org/src/3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -363,9 +363,9 @@ 0K .. 100% 238K=0,6s -2017-03-30 10:16:00 (238 KB/s) - »./3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz« gespeichert [155458/155458] +2017-05-03 20:17:28 (238 KB/s) - »./3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz« gespeichert [155458/155458] ---2017-03-30 10:16:00-- http://dev-www.libreoffice.org/src/harfbuzz-1.3.2.tar.bz2 +--2017-05-03 20:17:28-- http://dev-www.libreoffice.org/src/harfbuzz-1.3.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -374,72 +374,72 @@ 0K ........ ........ .... 100% 239K=5,5s -2017-03-30 10:16:06 (239 KB/s) - »./harfbuzz-1.3.2.tar.bz2« gespeichert [1357986/1357986] +2017-05-03 20:17:34 (239 KB/s) - »./harfbuzz-1.3.2.tar.bz2« gespeichert [1357986/1357986] ---2017-03-30 10:16:06-- http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2017-05-03 20:17:34-- http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3519470 (3,4M) [application/zip] Wird in »»./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 236K 2s - 3072K ..... 100% 240K=15s + 0K ........ ........ ........ ........ ........ ........ 89% 235K 2s + 3072K ..... 100% 239K=15s -2017-03-30 10:16:20 (236 KB/s) - »./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip« gespeichert [3519470/3519470] +2017-05-03 20:17:48 (236 KB/s) - »./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip« gespeichert [3519470/3519470] ---2017-03-30 10:16:20-- http://dev-www.libreoffice.org/src/047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz +--2017-05-03 20:17:48-- http://dev-www.libreoffice.org/src/047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 699377 (683K) [application/x-gzip] Wird in »»./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz«« gespeichert. - 0K ........ .. 100% 239K=2,9s + 0K ........ .. 100% 238K=2,9s -2017-03-30 10:16:23 (239 KB/s) - »./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz« gespeichert [699377/699377] +2017-05-03 20:17:51 (238 KB/s) - »./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz« gespeichert [699377/699377] ---2017-03-30 10:16:23-- http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2017-05-03 20:17:51-- http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 638369 (623K) [application/x-gzip] Wird in »»./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz«« gespeichert. - 0K ........ . 100% 239K=2,6s + 0K ........ . 100% 212K=2,9s -2017-03-30 10:16:26 (239 KB/s) - »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert [638369/638369] +2017-05-03 20:17:55 (212 KB/s) - »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert [638369/638369] ---2017-03-30 10:16:26-- http://dev-www.libreoffice.org/src/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz +--2017-05-03 20:17:55-- http://dev-www.libreoffice.org/src/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 23366443 (22M) [application/x-gzip] Wird in »»./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 13% 238K 83s - 3072K ........ ........ ........ ........ ........ ........ 26% 240K 70s - 6144K ........ ........ ........ ........ ........ ........ 40% 240K 57s - 9216K ........ ........ ........ ........ ........ ........ 53% 240K 44s - 12288K ........ ........ ........ ........ ........ ........ 67% 240K 31s - 15360K ........ ........ ........ ........ ........ ........ 80% 231K 18s - 18432K ........ ........ ........ ........ ........ ........ 94% 239K 6s - 21504K ........ ........ .... 100% 239K=96s + 0K ........ ........ ........ ........ ........ ........ 13% 236K 84s + 3072K ........ ........ ........ ........ ........ ........ 26% 227K 72s + 6144K ........ ........ ........ ........ ........ ........ 40% 233K 59s + 9216K ........ ........ ........ ........ ........ ........ 53% 239K 45s + 12288K ........ ........ ........ ........ ........ ........ 67% 234K 32s + 15360K ........ ........ ........ ........ ........ ........ 80% 234K 19s + 18432K ........ ........ ........ ........ ........ ........ 94% 212K 6s + 21504K ........ ........ .... 100% 318K=97s -2017-03-30 10:18:02 (238 KB/s) - »./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz« gespeichert [23366443/23366443] +2017-05-03 20:19:32 (234 KB/s) - »./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz« gespeichert [23366443/23366443] ---2017-03-30 10:18:02-- http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2017-05-03 20:19:32-- http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 743031 (726K) [application/zip] Wird in »»./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip«« gespeichert. - 0K ........ ... 100% 239K=3,0s + 0K ........ ... 100% 240K=3,0s -2017-03-30 10:18:05 (239 KB/s) - »./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip« gespeichert [743031/743031] +2017-05-03 20:19:35 (240 KB/s) - »./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip« gespeichert [743031/743031] ---2017-03-30 10:18:05-- http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2017-05-03 20:19:35-- http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -448,9 +448,9 @@ 0K ... 100% 239K=0,8s -2017-03-30 10:18:06 (239 KB/s) - »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert [207563/207563] +2017-05-03 20:19:36 (239 KB/s) - »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert [207563/207563] ---2017-03-30 10:18:06-- http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2017-05-03 20:19:36-- http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -459,9 +459,9 @@ 0K ...... 100% 239K=1,7s -2017-03-30 10:18:08 (239 KB/s) - »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert [427800/427800] +2017-05-03 20:19:38 (239 KB/s) - »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert [427800/427800] ---2017-03-30 10:18:08-- http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2017-05-03 20:19:38-- http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -471,20 +471,20 @@ 0K ........ ........ ........ ........ ........ ........ 54% 236K 11s 3072K ........ ........ ........ ........ ....... 100% 240K=24s -2017-03-30 10:18:32 (238 KB/s) - »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert [5750610/5750610] +2017-05-03 20:20:02 (237 KB/s) - »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert [5750610/5750610] ---2017-03-30 10:18:32-- http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2017-05-03 20:20:02-- http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1180582 (1,1M) [application/zip] Wird in »»./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip«« gespeichert. - 0K ........ ........ .. 100% 239K=4,8s + 0K ........ ........ .. 100% 240K=4,8s -2017-03-30 10:18:37 (239 KB/s) - »./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip« gespeichert [1180582/1180582] +2017-05-03 20:20:07 (240 KB/s) - »./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip« gespeichert [1180582/1180582] ---2017-03-30 10:18:37-- http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2017-05-03 20:20:07-- http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -493,20 +493,20 @@ 0K ........ ........ ..... 100% 240K=5,7s -2017-03-30 10:18:43 (240 KB/s) - »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert [1396007/1396007] +2017-05-03 20:20:13 (240 KB/s) - »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert [1396007/1396007] ---2017-03-30 10:18:43-- http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2017-05-03 20:20:13-- http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2938721 (2,8M) [application/zip] Wird in »»./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 235K=12s + 0K ........ ........ ........ ........ ........ .... 100% 236K=12s -2017-03-30 10:18:55 (235 KB/s) - »./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip« gespeichert [2938721/2938721] +2017-05-03 20:20:25 (236 KB/s) - »./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip« gespeichert [2938721/2938721] ---2017-03-30 10:18:55-- http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2017-05-03 20:20:25-- http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -515,31 +515,31 @@ 0K ........ ... 100% 239K=3,1s -2017-03-30 10:18:58 (239 KB/s) - »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert [762419/762419] +2017-05-03 20:20:28 (239 KB/s) - »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert [762419/762419] ---2017-03-30 10:18:58-- http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2017-05-03 20:20:28-- http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 211919 (207K) [application/zip] Wird in »»./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip«« gespeichert. - 0K ... 100% 238K=0,9s + 0K ... 100% 239K=0,9s -2017-03-30 10:18:59 (238 KB/s) - »./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip« gespeichert [211919/211919] +2017-05-03 20:20:29 (239 KB/s) - »./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip« gespeichert [211919/211919] ---2017-03-30 10:19:00-- http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2017-05-03 20:20:29-- http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2929311 (2,8M) [application/zip] Wird in »»./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 236K=12s + 0K ........ ........ ........ ........ ........ .... 100% 235K=12s -2017-03-30 10:19:12 (236 KB/s) - »./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip« gespeichert [2929311/2929311] +2017-05-03 20:20:42 (235 KB/s) - »./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip« gespeichert [2929311/2929311] ---2017-03-30 10:19:12-- http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2017-05-03 20:20:42-- http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -548,20 +548,20 @@ 0K .. 100% 239K=0,6s -2017-03-30 10:19:13 (239 KB/s) - »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert [153157/153157] +2017-05-03 20:20:43 (239 KB/s) - »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert [153157/153157] ---2017-03-30 10:19:13-- http://dev-www.libreoffice.org/src/jpegsrc.v9a.tar.gz +--2017-05-03 20:20:43-- http://dev-www.libreoffice.org/src/jpegsrc.v9a.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1000034 (977K) [application/x-gzip] Wird in »»./jpegsrc.v9a.tar.gz«« gespeichert. - 0K ........ ....... 100% 240K=4,1s + 0K ........ ....... 100% 239K=4,1s -2017-03-30 10:19:17 (240 KB/s) - »./jpegsrc.v9a.tar.gz« gespeichert [1000034/1000034] +2017-05-03 20:20:47 (239 KB/s) - »./jpegsrc.v9a.tar.gz« gespeichert [1000034/1000034] ---2017-03-30 10:19:17-- http://dev-www.libreoffice.org/src/libjpeg-turbo-1.4.2.tar.gz +--2017-05-03 20:20:47-- http://dev-www.libreoffice.org/src/libjpeg-turbo-1.4.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -570,9 +570,9 @@ 0K ........ ........ ....... 100% 240K=6,4s -2017-03-30 10:19:23 (240 KB/s) - »./libjpeg-turbo-1.4.2.tar.gz« gespeichert [1569306/1569306] +2017-05-03 20:20:53 (240 KB/s) - »./libjpeg-turbo-1.4.2.tar.gz« gespeichert [1569306/1569306] ---2017-03-30 10:19:23-- http://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 +--2017-05-03 20:20:53-- http://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -580,223 +580,223 @@ Wird in »»./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 8% 236K 2m22s - 3072K ........ ........ ........ ........ ........ ........ 16% 240K 2m8s - 6144K ........ ........ ........ ........ ........ ........ 25% 240K 1m55s - 9216K ........ ........ ........ ........ ........ ........ 33% 240K 1m42s - 12288K ........ ........ ........ ........ ........ ........ 41% 236K 89s + 3072K ........ ........ ........ ........ ........ ........ 16% 239K 2m8s + 6144K ........ ........ ........ ........ ........ ........ 25% 232K 1m56s + 9216K ........ ........ ........ ........ ........ ........ 33% 248K 1m42s + 12288K ........ ........ ........ ........ ........ ........ 41% 240K 89s 15360K ........ ........ ........ ........ ........ ........ 50% 240K 76s - 18432K ........ ........ ........ ........ ........ ........ 58% 239K 63s - 21504K ........ ........ ........ ........ ........ ........ 67% 239K 50s - 24576K ........ ........ ........ ........ ........ ........ 75% 239K 37s - 27648K ........ ........ ........ ........ ........ ........ 83% 235K 25s - 30720K ........ ........ ........ ........ ........ ........ 92% 150K 12s - 33792K ........ ........ ........ ........ ........ ... 100% 91,6K=3m0s + 18432K ........ ........ ........ ........ ........ ........ 58% 240K 63s + 21504K ........ ........ ........ ........ ........ ........ 67% 240K 50s + 24576K ........ ........ ........ ........ ........ ........ 75% 240K 37s + 27648K ........ ........ ........ ........ ........ ........ 83% 240K 25s + 30720K ........ ........ ........ ........ ........ ........ 92% 233K 12s + 33792K ........ ........ ........ ........ ........ ... 100% 247K=2m33s -2017-03-30 10:22:23 (203 KB/s) - »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert [37482428/37482428] +2017-05-03 20:23:28 (239 KB/s) - »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert [37482428/37482428] ---2017-03-30 10:22:24-- http://dev-www.libreoffice.org/src/lcms2-2.6.tar.gz +--2017-05-03 20:23:28-- http://dev-www.libreoffice.org/src/lcms2-2.6.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4583389 (4,4M) [application/x-gzip] Wird in »»./lcms2-2.6.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 68% 74,6K 19s - 3072K ........ ........ ..... 100% 145K=51s + 0K ........ ........ ........ ........ ........ ........ 68% 229K 6s + 3072K ........ ........ ..... 100% 250K=19s -2017-03-30 10:23:17 (87,9 KB/s) - »./lcms2-2.6.tar.gz« gespeichert [4583389/4583389] +2017-05-03 20:23:47 (235 KB/s) - »./lcms2-2.6.tar.gz« gespeichert [4583389/4583389] ---2017-03-30 10:23:17-- http://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip +--2017-05-03 20:23:47-- http://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 319388 (312K) [application/zip] Wird in »»./libatomic_ops-7_2d.zip«« gespeichert. - 0K .... 100% 123K=2,5s + 0K .... 100% 239K=1,3s -2017-03-30 10:23:20 (123 KB/s) - »./libatomic_ops-7_2d.zip« gespeichert [319388/319388] +2017-05-03 20:23:48 (239 KB/s) - »./libatomic_ops-7_2d.zip« gespeichert [319388/319388] ---2017-03-30 10:23:20-- http://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2017-05-03 20:23:48-- http://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 260288 (254K) [application/x-bzip] Wird in »»./libeot-0.01.tar.bz2«« gespeichert. - 0K ... 100% 102K=2,5s + 0K ... 100% 235K=1,1s -2017-03-30 10:23:23 (102 KB/s) - »./libeot-0.01.tar.bz2« gespeichert [260288/260288] +2017-05-03 20:23:50 (235 KB/s) - »./libeot-0.01.tar.bz2« gespeichert [260288/260288] ---2017-03-30 10:23:23-- http://dev-www.libreoffice.org/src/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2 +--2017-05-03 20:23:50-- http://dev-www.libreoffice.org/src/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1129140 (1,1M) [application/x-bzip] Wird in »»./10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2«« gespeichert. - 0K ........ ........ . 100% 149K=7,4s + 0K ........ ........ . 100% 239K=4,6s -2017-03-30 10:23:31 (149 KB/s) - »./10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2« gespeichert [1129140/1129140] +2017-05-03 20:23:54 (239 KB/s) - »./10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2« gespeichert [1129140/1129140] ---2017-03-30 10:23:31-- http://dev-www.libreoffice.org/src/language-subtag-registry-2017-01-20.tar.bz2 +--2017-05-03 20:23:54-- http://dev-www.libreoffice.org/src/language-subtag-registry-2017-01-20.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 74068 (72K) [application/x-bzip] Wird in »»./language-subtag-registry-2017-01-20.tar.bz2«« gespeichert. - 0K . 100% 106K=0,7s + 0K . 100% 238K=0,3s -2017-03-30 10:23:32 (106 KB/s) - »./language-subtag-registry-2017-01-20.tar.bz2« gespeichert [74068/74068] +2017-05-03 20:23:55 (238 KB/s) - »./language-subtag-registry-2017-01-20.tar.bz2« gespeichert [74068/74068] ---2017-03-30 10:23:32-- http://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 +--2017-05-03 20:23:55-- http://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 766080 (748K) [application/x-bzip] Wird in »»./liblangtag-0.6.2.tar.bz2«« gespeichert. - 0K ........ ... 100% 117K=6,4s + 0K ........ ... 100% 212K=3,5s -2017-03-30 10:23:38 (117 KB/s) - »./liblangtag-0.6.2.tar.bz2« gespeichert [766080/766080] +2017-05-03 20:23:59 (212 KB/s) - »./liblangtag-0.6.2.tar.bz2« gespeichert [766080/766080] ---2017-03-30 10:23:38-- http://dev-www.libreoffice.org/src/libpng-1.6.28.tar.gz +--2017-05-03 20:23:59-- http://dev-www.libreoffice.org/src/libpng-1.6.28.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1483231 (1,4M) [application/x-gzip] Wird in »»./libpng-1.6.28.tar.gz«« gespeichert. - 0K ........ ........ ...... 100% 113K=13s + 0K ........ ........ ...... 100% 239K=6,1s -2017-03-30 10:23:52 (113 KB/s) - »./libpng-1.6.28.tar.gz« gespeichert [1483231/1483231] +2017-05-03 20:24:05 (239 KB/s) - »./libpng-1.6.28.tar.gz« gespeichert [1483231/1483231] ---2017-03-30 10:23:52-- http://dev-www.libreoffice.org/src/ltm-1.0.zip +--2017-05-03 20:24:05-- http://dev-www.libreoffice.org/src/ltm-1.0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2542693 (2,4M) [application/zip] Wird in »»./ltm-1.0.zip«« gespeichert. - 0K ........ ........ ........ ........ ...... 100% 132K=19s + 0K ........ ........ ........ ........ ...... 100% 235K=11s -2017-03-30 10:24:11 (132 KB/s) - »./ltm-1.0.zip« gespeichert [2542693/2542693] +2017-05-03 20:24:16 (235 KB/s) - »./ltm-1.0.zip« gespeichert [2542693/2542693] ---2017-03-30 10:24:11-- http://dev-www.libreoffice.org/src/ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz +--2017-05-03 20:24:16-- http://dev-www.libreoffice.org/src/ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5374830 (5,1M) [application/x-gzip] Wird in »»./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 58% 139K 16s - 3072K ........ ........ ........ ........ .. 100% 114K=41s + 0K ........ ........ ........ ........ ........ ........ 58% 232K 9s + 3072K ........ ........ ........ ........ .. 100% 234K=23s -2017-03-30 10:24:52 (128 KB/s) - »./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz« gespeichert [5374830/5374830] +2017-05-03 20:24:38 (233 KB/s) - »./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz« gespeichert [5374830/5374830] ---2017-03-30 10:24:52-- http://dev-www.libreoffice.org/src/86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz +--2017-05-03 20:24:38-- http://dev-www.libreoffice.org/src/86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1794694 (1,7M) [application/x-gzip] Wird in »»./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz«« gespeichert. - 0K ........ ........ ........ ... 100% 108K=16s + 0K ........ ........ ........ ... 100% 232K=7,6s -2017-03-30 10:25:09 (108 KB/s) - »./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz« gespeichert [1794694/1794694] +2017-05-03 20:24:46 (232 KB/s) - »./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz« gespeichert [1794694/1794694] ---2017-03-30 10:25:09-- http://dev-www.libreoffice.org/src/a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz +--2017-05-03 20:24:46-- http://dev-www.libreoffice.org/src/a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3428524 (3,3M) [application/x-gzip] Wird in »»./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 91% 116K 2s - 3072K .... 100% 177K=28s + 0K ........ ........ ........ ........ ........ ........ 91% 235K 1s + 3072K .... 100% 240K=14s -2017-03-30 10:25:37 (119 KB/s) - »./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz« gespeichert [3428524/3428524] +2017-05-03 20:25:00 (236 KB/s) - »./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz« gespeichert [3428524/3428524] ---2017-03-30 10:25:37-- http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2017-05-03 20:25:00-- http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 769268 (751K) [application/x-gzip] Wird in »»./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz«« gespeichert. - 0K ........ ... 100% 98,5K=7,6s + 0K ........ ... 100% 239K=3,1s -2017-03-30 10:25:45 (98,5 KB/s) - »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert [769268/769268] +2017-05-03 20:25:04 (239 KB/s) - »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert [769268/769268] ---2017-03-30 10:25:45-- http://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz +--2017-05-03 20:25:04-- http://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1923436 (1,8M) [application/x-gzip] Wird in »»./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz«« gespeichert. - 0K ........ ........ ........ ..... 100% 108K=17s + 0K ........ ........ ........ ..... 100% 239K=7,8s -2017-03-30 10:26:03 (108 KB/s) - »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert [1923436/1923436] +2017-05-03 20:25:12 (239 KB/s) - »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert [1923436/1923436] ---2017-03-30 10:26:03-- http://dev-www.libreoffice.org/src/mdds-1.2.2.tar.bz2 +--2017-05-03 20:25:12-- http://dev-www.libreoffice.org/src/mdds-1.2.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 286185 (279K) [application/x-bzip] Wird in »»./mdds-1.2.2.tar.bz2«« gespeichert. - 0K .... 100% 110K=2,5s + 0K .... 100% 240K=1,2s -2017-03-30 10:26:06 (110 KB/s) - »./mdds-1.2.2.tar.bz2« gespeichert [286185/286185] +2017-05-03 20:25:13 (240 KB/s) - »./mdds-1.2.2.tar.bz2« gespeichert [286185/286185] ---2017-03-30 10:26:06-- http://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz +--2017-05-03 20:25:13-- http://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2157791 (2,1M) [application/x-gzip] Wird in »»./mDNSResponder-576.30.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ 100% 118K=18s + 0K ........ ........ ........ ........ 100% 239K=8,8s -2017-03-30 10:26:24 (118 KB/s) - »./mDNSResponder-576.30.4.tar.gz« gespeichert [2157791/2157791] +2017-05-03 20:25:22 (239 KB/s) - »./mDNSResponder-576.30.4.tar.gz« gespeichert [2157791/2157791] ---2017-03-30 10:26:24-- http://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2017-05-03 20:25:22-- http://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 112756 (110K) [application/x-gzip] Wird in »»./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz«« gespeichert. - 0K . 100% 144K=0,8s + 0K . 100% 238K=0,5s -2017-03-30 10:26:25 (144 KB/s) - »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert [112756/112756] +2017-05-03 20:25:23 (238 KB/s) - »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert [112756/112756] ---2017-03-30 10:26:25-- http://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2017-05-03 20:25:23-- http://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1169488 (1,1M) [application/x-gzip] Wird in »»./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz«« gespeichert. - 0K ........ ........ . 100% 129K=8,9s + 0K ........ ........ . 100% 239K=4,8s -2017-03-30 10:26:34 (129 KB/s) - »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert [1169488/1169488] +2017-05-03 20:25:28 (239 KB/s) - »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert [1169488/1169488] ---2017-03-30 10:26:34-- http://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2017-05-03 20:25:28-- http://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5522795 (5,3M) [application/zip] Wird in »»./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 56% 135K 17s - 3072K ........ ........ ........ ........ .... 100% 187K=35s + 0K ........ ........ ........ ........ ........ ........ 56% 236K 10s + 3072K ........ ........ ........ ........ .... 100% 239K=23s -2017-03-30 10:27:10 (154 KB/s) - »./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip« gespeichert [5522795/5522795] +2017-05-03 20:25:50 (237 KB/s) - »./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip« gespeichert [5522795/5522795] ---2017-03-30 10:27:10-- http://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2017-05-03 20:25:50-- http://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -805,20 +805,20 @@ 0K ........ .... 100% 239K=3,3s -2017-03-30 10:27:13 (239 KB/s) - »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert [811606/811606] +2017-05-03 20:25:54 (239 KB/s) - »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert [811606/811606] ---2017-03-30 10:27:13-- http://dev-www.libreoffice.org/src/134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz +--2017-05-03 20:25:54-- http://dev-www.libreoffice.org/src/134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1333593 (1,3M) [application/x-gzip] Wird in »»./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz«« gespeichert. - 0K ........ ........ .... 100% 238K=5,5s + 0K ........ ........ .... 100% 226K=5,8s -2017-03-30 10:27:19 (238 KB/s) - »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert [1333593/1333593] +2017-05-03 20:26:00 (226 KB/s) - »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert [1333593/1333593] ---2017-03-30 10:27:19-- http://dev-www.libreoffice.org/src/5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz +--2017-05-03 20:26:00-- http://dev-www.libreoffice.org/src/5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -827,22 +827,22 @@ 0K ........ ........ ........ ........ .. 100% 239K=9,3s -2017-03-30 10:27:28 (239 KB/s) - »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert [2285857/2285857] +2017-05-03 20:26:10 (239 KB/s) - »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert [2285857/2285857] ---2017-03-30 10:27:28-- http://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2017-05-03 20:26:10-- http://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6651982 (6,3M) [application/zip] Wird in »»./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 236K 15s - 3072K ........ ........ ........ ........ ........ ........ 94% 239K 1s - 6144K ..... 100% 240K=27s + 0K ........ ........ ........ ........ ........ ........ 47% 228K 15s + 3072K ........ ........ ........ ........ ........ ........ 94% 240K 2s + 6144K ..... 100% 240K=28s -2017-03-30 10:27:56 (238 KB/s) - »./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip« gespeichert [6651982/6651982] +2017-05-03 20:26:38 (234 KB/s) - »./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip« gespeichert [6651982/6651982] ---2017-03-30 10:27:56-- http://dev-www.libreoffice.org/src/7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz +--2017-05-03 20:26:38-- http://dev-www.libreoffice.org/src/7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -851,9 +851,9 @@ 0K ....... 100% 239K=1,9s -2017-03-30 10:27:58 (239 KB/s) - »./7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz« gespeichert [466545/466545] +2017-05-03 20:26:40 (239 KB/s) - »./7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz« gespeichert [466545/466545] ---2017-03-30 10:27:58-- http://dev-www.libreoffice.org/src/c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz +--2017-05-03 20:26:40-- http://dev-www.libreoffice.org/src/c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -862,9 +862,9 @@ 0K ........ .. 100% 239K=2,9s -2017-03-30 10:28:01 (239 KB/s) - »./c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz« gespeichert [714196/714196] +2017-05-03 20:26:43 (239 KB/s) - »./c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz« gespeichert [714196/714196] ---2017-03-30 10:28:01-- http://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz +--2017-05-03 20:26:43-- http://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -873,9 +873,9 @@ 0K ........ ........ .... 100% 239K=5,5s -2017-03-30 10:28:07 (239 KB/s) - »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert [1338551/1338551] +2017-05-03 20:26:48 (239 KB/s) - »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert [1338551/1338551] ---2017-03-30 10:28:07-- http://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2017-05-03 20:26:48-- http://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -884,65 +884,65 @@ 0K ........ ........ 100% 239K=4,5s -2017-03-30 10:28:12 (239 KB/s) - »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert [1098827/1098827] +2017-05-03 20:26:53 (239 KB/s) - »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert [1098827/1098827] ---2017-03-30 10:28:12-- http://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +--2017-05-03 20:26:53-- http://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2961759 (2,8M) [application/x-gzip] Wird in »»./EmojiOneColor-SVGinOT-1.3.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 174K=17s + 0K ........ ........ ........ ........ ........ ..... 100% 236K=12s -2017-03-30 10:28:28 (174 KB/s) - »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert [2961759/2961759] +2017-05-03 20:27:05 (236 KB/s) - »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert [2961759/2961759] ---2017-03-30 10:28:28-- http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 +--2017-05-03 20:27:06-- http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 429360 (419K) [application/x-bzip] Wird in »»./libmspub-0.1.2.tar.bz2«« gespeichert. - 0K ...... 100% 98,0K=4,3s + 0K ...... 100% 239K=1,8s -2017-03-30 10:28:33 (98,0 KB/s) - »./libmspub-0.1.2.tar.bz2« gespeichert [429360/429360] +2017-05-03 20:27:07 (239 KB/s) - »./libmspub-0.1.2.tar.bz2« gespeichert [429360/429360] ---2017-03-30 10:28:33-- http://dev-www.libreoffice.org/src/libmwaw-0.3.9.tar.bz2 +--2017-05-03 20:27:07-- http://dev-www.libreoffice.org/src/libmwaw-0.3.9.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1463662 (1,4M) [application/x-bzip] Wird in »»./libmwaw-0.3.9.tar.bz2«« gespeichert. - 0K ........ ........ ...... 100% 119K=12s + 0K ........ ........ ...... 100% 240K=6,0s -2017-03-30 10:28:46 (119 KB/s) - »./libmwaw-0.3.9.tar.bz2« gespeichert [1463662/1463662] +2017-05-03 20:27:14 (240 KB/s) - »./libmwaw-0.3.9.tar.bz2« gespeichert [1463662/1463662] ---2017-03-30 10:28:46-- http://dev-www.libreoffice.org/src/7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz +--2017-05-03 20:27:14-- http://dev-www.libreoffice.org/src/7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 506106 (494K) [application/x-gzip] Wird in »»./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz«« gespeichert. - 0K ....... 100% 102K=4,9s + 0K ....... 100% 239K=2,1s -2017-03-30 10:28:51 (102 KB/s) - »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert [506106/506106] +2017-05-03 20:27:16 (239 KB/s) - »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert [506106/506106] ---2017-03-30 10:28:51-- http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +--2017-05-03 20:27:16-- http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4910303 (4,7M) [application/x-gzip] Wird in »»./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 64% 207K 8s - 3072K ........ ........ ........ .. 100% 240K=22s + 0K ........ ........ ........ ........ ........ ........ 64% 220K 8s + 3072K ........ ........ ........ .. 100% 223K=22s -2017-03-30 10:29:14 (217 KB/s) - »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert [4910303/4910303] +2017-05-03 20:27:38 (221 KB/s) - »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert [4910303/4910303] ---2017-03-30 10:29:14-- http://dev-www.libreoffice.org/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz +--2017-05-03 20:27:38-- http://dev-www.libreoffice.org/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -951,33 +951,33 @@ 0K ........ ..... 100% 239K=3,7s -2017-03-30 10:29:18 (239 KB/s) - »./231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz« gespeichert [911414/911414] +2017-05-03 20:27:41 (239 KB/s) - »./231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz« gespeichert [911414/911414] ---2017-03-30 10:29:18-- http://dev-www.libreoffice.org/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz +--2017-05-03 20:27:42-- http://dev-www.libreoffice.org/src/nss-3.29.5-with-nspr-4.13.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 8769784 (8,4M) [application/x-gzip] -Wird in »»./0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz«« gespeichert. +Länge: 8856992 (8,4M) [application/x-gzip] +Wird in »»./nss-3.29.5-with-nspr-4.13.1.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 35% 235K 23s - 3072K ........ ........ ........ ........ ........ ........ 71% 239K 10s - 6144K ........ ........ ........ ........ ..... 100% 240K=36s + 0K ........ ........ ........ ........ ........ ........ 35% 205K 27s + 3072K ........ ........ ........ ........ ........ ........ 71% 236K 11s + 6144K ........ ........ ........ ........ ....... 100% 236K=39s -2017-03-30 10:29:54 (238 KB/s) - »./0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz« gespeichert [8769784/8769784] +2017-05-03 20:28:20 (224 KB/s) - »./nss-3.29.5-with-nspr-4.13.1.tar.gz« gespeichert [8856992/8856992] ---2017-03-30 10:29:54-- http://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 +--2017-05-03 20:28:20-- http://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 446705 (436K) [application/x-bzip] Wird in »»./libodfgen-0.1.6.tar.bz2«« gespeichert. - 0K ...... 100% 239K=1,8s + 0K ...... 100% 211K=2,1s -2017-03-30 10:29:56 (239 KB/s) - »./libodfgen-0.1.6.tar.bz2« gespeichert [446705/446705] +2017-05-03 20:28:26 (211 KB/s) - »./libodfgen-0.1.6.tar.bz2« gespeichert [446705/446705] ---2017-03-30 10:29:56-- http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 +--2017-05-03 20:28:26-- http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -986,36 +986,36 @@ 0K ........ ........ ........ ........ ........ ........ 32% 236K 27s 3072K ........ ........ ........ ........ ........ ........ 64% 239K 14s - 6144K ........ ........ ........ ........ ........ ........ 97% 239K 1s - 9216K ... 100% 240K=40s + 6144K ........ ........ ........ ........ ........ ........ 97% 235K 1s + 9216K ... 100% 307K=40s -2017-03-30 10:30:36 (238 KB/s) - »./OpenCOLLADA-master-6509aa13af.tar.bz2« gespeichert [9691335/9691335] +2017-05-03 20:29:05 (238 KB/s) - »./OpenCOLLADA-master-6509aa13af.tar.bz2« gespeichert [9691335/9691335] ---2017-03-30 10:30:36-- http://dev-www.libreoffice.org/src/openldap-2.4.44.tgz +--2017-05-03 20:29:05-- http://dev-www.libreoffice.org/src/openldap-2.4.44.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5658830 (5,4M) [application/x-gzip] Wird in »»./openldap-2.4.44.tgz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 55% 217K 11s - 3072K ........ ........ ........ ........ ...... 100% 272K=23s + 0K ........ ........ ........ ........ ........ ........ 55% 234K 10s + 3072K ........ ........ ........ ........ ...... 100% 247K=23s -2017-03-30 10:30:59 (238 KB/s) - »./openldap-2.4.44.tgz« gespeichert [5658830/5658830] +2017-05-03 20:29:29 (239 KB/s) - »./openldap-2.4.44.tgz« gespeichert [5658830/5658830] ---2017-03-30 10:30:59-- http://dev-www.libreoffice.org/src/openssl-1.0.2h.tar.gz +--2017-05-03 20:29:29-- http://dev-www.libreoffice.org/src/openssl-1.0.2h.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5274412 (5,0M) [application/x-gzip] Wird in »»./openssl-1.0.2h.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 59% 242K 9s - 3072K ........ ........ ........ ........ 100% 240K=21s + 0K ........ ........ ........ ........ ........ ........ 59% 236K 9s + 3072K ........ ........ ........ ........ 100% 239K=22s -2017-03-30 10:31:21 (241 KB/s) - »./openssl-1.0.2h.tar.gz« gespeichert [5274412/5274412] +2017-05-03 20:29:51 (237 KB/s) - »./openssl-1.0.2h.tar.gz« gespeichert [5274412/5274412] ---2017-03-30 10:31:21-- http://dev-www.libreoffice.org/src/liborcus-0.12.1.tar.gz +--2017-05-03 20:29:51-- http://dev-www.libreoffice.org/src/liborcus-0.12.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1024,9 +1024,9 @@ 0K ........ ........ ........ ........ 100% 239K=8,6s -2017-03-30 10:31:30 (239 KB/s) - »./liborcus-0.12.1.tar.gz« gespeichert [2117890/2117890] +2017-05-03 20:29:59 (239 KB/s) - »./liborcus-0.12.1.tar.gz« gespeichert [2117890/2117890] ---2017-03-30 10:31:30-- http://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz +--2017-05-03 20:29:59-- http://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1035,9 +1035,9 @@ 0K ........ ... 100% 240K=3,1s -2017-03-30 10:31:33 (240 KB/s) - »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert [760676/760676] +2017-05-03 20:30:03 (240 KB/s) - »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert [760676/760676] ---2017-03-30 10:31:33-- http://dev-www.libreoffice.org/src/libpagemaker-0.0.3.tar.bz2 +--2017-05-03 20:30:03-- http://dev-www.libreoffice.org/src/libpagemaker-0.0.3.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1046,9 +1046,9 @@ 0K ..... 100% 239K=1,5s -2017-03-30 10:31:35 (239 KB/s) - »./libpagemaker-0.0.3.tar.bz2« gespeichert [376953/376953] +2017-05-03 20:30:04 (239 KB/s) - »./libpagemaker-0.0.3.tar.bz2« gespeichert [376953/376953] ---2017-03-30 10:31:35-- http://dev-www.libreoffice.org/src/poppler-0.49.0.tar.xz +--2017-05-03 20:30:04-- http://dev-www.libreoffice.org/src/poppler-0.49.0.tar.xz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1057,53 +1057,53 @@ 0K ........ ........ ........ . 100% 240K=6,9s -2017-03-30 10:31:42 (240 KB/s) - »./poppler-0.49.0.tar.xz« gespeichert [1685860/1685860] +2017-05-03 20:30:11 (240 KB/s) - »./poppler-0.49.0.tar.xz« gespeichert [1685860/1685860] ---2017-03-30 10:31:42-- http://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 +--2017-05-03 20:30:11-- http://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 16113737 (15M) [application/x-bzip] Wird in »»./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 19% 236K 54s - 3072K ........ ........ ........ ........ ........ ........ 39% 239K 40s - 6144K ........ ........ ........ ........ ........ ........ 58% 240K 27s - 9216K ........ ........ ........ ........ ........ ........ 78% 239K 14s - 12288K ........ ........ ........ ........ ........ ........ 97% 233K 2s - 15360K ..... 100% 319K=66s + 0K ........ ........ ........ ........ ........ ........ 19% 228K 56s + 3072K ........ ........ ........ ........ ........ ........ 39% 240K 41s + 6144K ........ ........ ........ ........ ........ ........ 58% 234K 28s + 9216K ........ ........ ........ ........ ........ ........ 78% 238K 15s + 12288K ........ ........ ........ ........ ........ ........ 97% 234K 2s + 15360K ..... 100% 240K=67s -2017-03-30 10:32:48 (239 KB/s) - »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert [16113737/16113737] +2017-05-03 20:31:18 (235 KB/s) - »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert [16113737/16113737] ---2017-03-30 10:32:48-- http://dev-www.libreoffice.org/src/Python-3.5.3.tgz +--2017-05-03 20:31:19-- http://dev-www.libreoffice.org/src/Python-3.5.3.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 20656090 (20M) [application/x-gzip] Wird in »»./Python-3.5.3.tgz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 15% 236K 73s - 3072K ........ ........ ........ ........ ........ ........ 30% 237K 59s - 6144K ........ ........ ........ ........ ........ ........ 45% 242K 46s - 9216K ........ ........ ........ ........ ........ ........ 60% 239K 33s + 0K ........ ........ ........ ........ ........ ........ 15% 236K 72s + 3072K ........ ........ ........ ........ ........ ........ 30% 240K 59s + 6144K ........ ........ ........ ........ ........ ........ 45% 240K 46s + 9216K ........ ........ ........ ........ ........ ........ 60% 235K 33s 12288K ........ ........ ........ ........ ........ ........ 76% 240K 20s - 15360K ........ ........ ........ ........ ........ ........ 91% 239K 7s - 18432K ........ ........ ........ ... 100% 240K=84s + 15360K ........ ........ ........ ........ ........ ........ 91% 237K 7s + 18432K ........ ........ ........ ... 100% 240K=85s -2017-03-30 10:34:12 (239 KB/s) - »./Python-3.5.3.tgz« gespeichert [20656090/20656090] +2017-05-03 20:32:44 (238 KB/s) - »./Python-3.5.3.tgz« gespeichert [20656090/20656090] ---2017-03-30 10:34:12-- http://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2017-05-03 20:32:44-- http://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1886657 (1,8M) [application/x-gzip] Wird in »»./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz«« gespeichert. - 0K ........ ........ ........ .... 100% 240K=7,7s + 0K ........ ........ ........ .... 100% 230K=8,0s -2017-03-30 10:34:20 (240 KB/s) - »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert [1886657/1886657] +2017-05-03 20:32:52 (230 KB/s) - »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert [1886657/1886657] ---2017-03-30 10:34:20-- http://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2017-05-03 20:32:52-- http://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1112,20 +1112,20 @@ 0K ........ ........ ........ 100% 240K=6,5s -2017-03-30 10:34:27 (240 KB/s) - »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert [1595647/1595647] +2017-05-03 20:32:59 (240 KB/s) - »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert [1595647/1595647] ---2017-03-30 10:34:27-- http://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2017-05-03 20:32:59-- http://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1621566 (1,5M) [application/x-gzip] Wird in »»./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz«« gespeichert. - 0K ........ ........ ........ 100% 239K=6,6s + 0K ........ ........ ........ 100% 240K=6,6s -2017-03-30 10:34:34 (239 KB/s) - »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert [1621566/1621566] +2017-05-03 20:33:06 (240 KB/s) - »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert [1621566/1621566] ---2017-03-30 10:34:34-- http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2017-05-03 20:33:06-- http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1134,9 +1134,9 @@ 0K ........ 100% 239K=2,2s -2017-03-30 10:34:36 (239 KB/s) - »./librevenge-0.0.4.tar.bz2« gespeichert [529833/529833] +2017-05-03 20:33:08 (239 KB/s) - »./librevenge-0.0.4.tar.bz2« gespeichert [529833/529833] ---2017-03-30 10:34:36-- http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2017-05-03 20:33:08-- http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1145,42 +1145,42 @@ 0K ........ ........ ....... 100% 240K=6,2s -2017-03-30 10:34:42 (240 KB/s) - »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert [1521926/1521926] +2017-05-03 20:33:15 (240 KB/s) - »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert [1521926/1521926] ---2017-03-30 10:34:42-- http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2017-05-03 20:33:15-- http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9796 (9,6K) [application/zip] Wird in »»./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip«« gespeichert. - 0K 100% 274K=0,03s + 0K 100% 270K=0,04s -2017-03-30 10:34:43 (274 KB/s) - »./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip« gespeichert [9796/9796] +2017-05-03 20:33:15 (270 KB/s) - »./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip« gespeichert [9796/9796] ---2017-03-30 10:34:43-- http://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 +--2017-05-03 20:33:15-- http://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 190464 (186K) [application/x-bzip] Wird in »»./serf-1.2.1.tar.bz2«« gespeichert. - 0K .. 100% 239K=0,8s + 0K .. 100% 236K=0,8s -2017-03-30 10:34:44 (239 KB/s) - »./serf-1.2.1.tar.bz2« gespeichert [190464/190464] +2017-05-03 20:33:16 (236 KB/s) - »./serf-1.2.1.tar.bz2« gespeichert [190464/190464] ---2017-03-30 10:34:44-- http://dev-www.libreoffice.org/src/libstaroffice-0.0.2.tar.bz2 +--2017-05-03 20:33:16-- http://dev-www.libreoffice.org/src/libstaroffice-0.0.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 886950 (866K) [application/x-bzip] Wird in »»./libstaroffice-0.0.2.tar.bz2«« gespeichert. - 0K ........ ..... 100% 239K=3,6s + 0K ........ ..... 100% 227K=3,8s -2017-03-30 10:34:47 (239 KB/s) - »./libstaroffice-0.0.2.tar.bz2« gespeichert [886950/886950] +2017-05-03 20:33:20 (227 KB/s) - »./libstaroffice-0.0.2.tar.bz2« gespeichert [886950/886950] ---2017-03-30 10:34:47-- http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +--2017-05-03 20:33:20-- http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1189,20 +1189,20 @@ 0K . 100% 238K=0,4s -2017-03-30 10:34:48 (238 KB/s) - »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert [96939/96939] +2017-05-03 20:33:20 (238 KB/s) - »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert [96939/96939] ---2017-03-30 10:34:48-- http://dev-www.libreoffice.org/src/libvisio-0.1.5.tar.bz2 +--2017-05-03 20:33:20-- http://dev-www.libreoffice.org/src/libvisio-0.1.5.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 602628 (589K) [application/x-bzip] Wird in »»./libvisio-0.1.5.tar.bz2«« gespeichert. - 0K ........ . 100% 239K=2,5s + 0K ........ . 100% 240K=2,5s -2017-03-30 10:34:51 (239 KB/s) - »./libvisio-0.1.5.tar.bz2« gespeichert [602628/602628] +2017-05-03 20:33:23 (240 KB/s) - »./libvisio-0.1.5.tar.bz2« gespeichert [602628/602628] ---2017-03-30 10:34:51-- http://dev-www.libreoffice.org/src/libwpd-0.10.1.tar.bz2 +--2017-05-03 20:33:23-- http://dev-www.libreoffice.org/src/libwpd-0.10.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1211,9 +1211,9 @@ 0K ........ .. 100% 240K=2,7s -2017-03-30 10:34:54 (240 KB/s) - »./libwpd-0.10.1.tar.bz2« gespeichert [656856/656856] +2017-05-03 20:33:26 (240 KB/s) - »./libwpd-0.10.1.tar.bz2« gespeichert [656856/656856] ---2017-03-30 10:34:54-- http://dev-www.libreoffice.org/src/libwpg-0.3.1.tar.bz2 +--2017-05-03 20:33:26-- http://dev-www.libreoffice.org/src/libwpg-0.3.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1222,9 +1222,9 @@ 0K ...... 100% 239K=1,6s -2017-03-30 10:34:56 (239 KB/s) - »./libwpg-0.3.1.tar.bz2« gespeichert [397128/397128] +2017-05-03 20:33:27 (239 KB/s) - »./libwpg-0.3.1.tar.bz2« gespeichert [397128/397128] ---2017-03-30 10:34:56-- http://dev-www.libreoffice.org/src/libwps-0.4.4.tar.bz2 +--2017-05-03 20:33:27-- http://dev-www.libreoffice.org/src/libwps-0.4.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1233,20 +1233,20 @@ 0K ........ ... 100% 239K=3,1s -2017-03-30 10:34:59 (239 KB/s) - »./libwps-0.4.4.tar.bz2« gespeichert [749717/749717] +2017-05-03 20:33:31 (239 KB/s) - »./libwps-0.4.4.tar.bz2« gespeichert [749717/749717] ---2017-03-30 10:34:59-- http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2017-05-03 20:33:31-- http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 23150 (23K) [application/zip] Wird in »»./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip«« gespeichert. - 0K 100% 232K=0,1s + 0K 100% 236K=0,1s -2017-03-30 10:34:59 (232 KB/s) - »./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip« gespeichert [23150/23150] +2017-05-03 20:33:31 (236 KB/s) - »./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip« gespeichert [23150/23150] ---2017-03-30 10:34:59-- http://dev-www.libreoffice.org/src/zlib-1.2.8.tar.gz +--2017-05-03 20:33:31-- http://dev-www.libreoffice.org/src/zlib-1.2.8.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1255,76 +1255,76 @@ 0K ........ 100% 239K=2,3s -2017-03-30 10:35:02 (239 KB/s) - »./zlib-1.2.8.tar.gz« gespeichert [571091/571091] +2017-05-03 20:33:33 (239 KB/s) - »./zlib-1.2.8.tar.gz« gespeichert [571091/571091] ---2017-03-30 10:35:02-- http://dev-www.libreoffice.org/src/libzmf-0.0.1.tar.bz2 +--2017-05-03 20:33:33-- http://dev-www.libreoffice.org/src/libzmf-0.0.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 404766 (395K) [application/x-bzip] Wird in »»./libzmf-0.0.1.tar.bz2«« gespeichert. - 0K ...... 100% 237K=1,7s + 0K ...... 100% 239K=1,7s -2017-03-30 10:35:03 (237 KB/s) - »./libzmf-0.0.1.tar.bz2« gespeichert [404766/404766] +2017-05-03 20:33:35 (239 KB/s) - »./libzmf-0.0.1.tar.bz2« gespeichert [404766/404766] ---2017-03-30 10:35:03-- http://dev-www.libreoffice.org/extern/13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll +--2017-05-03 20:33:35-- http://dev-www.libreoffice.org/extern/13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 163088 (159K) [text/plain] Wird in »»./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll«« gespeichert. - 0K .. 100% 238K=0,7s + 0K .. 100% 239K=0,7s -2017-03-30 10:35:04 (238 KB/s) - »./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll« gespeichert [163088/163088] +2017-05-03 20:33:36 (239 KB/s) - »./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll« gespeichert [163088/163088] ---2017-03-30 10:35:04-- http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll +--2017-05-03 20:33:36-- http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 12288 (12K) [text/plain] Wird in »»./185d60944ea767075d27247c3162b3bc-unowinreg.dll«« gespeichert. - 0K 100% 258K=0,05s + 0K 100% 263K=0,05s -2017-03-30 10:35:04 (258 KB/s) - »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert [12288/12288] +2017-05-03 20:33:36 (263 KB/s) - »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert [12288/12288] ---2017-03-30 10:35:04-- http://dev-www.libreoffice.org/extern/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar +--2017-05-03 20:33:36-- http://dev-www.libreoffice.org/extern/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 18033694 (17M) [application/x-java-archive] Wird in »»./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 236K 62s - 3072K ........ ........ ........ ........ ........ ........ 34% 240K 48s - 6144K ........ ........ ........ ........ ........ ........ 52% 240K 35s - 9216K ........ ........ ........ ........ ........ ........ 69% 240K 22s - 12288K ........ ........ ........ ........ ........ ........ 87% 240K 9s - 15360K ........ ........ ........ ........ ... 100% 240K=74s + 0K ........ ........ ........ ........ ........ ........ 17% 211K 69s + 3072K ........ ........ ........ ........ ........ ........ 34% 236K 51s + 6144K ........ ........ ........ ........ ........ ........ 52% 196K 39s + 9216K ........ ........ ........ ........ ........ ........ 69% 251K 24s + 12288K ........ ........ ........ ........ ........ ........ 87% 237K 10s + 15360K ........ ........ ........ ........ ... 100% 232K=78s -2017-03-30 10:36:18 (239 KB/s) - »./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar« gespeichert [18033694/18033694] +2017-05-03 20:34:54 (225 KB/s) - »./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar« gespeichert [18033694/18033694] ---2017-03-30 10:36:18-- http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2017-05-03 20:34:55-- http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2448421 (2,3M) [application/x-java-archive] Wird in »»./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar«« gespeichert. - 0K ........ ........ ........ ........ ..... 100% 240K=10s + 0K ........ ........ ........ ........ ..... 100% 235K=10s -2017-03-30 10:36:28 (240 KB/s) - »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert [2448421/2448421] +2017-05-03 20:35:05 (235 KB/s) - »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert [2448421/2448421] ---2017-03-30 10:36:28-- http://dev-www.libreoffice.org/src/libgltf/libgltf-0.0.2.tar.bz2 +--2017-05-03 20:35:05-- http://dev-www.libreoffice.org/src/libgltf/libgltf-0.0.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 538040 (525K) [application/x-bzip] Wird in »»./libgltf-0.0.2.tar.bz2«« gespeichert. - 0K ........ 100% 223K=2,4s + 0K ........ 100% 239K=2,2s -2017-03-30 10:36:31 (223 KB/s) - »./libgltf-0.0.2.tar.bz2« gespeichert [538040/538040] +2017-05-03 20:35:07 (239 KB/s) - »./libgltf-0.0.2.tar.bz2« gespeichert [538040/538040] Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/src/nss-3.29.5-with-nspr-4.13.1.tar.gz and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/src/nss-3.29.5-with-nspr-4.13.1.tar.gz differ diff -Nru libreoffice-l10n-5.3.2~rc2/svl/source/numbers/zforlist.cxx libreoffice-l10n-5.3.3~rc2/svl/source/numbers/zforlist.cxx --- libreoffice-l10n-5.3.2~rc2/svl/source/numbers/zforlist.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/svl/source/numbers/zforlist.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1963,6 +1963,15 @@ } } +double SvNumberFormatter::GetRoundFractionValue( sal_uInt32 nFormat, double fValue ) const +{ + const SvNumberformat* pFormat = GetFormatEntry( nFormat ); + if ( pFormat ) + return pFormat->GetRoundFractionValue( fValue ); + else + return fValue; +} + sal_uInt16 SvNumberFormatter::GetFormatPrecision( sal_uInt32 nFormat ) const { const SvNumberformat* pFormat = GetFormatEntry( nFormat ); @@ -1971,6 +1980,18 @@ else return pFormatScanner->GetStandardPrec(); } + +sal_uInt16 SvNumberFormatter::GetFormatPrecision( sal_uInt32 nFormat, double fValue ) const +{ + const SvNumberformat* pFormat = GetFormatEntry( nFormat ); + if ( pFormat ) + { + sal_uInt16 nIx = pFormat->GetSubformatIndex( fValue ); + return pFormat->GetFormatPrecision( nIx ); + } + else + return pFormatScanner->GetStandardPrec(); +} sal_uInt16 SvNumberFormatter::GetFormatIntegerDigits( sal_uInt32 nFormat ) const { diff -Nru libreoffice-l10n-5.3.2~rc2/svl/source/numbers/zformat.cxx libreoffice-l10n-5.3.3~rc2/svl/source/numbers/zformat.cxx --- libreoffice-l10n-5.3.2~rc2/svl/source/numbers/zformat.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/svl/source/numbers/zformat.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2212,7 +2212,8 @@ { if( rInfo.nTypeArray[i] == NF_SYMBOLTYPE_FRAC ) { - while ( ( ++i < nAnz ) && rInfo.nTypeArray[i] == NF_SYMBOLTYPE_STRING ); + while ( ( ++i < nAnz ) && rInfo.nTypeArray[i] != NF_SYMBOLTYPE_FRAC_FDIV + && rInfo.nTypeArray[i] != NF_SYMBOLTYPE_DIGIT ); for( ; i < nAnz; i++ ) { if( rInfo.nTypeArray[i] == NF_SYMBOLTYPE_FRAC_FDIV || rInfo.nTypeArray[i] == NF_SYMBOLTYPE_DIGIT ) @@ -2348,6 +2349,31 @@ return true; } +sal_uInt16 SvNumberformat::GetSubformatIndex (double fNumber ) const +{ + sal_uInt16 nIx; // Index of the partial format + double fLimit_1 = fLimit1; + short nCheck = ImpCheckCondition(fNumber, fLimit_1, eOp1); + if (nCheck == -1 || nCheck == 1) // Only 1 String or True + { + nIx = 0; + } + else + { + double fLimit_2 = fLimit2; + nCheck = ImpCheckCondition(fNumber, fLimit_2, eOp2); + if (nCheck == -1 || nCheck == 1) + { + nIx = 1; + } + else + { + nIx = 2; + } + } + return nIx; +} + bool SvNumberformat::GetOutputString(double fNumber, OUString& OutString, Color** ppColor) @@ -2438,24 +2464,7 @@ } if ( !bHadStandard ) { - sal_uInt16 nIx; // Index of the partial format - short nCheck = ImpCheckCondition(fNumber, fLimit1, eOp1); - if (nCheck == -1 || nCheck == 1) // Only 1 String or True - { - nIx = 0; - } - else - { - nCheck = ImpCheckCondition(fNumber, fLimit2, eOp2); - if (nCheck == -1 || nCheck == 1) - { - nIx = 1; - } - else - { - nIx = 2; - } - } + sal_uInt16 nIx = GetSubformatIndex ( fNumber ); // Index of the partial format if (fNumber < 0.0 && ((nIx == 0 && IsFirstSubformatRealNegative()) || // 1st, usually positive subformat (nIx == 1 && IsSecondSubformatRealNegative()))) // 2nd, usually negative subformat @@ -2678,45 +2687,31 @@ return bRes; } -bool SvNumberformat::ImpGetFractionOutput(double fNumber, - sal_uInt16 nIx, - OUStringBuffer& sBuff) +double SvNumberformat::GetRoundFractionValue ( double fNumber ) const { - bool bRes = false; - const ImpSvNumberformatInfo& rInfo = NumFor[nIx].Info(); - const sal_uInt16 nAnz = NumFor[nIx].GetCount(); - OUStringBuffer sStr, sFrac, sDiv; // Strings, value for - sal_uInt64 nFrac=0, nDiv=1; // Integral part - bool bSign = false; // Numerator and denominator - const OUString sIntegerFormat = lcl_GetFractionIntegerString(rInfo, nAnz); - const OUString sNumeratorFormat = lcl_GetNumeratorString(rInfo, nAnz); - const OUString sDenominatorFormat = lcl_GetDenominatorString(rInfo, nAnz); + sal_uInt16 nIx = GetSubformatIndex ( fNumber ); + double fIntPart = 0.0; // integer part of fraction + sal_uInt64 nFrac = 0, nDiv = 1; // numerator and denominator + double fSign = (fNumber < 0.0) ? -1.0 : 1.0; + // fNumber is modified in ImpGetFractionElements to absolute fractional part + ImpGetFractionElements ( fNumber, nIx, fIntPart, nFrac, nDiv ); + if ( nDiv > 0 ) + return fSign * ( fIntPart + (double)nFrac / (double)nDiv ); + else + return fSign * fIntPart; +} - if (fNumber < 0) - { - if (nIx == 0) // Not in the ones at the end - bSign = true; // Formats +void SvNumberformat::ImpGetFractionElements ( double& fNumber, sal_uInt16 nIx, + double& fIntPart, sal_uInt64& nFrac, sal_uInt64& nDiv ) const +{ + if ( fNumber < 0.0 ) fNumber = -fNumber; - } - - double fNum = floor(fNumber); // Integral part - - fNumber -= fNum; // Fractional part - if (fNum > D_MAX_U_INT32 || rInfo.nCntExp > 9) // Too large - { - sBuff = rScan.GetErrorString(); - return false; - } - if (rInfo.nCntExp == 0) - { - SAL_WARN( "svl.numbers", "SvNumberformat:: Fraction, nCntExp == 0"); - sBuff.truncate(); - return false; - } - - if( sal_Int32 nForcedDiv = sDenominatorFormat.toInt32() ) + fIntPart = floor(fNumber); // Integral part + fNumber -= fIntPart; // Fractional part + const ImpSvNumberformatInfo& rInfo = NumFor[nIx].Info(); + nDiv = lcl_GetDenominatorString( rInfo, NumFor[nIx].GetCount() ).toInt32(); + if( nDiv > 0 ) { // Forced Denominator - nDiv = (sal_uInt64) nForcedDiv; nFrac = (sal_uInt64)floor ( fNumber * nDiv ); double fFracNew = (double)nFrac / (double)nDiv; double fFracNew1 = (double)(nFrac + 1) / (double)nDiv; @@ -2725,14 +2720,10 @@ { nFrac++; } - if( nFrac >= nDiv ) - { - nFrac = nDiv = 0; - fNum = fNum + 1.0; - } } else // Calculated Denominator { + nDiv = 1; sal_uInt64 nBasis = ((sal_uInt64)floor( pow(10.0,rInfo.nCntExp))) - 1; // 9, 99, 999 ,... sal_uInt64 nFracPrev = 1L, nDivPrev = 0, nFracNext, nDivNext, nPartialDenom; double fRemainder = fNumber; @@ -2770,13 +2761,44 @@ fRemainder = 0.0; // exit while loop } } - if (nFrac == nDiv) - { - ++fNum; - nFrac = 0; - } + } + if (nFrac >= nDiv) + { + ++fIntPart; + nFrac = nDiv = 0; + } +} + +bool SvNumberformat::ImpGetFractionOutput(double fNumber, + sal_uInt16 nIx, + OUStringBuffer& sBuff) +{ + bool bRes = false; + const ImpSvNumberformatInfo& rInfo = NumFor[nIx].Info(); + const sal_uInt16 nAnz = NumFor[nIx].GetCount(); + OUStringBuffer sStr, sFrac, sDiv; // Strings, value for Integral part Numerator and denominator + bool bSign = ( (fNumber < 0) && (nIx == 0) ); // sign Not in the ones at the end + const OUString sIntegerFormat = lcl_GetFractionIntegerString(rInfo, nAnz); + const OUString sNumeratorFormat = lcl_GetNumeratorString(rInfo, nAnz); + const OUString sDenominatorFormat = lcl_GetDenominatorString(rInfo, nAnz); + + sal_uInt64 nFrac = 0, nDiv = 1; + double fNum = floor(fNumber); // Integral part + + if (fNum > D_MAX_U_INT32 || rInfo.nCntExp > 9) // Too large + { + sBuff = rScan.GetErrorString(); + return false; + } + if (rInfo.nCntExp == 0) + { + SAL_WARN( "svl.numbers", "SvNumberformat:: Fraction, nCntExp == 0"); + sBuff.truncate(); + return false; } + ImpGetFractionElements( fNumber, nIx, fNum, nFrac, nDiv); + if (rInfo.nCntPre == 0) // Improper fraction { double fNum1 = fNum * (double)nDiv + (double)nFrac; @@ -2815,21 +2837,7 @@ sal_uInt16 j = nAnz-1; // Last symbol -> backwards sal_Int32 k; // Denominator - bRes |= ImpNumberFill(sDiv, fNumber, k, j, nIx, NF_SYMBOLTYPE_FRAC); - if ( !bHideFraction && sDenominatorFormat.getLength() > 0 ) - { - // Guard against a (theoretical?) endless loop of blanks only. - sal_Int32 n = sDiv.getLength(); - sal_Int32 nDenominatorLen = sDenominatorFormat.getLength(); - while ( n-- > 0 && sDiv[0] == ' ' ) // left align denominator - { - if (sDiv.getLength() <= nDenominatorLen) - sDiv.append(" "); - else - sDiv.insert( nDenominatorLen, " " ); - sDiv.remove( 0, 1 ); - } - } + bRes |= ImpNumberFill(sDiv, fNumber, k, j, nIx, NF_SYMBOLTYPE_FRAC, true); bool bCont = true; if (rInfo.nTypeArray[j] == NF_SYMBOLTYPE_FRAC) @@ -4484,7 +4492,8 @@ sal_Int32& k, // position within string sal_uInt16& j, // symbol index within format code sal_uInt16 nIx, // subformat index - short eSymbolType ) // type of stop condition + short eSymbolType, // type of stop condition + bool bInsertRightBlank)// insert blank on right for denominator (default = false) { bool bRes = false; bool bStop = false; @@ -4536,6 +4545,7 @@ case NF_SYMBOLTYPE_DIGIT: { bFoundNumber = true; + sal_uInt16 nPosInsertBlank = bInsertRightBlank ? k : 0; // left alignment of denominator const OUString& rStr = rInfo.sStrArray[j]; const sal_Unicode* p1 = rStr.getStr(); const sal_Unicode* p = p1 + rStr.getLength(); @@ -4553,7 +4563,7 @@ sBuff.insert(0, '0'); break; case '?': - sBuff.insert(0, ' '); + sBuff.insert(nPosInsertBlank, ' '); break; } } @@ -4573,6 +4583,10 @@ } break; case NF_SYMBOLTYPE_FRAC_FDIV: // Do Nothing + if (k > 0) + { + k--; + } break; default: diff -Nru libreoffice-l10n-5.3.2~rc2/svx/source/dialog/ctredlin.cxx libreoffice-l10n-5.3.3~rc2/svx/source/dialog/ctredlin.cxx --- libreoffice-l10n-5.3.2~rc2/svx/source/dialog/ctredlin.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/svx/source/dialog/ctredlin.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -431,7 +431,7 @@ void SvxTPView::InsertWriterHeader() { - const long pTabs[] = { 5, 10, 20, 70, 120, 170 }; + const long pTabs[] = { 4 /* Length of rest of the array */, 10, 20, 70, 120 }; m_pViewData->SetTabs(pTabs); OUString aStrTab('\t'); @@ -448,7 +448,7 @@ void SvxTPView::InsertCalcHeader() { - const long pTabs[] = { 5, 10, 65, 120, 170, 220 }; + const long pTabs[] = { 5 /* Length of rest of the array */, 10, 65, 120, 170, 220 }; m_pViewData->SetTabs(pTabs); OUString aStrTab('\t'); diff -Nru libreoffice-l10n-5.3.2~rc2/svx/source/table/tablelayouter.cxx libreoffice-l10n-5.3.3~rc2/svx/source/table/tablelayouter.cxx --- libreoffice-l10n-5.3.2~rc2/svx/source/table/tablelayouter.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/svx/source/table/tablelayouter.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -916,36 +916,40 @@ } } - void TableLayouter::SetBorder( sal_Int32 nCol, sal_Int32 nRow, bool bHorizontal, const SvxBorderLine* pLine ) { - if( pLine == nullptr ) + if (!pLine) pLine = &gEmptyBorder; - SvxBorderLine *pOld = bHorizontal ? maHorizontalBorders[nCol][nRow] : maVerticalBorders[nCol][nRow]; + BorderLineMap& rMap = bHorizontal ? maHorizontalBorders : maVerticalBorders; - if( HasPriority( pLine, pOld ) ) + if( (nCol >= 0) && (nCol < sal::static_int_cast(rMap.size())) && + (nRow >= 0) && (nRow < sal::static_int_cast(rMap[nCol].size())) ) { - if( (pOld != nullptr) && (pOld != &gEmptyBorder) ) - delete pOld; + SvxBorderLine *pOld = rMap[nCol][nRow]; + + if (HasPriority(pLine, pOld)) + { + if (pOld && pOld != &gEmptyBorder) + delete pOld; - SvxBorderLine* pNew = ( pLine != &gEmptyBorder ) ? new SvxBorderLine(*pLine) : &gEmptyBorder; + SvxBorderLine* pNew = (pLine != &gEmptyBorder) ? new SvxBorderLine(*pLine) : &gEmptyBorder; - if( bHorizontal ) - maHorizontalBorders[nCol][nRow] = pNew; - else - maVerticalBorders[nCol][nRow] = pNew; + rMap[nCol][nRow] = pNew; + } + } + else + { + OSL_FAIL( "sdr::table::TableLayouter::SetBorder(), invalid border!" ); } } - void TableLayouter::ClearBorderLayout() { ClearBorderLayout(maHorizontalBorders); ClearBorderLayout(maVerticalBorders); } - void TableLayouter::ClearBorderLayout(BorderLineMap& rMap) { const sal_Int32 nColCount = rMap.size(); @@ -967,7 +971,6 @@ } } - void TableLayouter::ResizeBorderLayout() { ClearBorderLayout(); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/inc/accmap.hxx libreoffice-l10n-5.3.3~rc2/sw/inc/accmap.hxx --- libreoffice-l10n-5.3.2~rc2/sw/inc/accmap.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/inc/accmap.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -30,10 +30,12 @@ #include #include #include "fesh.hxx" +#include + #include #include +#include #include -#include class SwAccessibleParagraph; class SwViewShell; @@ -88,6 +90,7 @@ class SwAccessibleMap : public ::accessibility::IAccessibleViewForwarder, public ::accessibility::IAccessibleParent + , public std::enable_shared_from_this { mutable ::osl::Mutex maMutex; ::osl::Mutex maEventMutex; Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/data/tdf106001-2.odt and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/data/tdf106001-2.odt differ Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/data/tdf106690.docx and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/data/tdf106690.docx differ Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/data/tdf106970.docx and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/data/tdf106970.docx differ Binary files /tmp/tmpZm_vjD/4qUVBe5iIp/libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/data/tdf106974_int32Crop.docx and /tmp/tmpZm_vjD/FDXDtcYoBw/libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/data/tdf106974_int32Crop.docx differ diff -Nru libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx --- libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -629,6 +629,16 @@ CPPUNIT_ASSERT_EQUAL( sal_Int32( 2291 ), aGraphicCropStruct.Bottom ); } +DECLARE_OOXMLEXPORT_TEST(testTdf106974_int32Crop, "tdf106974_int32Crop.docx") +{ + uno::Reference image = getShape(1); + uno::Reference imageProperties(image, uno::UNO_QUERY); + css::text::GraphicCrop aGraphicCropStruct; + + imageProperties->getPropertyValue( "GraphicCrop" ) >>= aGraphicCropStruct; + CPPUNIT_ASSERT( sal_Int32( 46000 ) < aGraphicCropStruct.Right ); +} + DECLARE_OOXMLEXPORT_TEST(testLineSpacingexport, "test_line_spacing.docx") { // The Problem was that the w:line attribute value in w:spacing tag was incorrect diff -Nru libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx --- libreoffice-l10n-5.3.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -49,6 +49,24 @@ CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(getParagraph(3), "ParaTopMargin")); } +DECLARE_OOXMLEXPORT_TEST(testTdf106690, "tdf106690.docx") +{ + // This was 0, numbering rules with automatic spacing meant 0 + // before/autospacing for all text nodes, even for ones at the start/end of + // a numbered text node block. + CPPUNIT_ASSERT_EQUAL(static_cast(494), getProperty(getParagraph(2), "ParaBottomMargin")); + CPPUNIT_ASSERT_EQUAL(static_cast(494), getProperty(getParagraph(2), "ParaTopMargin")); +} + +DECLARE_OOXMLEXPORT_TEST(testTdf106970, "tdf106970.docx") +{ + // The second paragraph (first numbered one) had 0 bottom margin: + // autospacing was even collapsed between different numbering styles. + CPPUNIT_ASSERT_EQUAL(static_cast(494), getProperty(getParagraph(2), "ParaBottomMargin")); + CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(getParagraph(3), "ParaBottomMargin")); + CPPUNIT_ASSERT_EQUAL(static_cast(494), getProperty(getParagraph(4), "ParaBottomMargin")); +} + DECLARE_OOXMLEXPORT_TEST(testTdf89377, "tdf89377_tableWithBreakBeforeParaStyle.docx") { // the paragraph style should set table's text-flow break-before-page @@ -207,6 +225,16 @@ CPPUNIT_ASSERT_EQUAL( static_cast( 100 ), getProperty(getRun(getParagraph(1), 1), "CharScaleWidth" )); } +DECLARE_OOXMLEXPORT_TEST(testTdf106001_2, "tdf106001-2.odt") +{ + // In test ODT CharScaleWidth = 900, this was not changed upon OOXML export to stay in [1..600], now it's clamped to 600 + // Note: we disregard what's set in pPr / rPr and only care about r / rPr + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:r/w:rPr/w:w","val","600"); +} + DECLARE_OOXMLEXPORT_TEST(testTdf103931, "tdf103931.docx") { uno::Reference xTextSectionsSupplier(mxComponent, uno::UNO_QUERY); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/data/hexcrlf.rtf libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/data/hexcrlf.rtf --- libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/data/hexcrlf.rtf 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/data/hexcrlf.rtf 2017-05-03 16:46:29.000000000 +0000 @@ -1,4 +1,10 @@ {\rtf1 +{\*\listtable +{\list\listtemplateid1 +{\listlevel{\leveltext \'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06}{\levelnumbers \'01\'03\'05\'07\'09\'0b\'0d}} +{\listname Heading;}\listid1199164 +}} + foo\'0dba r\'0abaz\'0d\'0aquux \par } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/data/tdf106694.rtf libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/data/tdf106694.rtf --- libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/data/tdf106694.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/data/tdf106694.rtf 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,10 @@ +{\rtf1\ansi\deflang3081\ftnbj\uc1\deff0 +{\colortbl ;\red255\green255\blue255 ;\red0\green0\blue0 ;\red54\green95\blue145 ;\red79\green129\blue188 ;\red255\green0\blue0 ;\red255\green255\blue128 ;\red128\green0\blue0 ;\red127\green127\blue127 ;\red35\green62\blue95 ;\red63\green63\blue63 ;\red95\green95\blue95 ;\red47\green47\blue47 ;\red0\green64\blue128 ;\red79\green79\blue79 ;\red111\green111\blue111 ;\red0\green0\blue255 ;\red239\green239\blue239 ;\red192\green1\blue1 ;} +{\stylesheet +{\f0\fs24 Normal;} +{\s22\snext0\f1\fs18\b\tqr\tldot\tx8280\fi0\li0\ri720\sb120\sa40\sl0 TOC 1 +;} +} +\pard\ssparaaux0\s22\tqr\tldot\tx8280\ri720\sb120\sa40\ql\outlinelevel0\plain\f0\fs24\plain\f2\fs18\hich\f2\dbch\f2\loch\f2\fs18\b +Model Detail\tab 2\par +} diff -Nru libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/rtfimport.cxx libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/rtfimport.cxx --- libreoffice-l10n-5.3.2~rc2/sw/qa/extras/rtfimport/rtfimport.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/qa/extras/rtfimport/rtfimport.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2752,6 +2752,14 @@ CPPUNIT_ASSERT_EQUAL(style::ParagraphAdjust_CENTER, static_cast(getProperty(getParagraph(1), "ParaAdjust"))); } +DECLARE_RTFIMPORT_TEST(testTdf106694, "tdf106694.rtf") +{ + auto aTabs = getProperty< uno::Sequence >(getParagraph(1), "ParaTabStops"); + CPPUNIT_ASSERT_EQUAL(static_cast(1), aTabs.getLength()); + // This was 0, tab position was incorrect, looked like it was missing. + CPPUNIT_ASSERT_EQUAL(static_cast(14605), aTabs[0].Position); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccell.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccell.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccell.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccell.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -98,7 +98,7 @@ } } -SwAccessibleCell::SwAccessibleCell( SwAccessibleMap *pInitMap, +SwAccessibleCell::SwAccessibleCell(std::shared_ptr const& pInitMap, const SwCellFrame *pCellFrame ) : SwAccessibleContext( pInitMap, AccessibleRole::TABLE_CELL, pCellFrame ) , aSelectionHelper( *this ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccell.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccell.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccell.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccell.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -54,7 +54,8 @@ virtual ~SwAccessibleCell() override; public: - SwAccessibleCell( SwAccessibleMap* pInitMap, const SwCellFrame *pCellFrame ); + SwAccessibleCell(std::shared_ptr const& pInitMap, + const SwCellFrame *pCellFrame); virtual bool HasCursor() override; // required by map to remember that object diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccontext.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccontext.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccontext.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccontext.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -406,8 +406,21 @@ xAccImpl = GetMap()->GetContextImpl( pLower, false ); if( xAccImpl.is() ) xAccImpl->Dispose( bRecursive ); - else if( bRecursive ) - DisposeChildren(pLower, bRecursive, bCanSkipInvisible); + else + { + // it's possible that the xAccImpl *does* exist with a + // ref-count of 0 and blocked in its dtor in another thread - + // this call here could be from SwAccessibleMap dtor so + // remove it from any maps now! + GetMap()->RemoveContext(pLower); + // in this case the context will check with a weak_ptr + // that the map is still alive so it's not necessary + // to clear its m_pMap here. + if (bRecursive) + { + DisposeChildren(pLower, bRecursive, bCanSkipInvisible); + } + } } else if ( rLower.GetDrawObject() ) { @@ -517,12 +530,13 @@ return bRet; } -SwAccessibleContext::SwAccessibleContext( SwAccessibleMap *const pMap, +SwAccessibleContext::SwAccessibleContext(std::shared_ptr const& pMap, sal_Int16 const nRole, const SwFrame *pF ) : SwAccessibleFrame( pMap->GetVisArea().SVRect(), pF, pMap->GetShell()->IsPreview() ) - , m_pMap( pMap ) + , m_pMap(pMap.get()) + , m_wMap(pMap) , m_nClientId(0) , m_nRole(nRole) , m_isDisposing( false ) @@ -534,8 +548,16 @@ SwAccessibleContext::~SwAccessibleContext() { + // must have for 2 reasons: 2. as long as this thread has SolarMutex + // another thread cannot destroy the SwAccessibleMap so our temporary + // taking a hard ref to SwAccessibleMap won't delay its destruction SolarMutexGuard aGuard; - RemoveFrameFromAccessibleMap(); + // must check with weak_ptr that m_pMap is still alive + std::shared_ptr pMap(m_wMap.lock()); + if (m_isRegisteredAtAccessibleMap && GetFrame() && pMap) + { + pMap->RemoveContext( GetFrame() ); + } } uno::Reference< XAccessibleContext > SAL_CALL @@ -1075,6 +1097,7 @@ RemoveFrameFromAccessibleMap(); ClearFrame(); m_pMap = nullptr; + m_wMap.reset(); m_isDisposing = false; } @@ -1432,8 +1455,17 @@ return sStr; } + +void SwAccessibleContext::ClearMapPointer() +{ + DBG_TESTSOLARMUTEX(); + m_pMap = nullptr; + m_wMap.reset(); +} + void SwAccessibleContext::RemoveFrameFromAccessibleMap() { + assert(m_refCount > 0); // must be alive to do this without using m_wMap if (m_isRegisteredAtAccessibleMap && GetFrame() && GetMap()) GetMap()->RemoveContext( GetFrame() ); } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccontext.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccontext.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acccontext.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acccontext.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -29,6 +29,8 @@ #include #include +#include + namespace vcl { class Window; } class SwAccessibleMap; class SwCursorShell; @@ -70,6 +72,10 @@ css::accessibility::XAccessible > m_xWeakParent; SwAccessibleMap *m_pMap; // must be protected by solar mutex + /// note: the m_pMap is guaranteed to be valid until we hit the + /// dtor ~SwAccessibleContext, then m_wMap must be checked if it's still + /// alive, after locking SolarMutex (alternatively, Dispose clears m_pMap) + std::weak_ptr m_wMap; sal_uInt32 m_nClientId; // client id in the AccessibleEventNotifier queue sal_Int16 m_nRole; // immutable outside constructor @@ -161,7 +167,7 @@ virtual void InvalidateFocus_(); public: - void SetMap(SwAccessibleMap *const pMap) { m_pMap = pMap; } + void ClearMapPointer(); void FireAccessibleEvent( css::accessibility::AccessibleEventObject& rEvent ); protected: @@ -192,8 +198,8 @@ virtual ~SwAccessibleContext() override; public: - SwAccessibleContext( SwAccessibleMap *m_pMap, sal_Int16 nRole, - const SwFrame *pFrame ); + SwAccessibleContext( std::shared_ptr const& pMap, + sal_Int16 nRole, const SwFrame *pFrame ); // XAccessible diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accdoc.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accdoc.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accdoc.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accdoc.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -70,11 +70,12 @@ // SwAccessibleDocumentBase: base class for SwAccessibleDocument and // SwAccessiblePreview -SwAccessibleDocumentBase::SwAccessibleDocumentBase ( SwAccessibleMap *_pMap ) : - SwAccessibleContext( _pMap, AccessibleRole::DOCUMENT_TEXT, - _pMap->GetShell()->GetLayout() ), - mxParent( _pMap->GetShell()->GetWin()->GetAccessibleParentWindow()->GetAccessible() ), - mpChildWin( nullptr ) +SwAccessibleDocumentBase::SwAccessibleDocumentBase( + std::shared_ptr const& pMap) + : SwAccessibleContext(pMap, AccessibleRole::DOCUMENT_TEXT, + pMap->GetShell()->GetLayout()) + , mxParent(pMap->GetShell()->GetWin()->GetAccessibleParentWindow()->GetAccessible()) + , mpChildWin(nullptr) { } @@ -348,9 +349,10 @@ rStateSet.AddState( AccessibleStateType::MANAGES_DESCENDANTS ); } -SwAccessibleDocument::SwAccessibleDocument ( SwAccessibleMap* pInitMap ) : - SwAccessibleDocumentBase( pInitMap ), - maSelectionHelper( *this ) +SwAccessibleDocument::SwAccessibleDocument( + std::shared_ptr const& pInitMap) + : SwAccessibleDocumentBase(pInitMap) + , maSelectionHelper(*this) { SetName( GetResource( STR_ACCESS_DOC_NAME ) ); vcl::Window *pWin = pInitMap->GetShell()->GetWin(); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accdoc.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accdoc.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accdoc.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accdoc.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -43,7 +43,7 @@ virtual ~SwAccessibleDocumentBase() override; public: - SwAccessibleDocumentBase( SwAccessibleMap* pInitMap ); + SwAccessibleDocumentBase(std::shared_ptr const& pInitMap); void SetVisArea(); @@ -120,7 +120,7 @@ virtual ~SwAccessibleDocument() override; public: - SwAccessibleDocument( SwAccessibleMap* pInitMap ); + SwAccessibleDocument(std::shared_ptr const& pInitMap); DECL_LINK( WindowChildEventListener, VclWindowEvent&, void ); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accembedded.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accembedded.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accembedded.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accembedded.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -36,7 +36,7 @@ const sal_Char sImplementationName[] = "com.sun.star.comp.Writer.SwAccessibleEmbeddedObject"; SwAccessibleEmbeddedObject::SwAccessibleEmbeddedObject( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwFlyFrame* pFlyFrame ) : SwAccessibleNoTextFrame( pInitMap, AccessibleRole::EMBEDDED_OBJECT, pFlyFrame ) { diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accembedded.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accembedded.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accembedded.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accembedded.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -32,7 +32,7 @@ virtual ~SwAccessibleEmbeddedObject() override; public: - SwAccessibleEmbeddedObject( SwAccessibleMap* pInitMap, + SwAccessibleEmbeddedObject(std::shared_ptr const& pInitMap, const SwFlyFrame* pFlyFrame ); // XInterface diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accfootnote.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accfootnote.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accfootnote.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accfootnote.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -41,7 +41,7 @@ const sal_Char sImplementationNameEndnote[] = "com.sun.star.comp.Writer.SwAccessibleEndnoteView"; SwAccessibleFootnote::SwAccessibleFootnote( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, bool bIsEndnote, const SwFootnoteFrame *pFootnoteFrame ) : SwAccessibleContext( pInitMap, diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accfootnote.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accfootnote.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accfootnote.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accfootnote.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -32,7 +32,7 @@ virtual ~SwAccessibleFootnote() override; public: - SwAccessibleFootnote( SwAccessibleMap* pInitMap, + SwAccessibleFootnote( std::shared_ptr const& pInitMap, bool bIsEndnote, const SwFootnoteFrame *pFootnoteFrame ); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accframebase.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accframebase.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accframebase.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accframebase.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -124,7 +124,7 @@ } SwAccessibleFrameBase::SwAccessibleFrameBase( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, sal_Int16 nInitRole, const SwFlyFrame* pFlyFrame ) : SwAccessibleContext( pInitMap, nInitRole, pFlyFrame ), diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accframebase.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accframebase.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accframebase.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accframebase.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -48,7 +48,7 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwAccessibleFrameBase( SwAccessibleMap* pInitMap, + SwAccessibleFrameBase(std::shared_ptr const& pInitMap, sal_Int16 nInitRole, const SwFlyFrame *pFlyFrame ); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accgraphic.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accgraphic.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accgraphic.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accgraphic.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -32,7 +32,7 @@ using namespace ::com::sun::star::accessibility; SwAccessibleGraphic::SwAccessibleGraphic( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwFlyFrame* pFlyFrame ) : SwAccessibleNoTextFrame( pInitMap, AccessibleRole::GRAPHIC, pFlyFrame ) { diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accgraphic.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accgraphic.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accgraphic.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accgraphic.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -28,7 +28,7 @@ virtual ~SwAccessibleGraphic() override; public: - SwAccessibleGraphic( SwAccessibleMap* pInitMap, + SwAccessibleGraphic(std::shared_ptr const& pInitMap, const SwFlyFrame *pFlyFrame ); // XServiceInfo diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accheaderfooter.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accheaderfooter.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accheaderfooter.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accheaderfooter.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -37,7 +37,7 @@ const sal_Char sImplementationNameFooter[] = "com.sun.star.comp.Writer.SwAccessibleFooterView"; SwAccessibleHeaderFooter::SwAccessibleHeaderFooter( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwHeaderFrame* pHdFrame ) : SwAccessibleContext( pInitMap, AccessibleRole::HEADER, pHdFrame ) { @@ -48,7 +48,7 @@ } SwAccessibleHeaderFooter::SwAccessibleHeaderFooter( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwFooterFrame* pFtFrame ) : SwAccessibleContext( pInitMap, AccessibleRole::FOOTER, pFtFrame ) { diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accheaderfooter.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accheaderfooter.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accheaderfooter.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accheaderfooter.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -31,9 +31,9 @@ virtual ~SwAccessibleHeaderFooter() override; public: - SwAccessibleHeaderFooter( SwAccessibleMap* pInitMap, + SwAccessibleHeaderFooter( std::shared_ptr const& pInitMap, const SwHeaderFrame* pHdFrame ); - SwAccessibleHeaderFooter( SwAccessibleMap* pInitMap, + SwAccessibleHeaderFooter( std::shared_ptr const& pInitMap, const SwFooterFrame* pFtFrame ); // XAccessibleContext diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accmap.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accmap.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accmap.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accmap.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1655,6 +1655,7 @@ SwAccessibleMap::~SwAccessibleMap() { + DBG_TESTSOLARMUTEX(); uno::Reference < XAccessible > xAcc; { osl::MutexGuard aGuard( maMutex ); @@ -1665,7 +1666,8 @@ if( aIter != mpFrameMap->end() ) xAcc = (*aIter).second; if( !xAcc.is() ) - xAcc = new SwAccessibleDocument( this ); + assert(false); // let's hope this can't happen? the vcl::Window apparently owns the top-level + //xAcc = new SwAccessibleDocument(shared_from_this()); } } @@ -1683,7 +1685,8 @@ if( xTmp.is() ) { SwAccessibleContext *pTmp = static_cast< SwAccessibleContext * >( xTmp.get() ); - pTmp->SetMap(nullptr); + // TODO is this still needed + pTmp->ClearMapPointer(); } ++aIter; } @@ -1691,8 +1694,6 @@ { osl::MutexGuard aGuard( maMutex ); #if OSL_DEBUG_LEVEL > 0 - SAL_WARN_IF(!(!mpFrameMap || mpFrameMap->empty()), "sw.a11y", - "Frame map should be empty after disposing the root frame"); if( mpFrameMap ) { SwAccessibleContextMap_Impl::iterator aIter = mpFrameMap->begin(); @@ -1708,8 +1709,6 @@ ++aIter; } } - SAL_WARN_IF(!(!mpShapeMap || mpShapeMap->empty()), "sw.a11y", - "Object map should be empty after disposing the root frame"); if( mpShapeMap ) { SwAccessibleShapeMap_Impl::iterator aIter = mpShapeMap->begin(); @@ -1725,6 +1724,10 @@ ++aIter; } } + assert((!mpFrameMap || mpFrameMap->empty()) && + "Frame map should be empty after disposing the root frame"); + assert((!mpShapeMap || mpShapeMap->empty()) && + "Object map should be empty after disposing the root frame"); #endif delete mpFrameMap; mpFrameMap = nullptr; @@ -1786,9 +1789,9 @@ else { if( bPagePreview ) - xAcc = new SwAccessiblePreview( this ); + xAcc = new SwAccessiblePreview(shared_from_this()); else - xAcc = new SwAccessibleDocument( this ); + xAcc = new SwAccessibleDocument(shared_from_this()); if( aIter != mpFrameMap->end() ) { @@ -1860,15 +1863,15 @@ switch( pFrame->GetType() ) { case SwFrameType::Txt: - pAcc = new SwAccessibleParagraph( this, + pAcc = new SwAccessibleParagraph(shared_from_this(), static_cast< const SwTextFrame& >( *pFrame ) ); break; case SwFrameType::Header: - pAcc = new SwAccessibleHeaderFooter( this, + pAcc = new SwAccessibleHeaderFooter(shared_from_this(), static_cast< const SwHeaderFrame *>( pFrame ) ); break; case SwFrameType::Footer: - pAcc = new SwAccessibleHeaderFooter( this, + pAcc = new SwAccessibleHeaderFooter(shared_from_this(), static_cast< const SwFooterFrame *>( pFrame ) ); break; case SwFrameType::Ftn: @@ -1877,7 +1880,7 @@ static_cast < const SwFootnoteFrame * >( pFrame ); bool bIsEndnote = SwAccessibleFootnote::IsEndnote( pFootnoteFrame ); - pAcc = new SwAccessibleFootnote( this, bIsEndnote, + pAcc = new SwAccessibleFootnote(shared_from_this(), bIsEndnote, /*(bIsEndnote ? mnEndnote++ : mnFootnote++),*/ pFootnoteFrame ); } @@ -1889,29 +1892,29 @@ switch( SwAccessibleFrameBase::GetNodeType( pFlyFrame ) ) { case ND_GRFNODE: - pAcc = new SwAccessibleGraphic( this, pFlyFrame ); + pAcc = new SwAccessibleGraphic(shared_from_this(), pFlyFrame ); break; case ND_OLENODE: - pAcc = new SwAccessibleEmbeddedObject( this, pFlyFrame ); + pAcc = new SwAccessibleEmbeddedObject(shared_from_this(), pFlyFrame ); break; default: - pAcc = new SwAccessibleTextFrame( this, *pFlyFrame ); + pAcc = new SwAccessibleTextFrame(shared_from_this(), *pFlyFrame ); break; } } break; case SwFrameType::Cell: - pAcc = new SwAccessibleCell( this, + pAcc = new SwAccessibleCell(shared_from_this(), static_cast< const SwCellFrame *>( pFrame ) ); break; case SwFrameType::Tab: - pAcc = new SwAccessibleTable( this, + pAcc = new SwAccessibleTable(shared_from_this(), static_cast< const SwTabFrame *>( pFrame ) ); break; case SwFrameType::Page: OSL_ENSURE( GetShell()->IsPreview(), "accessible page frames only in PagePreview" ); - pAcc = new SwAccessiblePage( this, pFrame ); + pAcc = new SwAccessiblePage(shared_from_this(), pFrame); break; default: break; } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accnotextframe.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accnotextframe.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accnotextframe.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accnotextframe.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -60,7 +60,7 @@ } SwAccessibleNoTextFrame::SwAccessibleNoTextFrame( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, sal_Int16 nInitRole, const SwFlyFrame* pFlyFrame ) : SwAccessibleFrameBase( pInitMap, nInitRole, pFlyFrame ), diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accnotextframe.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accnotextframe.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accnotextframe.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accnotextframe.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -51,7 +51,7 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwAccessibleNoTextFrame( SwAccessibleMap* pInitMap, + SwAccessibleNoTextFrame( std::shared_ptr const& pInitMap, sal_Int16 nInitRole, const SwFlyFrame *pFlyFrame ); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpage.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpage.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpage.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpage.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -108,7 +108,7 @@ } } -SwAccessiblePage::SwAccessiblePage( SwAccessibleMap* pInitMap, +SwAccessiblePage::SwAccessiblePage(std::shared_ptr const& pInitMap, const SwFrame* pFrame ) : SwAccessibleContext( pInitMap, AccessibleRole::PANEL, pFrame ) , bIsSelected( false ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpage.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpage.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpage.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpage.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -51,7 +51,8 @@ public: // convenience constructor to avoid typecast; // may only be called with SwPageFrame argument - SwAccessiblePage( SwAccessibleMap* pInitMap, const SwFrame* pFrame ); + SwAccessiblePage(std::shared_ptr const& pInitMap, + const SwFrame* pFrame); // XAccessibleContext methods that need to be overridden diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpara.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpara.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpara.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpara.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -531,7 +531,7 @@ } SwAccessibleParagraph::SwAccessibleParagraph( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwTextFrame& rTextFrame ) : SwClient( const_cast(rTextFrame.GetTextNode()) ) // #i108125# , SwAccessibleContext( pInitMap, AccessibleRole::PARAGRAPH, &rTextFrame ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpara.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpara.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpara.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpara.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -236,7 +236,7 @@ public: - SwAccessibleParagraph( SwAccessibleMap* pInitMap, + SwAccessibleParagraph( std::shared_ptr const& pInitMap, const SwTextFrame& rTextFrame ); inline operator css::accessibility::XAccessibleText *(); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpreview.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpreview.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpreview.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpreview.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -29,8 +29,8 @@ using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::uno::Sequence; -SwAccessiblePreview::SwAccessiblePreview( SwAccessibleMap *pMp ) : - SwAccessibleDocumentBase( pMp ) +SwAccessiblePreview::SwAccessiblePreview(std::shared_ptr const& pMap) + : SwAccessibleDocumentBase(pMap) { SetName( GetResource( STR_ACCESS_PREVIEW_DOC_NAME ) ); } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpreview.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpreview.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/accpreview.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/accpreview.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -35,7 +35,7 @@ virtual ~SwAccessiblePreview() override; public: - SwAccessiblePreview( SwAccessibleMap *pMap ); + SwAccessiblePreview(std::shared_ptr const& pMap); // XServiceInfo diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctable.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctable.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctable.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctable.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -763,7 +763,7 @@ } SwAccessibleTable::SwAccessibleTable( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwTabFrame* pTabFrame ) : SwAccessibleContext( pInitMap, AccessibleRole::TABLE, pTabFrame ), mpTableData( nullptr ) @@ -1086,7 +1086,8 @@ // #i87532# - assure that return accessible object is empty, // if no column header exists. SwAccessibleTableColHeaders* pTableColHeaders = - new SwAccessibleTableColHeaders( GetMap(), static_cast< const SwTabFrame *>( GetFrame() ) ); + new SwAccessibleTableColHeaders(GetMap()->shared_from_this(), + static_cast(GetFrame())); uno::Reference< XAccessibleTable > xTableColumnHeaders( pTableColHeaders ); if ( pTableColHeaders->getAccessibleChildCount() <= 0 ) { @@ -1854,9 +1855,10 @@ } // #i77106# - implementation of class -SwAccessibleTableColHeaders::SwAccessibleTableColHeaders( SwAccessibleMap *pMap2, - const SwTabFrame *pTabFrame ) - : SwAccessibleTable( pMap2, pTabFrame ) +SwAccessibleTableColHeaders::SwAccessibleTableColHeaders( + std::shared_ptr const& pMap, + const SwTabFrame *const pTabFrame) + : SwAccessibleTable(pMap, pTabFrame) { SolarMutexGuard aGuard; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctable.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctable.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctable.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctable.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -86,7 +86,8 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwAccessibleTable( SwAccessibleMap* pInitMap, const SwTabFrame* pTableFrame ); + SwAccessibleTable(std::shared_ptr const& pInitMap, + const SwTabFrame* pTableFrame); // XInterface @@ -292,7 +293,8 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwAccessibleTableColHeaders( SwAccessibleMap *pMap, const SwTabFrame *pTabFrame ); + SwAccessibleTableColHeaders(std::shared_ptr const& pMap, + const SwTabFrame *pTabFrame); // XInterface diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctextframe.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctextframe.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctextframe.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctextframe.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -44,7 +44,7 @@ using ::com::sun::star::accessibility::XAccessibleContext; SwAccessibleTextFrame::SwAccessibleTextFrame( - SwAccessibleMap* pInitMap, + std::shared_ptr const& pInitMap, const SwFlyFrame& rFlyFrame ) : SwAccessibleFrameBase( pInitMap, AccessibleRole::TEXT_FRAME, &rFlyFrame ), msTitle(), diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctextframe.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctextframe.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/access/acctextframe.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/access/acctextframe.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -43,7 +43,8 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwAccessibleTextFrame( SwAccessibleMap* pInitMap, const SwFlyFrame& rFlyFrame ); + SwAccessibleTextFrame(std::shared_ptr const& pInitMap, + const SwFlyFrame& rFlyFrame); virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/crsr/crsrsh.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/crsr/crsrsh.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/crsr/crsrsh.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/crsr/crsrsh.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2561,6 +2561,8 @@ } else { + pTmpDel->GetPoint()->nContent.Assign(nullptr, 0); + pTmpDel->GetPoint()->nNode = 0; pTmpDel->DeleteMark(); } pTmpDel = nullptr; @@ -2621,6 +2623,8 @@ SwNode* pTableNd = pTCursor->GetPoint()->nNode.GetNode().FindTableNode(); if ( pTableNd ) { + pTCursor->GetPoint()->nContent.Assign(nullptr, 0); + pTCursor->GetPoint()->nNode = 0; pTCursor->DeleteMark(); pSh->m_pCurrentCursor->GetPoint()->nNode = *pTableNd; } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/crsr/crstrvl.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/crsr/crstrvl.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/crsr/crstrvl.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/crsr/crstrvl.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1440,12 +1440,18 @@ if( pFieldRect && nullptr != ( pFrame = pTextNd->getLayoutFrame( GetLayout(), &aPt ) ) ) { + //get bounding box of range SwRect aStart; SwPosition aStartPos(*pTextNd, nSt); pFrame->GetCharRect(aStart, aStartPos, &aTmpState); SwRect aEnd; SwPosition aEndPos(*pTextNd, nEnd); pFrame->GetCharRect(aEnd, aEndPos, &aTmpState); + if (aStart.Top() != aEnd.Top() || aStart.Bottom() != aEnd.Bottom()) + { + aStart.Left(pFrame->Frame().Left()); + aEnd.Right(pFrame->Frame().Right()); + } *pFieldRect = aStart.Union(aEnd); } } @@ -1463,7 +1469,19 @@ bRet = true; if( pFieldRect && nullptr != ( pFrame = pTextNd->getLayoutFrame( GetLayout(), &aPt ) ) ) - pFrame->GetCharRect( *pFieldRect, aPos, &aTmpState ); + { + //get bounding box of range + SwRect aStart; + pFrame->GetCharRect(aStart, *pRedl->Start(), &aTmpState); + SwRect aEnd; + pFrame->GetCharRect(aEnd, *pRedl->End(), &aTmpState); + if (aStart.Top() != aEnd.Top() || aStart.Bottom() != aEnd.Bottom()) + { + aStart.Left(pFrame->Frame().Left()); + aEnd.Right(pFrame->Frame().Right()); + } + *pFieldRect = aStart.Union(aEnd); + } } } } @@ -1982,6 +2000,8 @@ SwCallLink aLk( *this ); // watch Cursor-Moves SwCursorSaveState aSaveState( *m_pCurrentCursor ); + // ensure point is at the end so alternating SelNext/SelPrev works + NormalizePam(false); pFnd = GetDoc()->getIDocumentRedlineAccess().SelNextRedline( *m_pCurrentCursor ); if( pFnd && !m_pCurrentCursor->IsInProtectTable() && !m_pCurrentCursor->IsSelOvr() ) UpdateCursor( SwCursorShell::SCROLLWIN|SwCursorShell::CHKRANGE|SwCursorShell::READONLY); @@ -2000,6 +2020,8 @@ SwCallLink aLk( *this ); // watch Cursor-Moves SwCursorSaveState aSaveState( *m_pCurrentCursor ); + // ensure point is at the start so alternating SelNext/SelPrev works + NormalizePam(true); pFnd = GetDoc()->getIDocumentRedlineAccess().SelPrevRedline( *m_pCurrentCursor ); if( pFnd && !m_pCurrentCursor->IsInProtectTable() && !m_pCurrentCursor->IsSelOvr() ) UpdateCursor( SwCursorShell::SCROLLWIN|SwCursorShell::CHKRANGE|SwCursorShell::READONLY); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/doc/doctxm.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/doc/doctxm.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/doc/doctxm.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/doc/doctxm.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -154,26 +154,38 @@ SwTextNode& rTextNd = const_cast(pTextTOXMark->GetTextNode()); OSL_ENSURE( rTextNd.GetpSwpHints(), "cannot be deleted" ); - std::unique_ptr aRHst; - if (GetIDocumentUndoRedo().DoesUndo()) + if (pTextTOXMark->HasDummyChar()) { - // save attributes for Undo - SwUndoResetAttr* pUndo = new SwUndoResetAttr( - SwPosition( rTextNd, SwIndex( &rTextNd, pTextTOXMark->GetStart() ) ), - RES_TXTATR_TOXMARK ); - GetIDocumentUndoRedo().AppendUndo( pUndo ); - - aRHst.reset(new SwRegHistory(rTextNd, &pUndo->GetHistory())); - rTextNd.GetpSwpHints()->Register(aRHst.get()); + // tdf#106377 don't use SwUndoResetAttr, it uses NOTXTATRCHR + SwPaM tmp(rTextNd, pTextTOXMark->GetStart(), + rTextNd, pTextTOXMark->GetStart()+1); + assert(rTextNd.GetText()[pTextTOXMark->GetStart()] == CH_TXTATR_INWORD); + getIDocumentContentOperations().DeleteRange(tmp); } + else + { + std::unique_ptr aRHst; + if (GetIDocumentUndoRedo().DoesUndo()) + { + // save attributes for Undo + SwUndoResetAttr* pUndo = new SwUndoResetAttr( + SwPosition( rTextNd, SwIndex( &rTextNd, pTextTOXMark->GetStart() ) ), + RES_TXTATR_TOXMARK ); + GetIDocumentUndoRedo().AppendUndo( pUndo ); - rTextNd.DeleteAttribute( const_cast(pTextTOXMark) ); + aRHst.reset(new SwRegHistory(rTextNd, &pUndo->GetHistory())); + rTextNd.GetpSwpHints()->Register(aRHst.get()); + } - if (GetIDocumentUndoRedo().DoesUndo()) - { - if( rTextNd.GetpSwpHints() ) - rTextNd.GetpSwpHints()->DeRegister(); + rTextNd.DeleteAttribute( const_cast(pTextTOXMark) ); + + if (GetIDocumentUndoRedo().DoesUndo()) + { + if( rTextNd.GetpSwpHints() ) + rTextNd.GetpSwpHints()->DeRegister(); + } } + getIDocumentState().SetModified(); } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include using namespace com::sun::star; @@ -1226,10 +1227,15 @@ // also dealt with when moving the indices. if( bCallDelete ) { + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( *pRedl ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress } delete pRedl; } @@ -1253,10 +1259,15 @@ { // We insert temporarily so that pNew is // also dealt with when moving the indices. + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( aPam ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress n = 0; // re-initialize } bDec = true; @@ -1279,10 +1290,15 @@ { // We insert temporarily so that pNew is // also dealt with when moving the indices. + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( aPam ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress n = 0; // re-initialize bDec = true; } @@ -1777,6 +1793,11 @@ void DocumentRedlineManager::CompressRedlines() { + if (m_isForbidCompressRedlines) + { + return; + } + CHECK_REDLINE( *this ) void (SwRangeRedline::*pFnc)(sal_uInt16, size_t) = nullptr; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/frmedt/fews.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/frmedt/fews.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/frmedt/fews.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/frmedt/fews.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -123,12 +123,15 @@ case RECT_FLY_PRT_EMBEDDED: bFrame = false; SAL_FALLTHROUGH; - case RECT_FLY_EMBEDDED: pFrame = xObj.is() ? FindFlyFrame( xObj ) + case RECT_FLY_EMBEDDED: + { + const SwFrame *pFlyFrame = xObj.is() ? FindFlyFrame(xObj) : nullptr; + pFrame = pFlyFrame ? pFlyFrame : pFrame->IsFlyFrame() ? pFrame : pFrame->FindFlyFrame(); break; - + } case RECT_OUTTABSECTION_PRT: case RECT_OUTTABSECTION : if( pFrame->IsInTab() ) pFrame = pFrame->FindTabFrame(); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/inc/DocumentRedlineManager.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/inc/DocumentRedlineManager.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/inc/DocumentRedlineManager.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/inc/DocumentRedlineManager.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -137,6 +137,7 @@ sal_uInt16 mnAutoFormatRedlnCommentNo; /**< SeqNo for conjoining of AutoFormat-Redlines. by the UI. Managed by SwAutoFormat! */ css::uno::Sequence maRedlinePasswd; + bool m_isForbidCompressRedlines = false; }; } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/inc/viewimp.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/inc/viewimp.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/inc/viewimp.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/inc/viewimp.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -74,7 +74,9 @@ // Is registered by the SwLayAction ctor and deregistered by the dtor SwLayIdle *m_pIdleAct; // The same as SwLayAction for SwLayIdle - SwAccessibleMap *m_pAccessibleMap; // Accessible wrappers + /// note: the map is *uniquely* owned here - the shared_ptr is only + /// used so that SwAccessibleContext can check via weak_ptr that it's alive + std::shared_ptr m_pAccessibleMap; bool m_bFirstPageInvalid : 1; // Pointer to the first Page invalid? bool m_bResetHdlHiddenPaint : 1; // Ditto diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/calcmove.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/calcmove.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/calcmove.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/calcmove.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1868,6 +1868,11 @@ SwFrame *pOldNext = pTmpFrame->GetNext(); pTmpFrame->RemoveFromLayout(); pTmpFrame->InsertBefore( pNewUpper, nullptr ); + // tdf#107126 for a section in a footnote, we have only inserted + // the SwTextFrame but no SwSectionFrame - reset mbInfSct flag + // to avoid crashing (but perhaps we should create a temp + // SwSectionFrame here because WidowsAndOrphans checks for that?) + pTmpFrame->InvalidateInfFlags(); if ( pFrame->IsTextFrame() && ( bTstMove || static_cast(pFrame)->HasFollow() || @@ -1885,6 +1890,7 @@ pTmpFrame->RemoveFromLayout(); pTmpFrame->InsertBefore( pUp, pOldNext ); + pTmpFrame->InvalidateInfFlags(); // restore flags } else { diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/flowfrm.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/flowfrm.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/flowfrm.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/flowfrm.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2404,6 +2404,12 @@ ( pNextNewUpper == m_rThis.GetUpper() || pNextNewUpper->GetType() != m_rThis.GetUpper()->GetType() ) ) { + // tdf#107398 do not leave empty footnote container around + if (!pNewUpper->Lower() && pNewUpper->IsFootnoteContFrame()) + { + pNewUpper->Cut(); + SwFrame::DestroyFrame(pNewUpper); + } pNewUpper = nullptr; OSL_FAIL( " - layout loop control for layout action applied!" ); } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/laycache.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/laycache.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/laycache.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/laycache.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -454,6 +454,51 @@ } } +namespace { + +bool sanityCheckLayoutCache(SwLayCacheImpl const& rCache, + SwNodes const& rNodes, sal_uLong nNodeIndex) +{ + auto const nStartOfContent(rNodes.GetEndOfContent().StartOfSectionNode()->GetIndex()); + nNodeIndex -= nStartOfContent; + auto const nMaxIndex(rNodes.GetEndOfContent().GetIndex() - nStartOfContent); + for (size_t nIndex = 0; nIndex < rCache.size(); ++nIndex) + { + auto const nBreakIndex(rCache.GetBreakIndex(nIndex)); + if (nBreakIndex < nNodeIndex || nMaxIndex <= nBreakIndex) + { + SAL_WARN("sw.layout", + "invalid node index in layout-cache: " << nBreakIndex); + return false; + } + auto const nBreakType(rCache.GetBreakType(nIndex)); + switch (nBreakType) + { + case SW_LAYCACHE_IO_REC_PARA: + if (!rNodes[nBreakIndex + nStartOfContent]->IsTextNode()) + { + SAL_WARN("sw.layout", + "invalid node of type 'P' in layout-cache"); + return false; + } + break; + case SW_LAYCACHE_IO_REC_TABLE: + if (!rNodes[nBreakIndex + nStartOfContent]->IsTableNode()) + { + SAL_WARN("sw.layout", + "invalid node of type 'T' in layout-cache"); + return false; + } + break; + default: + assert(false); // Read shouldn't have inserted that + } + } + return true; +} + +} // namespace + /** helper class, which utilizes the layout cache information * to distribute the document content to the right pages. * It's used by the InsertCnt_(..)-function. @@ -478,19 +523,19 @@ pImpl = pDoc->GetLayoutCache() ? pDoc->GetLayoutCache()->LockImpl() : nullptr; if( pImpl ) { - nMaxParaPerPage = 1000; - nStartOfContent = pDoc->GetNodes().GetEndOfContent().StartOfSectionNode() - ->GetIndex(); - nNodeIndex -= nStartOfContent; - nIndex = 0; - while( nIndex < pImpl->size() && pImpl->GetBreakIndex( nIndex ) < nNodeIndex ) + SwNodes const& rNodes(pDoc->GetNodes()); + if (sanityCheckLayoutCache(*pImpl, rNodes, nNodeIndex)) { - ++nIndex; + nIndex = 0; + nStartOfContent = rNodes.GetEndOfContent().StartOfSectionNode()->GetIndex(); + nMaxParaPerPage = 1000; } - if( nIndex >= pImpl->size() ) + else { pDoc->GetLayoutCache()->UnlockImpl(); pImpl = nullptr; + nIndex = USHRT_MAX; + nStartOfContent = USHRT_MAX; } } else diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/layhelp.hxx libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/layhelp.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/layout/layhelp.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/layout/layhelp.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -66,9 +66,9 @@ bool Read( SvStream& rStream ); - sal_uLong GetBreakIndex( sal_uInt16 nIdx ) const { return mIndices[ nIdx ]; } + sal_uLong GetBreakIndex( size_t nIdx ) const { return mIndices[ nIdx ]; } sal_Int32 GetBreakOfst( size_t nIdx ) const { return aOffset[ nIdx ]; } - sal_uInt16 GetBreakType( sal_uInt16 nIdx ) const { return aType[ nIdx ]; } + sal_uInt16 GetBreakType( size_t nIdx ) const { return aType[ nIdx ]; } size_t GetFlyCount() const { return m_FlyCache.size(); } SwFlyCache& GetFlyCache( size_t nIdx ) { return m_FlyCache[ nIdx ]; } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/objectpositioning/anchoredobjectposition.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/objectpositioning/anchoredobjectposition.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/objectpositioning/anchoredobjectposition.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/objectpositioning/anchoredobjectposition.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -486,8 +486,12 @@ nAdjustedRelPosY = aPgAlignArea.Top() - nTopOfAnch; } - // tdf#91260 - allow textboxes extending beyond the page bottom - if ( nAdjustedRelPosY < nProposedRelPosY ) + // tdf#91260 - allow textboxes extending beyond the page bottom + // tdf#101627 - the patch a4dee94afed9ade6ac50237c8d99a6e49d3bebc1 + // for tdf#91260 causes problems if the textbox + // is anchored in the footer, so exclude this case + if ( !( GetAnchorFrame().GetUpper() && GetAnchorFrame().GetUpper()->IsFooterFrame() ) + && nAdjustedRelPosY < nProposedRelPosY ) { const SwFrameFormat* pFormat = &(GetFrameFormat()); if ( SwTextBoxHelper::isTextBox(&GetObject()) ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/undo/unattr.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/undo/unattr.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/undo/unattr.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/undo/unattr.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -200,21 +200,21 @@ { // search for the Format in the Document; if it does not exist any more, // the attribute is not restored! - bool bFound = false; + size_t nPos = SIZE_MAX; switch ( m_nFormatWhich ) { case RES_TXTFMTCOLL: case RES_CONDTXTFMTCOLL: - bFound = pDoc->GetTextFormatColls()->Contains( m_pFormat ); + nPos = pDoc->GetTextFormatColls()->GetPos( m_pFormat ); break; case RES_GRFFMTCOLL: - bFound = pDoc->GetGrfFormatColls()->Contains( + nPos = pDoc->GetGrfFormatColls()->GetPos( static_cast(m_pFormat) ); break; case RES_CHRFMT: - bFound = pDoc->GetCharFormats()->Contains( m_pFormat ); + nPos = pDoc->GetCharFormats()->GetPos( m_pFormat ); break; case RES_FRMFMT: @@ -225,14 +225,14 @@ { m_pFormat = static_cast(pNd)->GetTable().GetFrameFormat(); - bFound = true; + nPos = 0; break; } else if ( pNd->IsSectionNode() ) { m_pFormat = static_cast(pNd)->GetSection().GetFormat(); - bFound = true; + nPos = 0; break; } else if ( pNd->IsStartNode() && (SwTableBoxStartNode == @@ -246,7 +246,7 @@ if ( pBox ) { m_pFormat = pBox->GetFrameFormat(); - bFound = true; + nPos = 0; break; } } @@ -255,13 +255,13 @@ SAL_FALLTHROUGH; case RES_DRAWFRMFMT: case RES_FLYFRMFMT: - if (pDoc->GetSpzFrameFormats()->Contains( m_pFormat ) - || pDoc->GetFrameFormats()->Contains( m_pFormat )) - bFound = true; + if ( ( pDoc->GetSpzFrameFormats()->find( static_cast(m_pFormat) ) != pDoc->GetSpzFrameFormats()->end() ) + || ( pDoc->GetFrameFormats()->find( static_cast( m_pFormat ) ) != pDoc->GetFrameFormats()->end() ) ) + nPos = 0; break; } - if ( !bFound ) + if ( nPos == SIZE_MAX ) { // Format does not exist; reset m_pFormat = nullptr; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/undo/unfmco.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/undo/unfmco.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/undo/unfmco.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/undo/unfmco.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -74,7 +74,7 @@ // this array. // does the format still exist? - if( rDoc.GetTextFormatColls()->Contains(static_cast(pFormatColl)) ) + if( SIZE_MAX != rDoc.GetTextFormatColls()->GetPos(static_cast(pFormatColl)) ) { rDoc.SetTextFormatColl(rPaM, static_cast(pFormatColl), mbReset, mbResetListAttrs); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/core/view/viewimp.cxx libreoffice-l10n-5.3.3~rc2/sw/source/core/view/viewimp.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/core/view/viewimp.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/core/view/viewimp.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -106,7 +106,7 @@ SwViewShellImp::~SwViewShellImp() { - delete m_pAccessibleMap; + m_pAccessibleMap.reset(); delete m_pPagePreviewLayout; @@ -449,9 +449,9 @@ SwAccessibleMap *SwViewShellImp::CreateAccessibleMap() { - OSL_ENSURE( !m_pAccessibleMap, "accessible map exists" ); - m_pAccessibleMap = new SwAccessibleMap( GetShell() ); - return m_pAccessibleMap; + assert(!m_pAccessibleMap); + m_pAccessibleMap.reset(new SwAccessibleMap(GetShell())); + return m_pAccessibleMap.get(); } void SwViewShellImp::FireAccessibleEvents() diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ascii/ascatr.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ascii/ascatr.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ascii/ascatr.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ascii/ascatr.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -206,6 +206,18 @@ if ( !bExportSoftHyphens ) aOutStr = aOutStr.replaceAll(OUStringLiteral1(CHAR_SOFTHYPHEN), ""); + // all INWORD/BREAKWORD should be already removed by OutAttr + // but the field-marks are not attributes so filter those + static sal_Unicode const forbidden [] = { + CH_TXT_ATR_INPUTFIELDSTART, + CH_TXT_ATR_INPUTFIELDEND, + CH_TXT_ATR_FORMELEMENT, + CH_TXT_ATR_FIELDSTART, + CH_TXT_ATR_FIELDEND, + 0 + }; + aOutStr = comphelper::string::removeAny(aOutStr, forbidden); + rWrt.Strm().WriteUnicodeOrByteText( aOutStr ); } nStrPos = nNextAttr; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -4140,10 +4140,10 @@ css::text::GraphicCrop aGraphicCropStruct; xPropSet->getPropertyValue( "GraphicCrop" ) >>= aGraphicCropStruct; - sal_Int16 nCropL = aGraphicCropStruct.Left; - sal_Int16 nCropR = aGraphicCropStruct.Right; - sal_Int16 nCropT = aGraphicCropStruct.Top; - sal_Int16 nCropB = aGraphicCropStruct.Bottom; + sal_Int32 nCropL = aGraphicCropStruct.Left; + sal_Int32 nCropR = aGraphicCropStruct.Right; + sal_Int32 nCropT = aGraphicCropStruct.Top; + sal_Int32 nCropB = aGraphicCropStruct.Bottom; // simulate border padding as a negative crop. const SfxPoolItem* pItem; @@ -6563,8 +6563,11 @@ void DocxAttributeOutput::CharScaleWidth( const SvxCharScaleWidthItem& rScaleWidth ) { + // Clamp CharScaleWidth to OOXML limits ([1..600]) + const sal_Int16 nScaleWidth( std::max( 1, + std::min( rScaleWidth.GetValue(), 600 ) ) ); m_pSerializer->singleElementNS( XML_w, XML_w, - FSNS( XML_w, XML_val ), OString::number( rScaleWidth.GetValue() ).getStr(), FSEND ); + FSNS( XML_w, XML_val ), OString::number( nScaleWidth ).getStr(), FSEND ); } void DocxAttributeOutput::CharRelief( const SvxCharReliefItem& rRelief ) diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8graf.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8graf.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8graf.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8graf.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1246,12 +1246,20 @@ return nullptr; sal_uInt16 nCount = SVBT16ToShort( aCallB.dpPolyLine.aBits1 ) >> 1 & 0x7fff; + if (nCount < 1) + { + SAL_WARN("sw.ww8", "Short CaptionBox header"); + return nullptr; + } + std::unique_ptr xP(new SVBT16[nCount * 2]); bool bCouldRead = checkRead(*m_pStrm, xP.get(), nCount * 4); // Punkte einlesen - OSL_ENSURE(bCouldRead, "Short CaptionBox header"); if (!bCouldRead) + { + SAL_WARN("sw.ww8", "Short CaptionBox header"); return nullptr; + } sal_uInt8 nTyp = (sal_uInt8)nCount - 1; if( nTyp == 1 && SVBT16ToShort( xP[0] ) == SVBT16ToShort( xP[2] ) ) @@ -1286,7 +1294,7 @@ else // nein -> Nimm Linie SetStdAttr( rSet, aCallB.dpPolyLine.aLnt, aCallB.dptxbx.aShd ); SetFill( rSet, aCallB.dptxbx.aFill ); - rSet.Put( SdrCaptionTypeItem( aCaptA[nTyp] ) ); + rSet.Put(SdrCaptionTypeItem(aCaptA[nTyp % SAL_N_ELEMENTS(aCaptA)])); return pObj; } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par2.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par2.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par2.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -654,8 +654,14 @@ } void SwWW8ImplReader::SetAnlvStrings(SwNumFormat &rNum, WW8_ANLV const &rAV, - const sal_uInt8* pText, bool bOutline) + const sal_uInt8* pText, size_t nStart, size_t nElements, bool bOutline) { + if (nStart > nElements) + return; + + pText += nStart; + nElements -= nStart; + bool bInsert = false; // Default rtl_TextEncoding eCharSet = m_eStructCharSet; @@ -663,13 +669,26 @@ bool bListSymbol = pF && ( pF->chs == 2 ); // Symbol/WingDings/... OUString sText; + sal_uInt32 nLen = rAV.cbTextBefore + rAV.cbTextAfter; if (m_bVer67) { - sText = OUString(reinterpret_cast(pText), rAV.cbTextBefore + rAV.cbTextAfter, eCharSet); + if (nLen > nElements) + { + SAL_WARN("sw.ww8", "SetAnlvStrings: ignoring out of range " + << nLen << " vs " << nElements << " max"); + return; + } + sText = OUString(reinterpret_cast(pText), nLen, eCharSet); } else { - for(sal_Int32 i = 0; i < rAV.cbTextBefore + rAV.cbTextAfter; ++i, pText += 2) + if (nLen > nElements / 2) + { + SAL_WARN("sw.ww8", "SetAnlvStrings: ignoring out of range " + << nLen << " vs " << nElements / 2 << " max"); + return; + } + for(sal_uInt32 i = 0; i < nLen; ++i, pText += 2) { sText += OUStringLiteral1(SVBT16ToShort(*reinterpret_cast(pText))); } @@ -754,7 +773,7 @@ m_bAktAND_fNumberAcross = 0 != pAD->fNumberAcross; WW8_ANLV const &rAV = pAD->eAnlv; SetBaseAnlv(aNF, rAV, nSwLevel); // set the base format - SetAnlvStrings(aNF, rAV, pAD->rgchAnld, bOutLine ); // set the rest + SetAnlvStrings(aNF, rAV, pAD->rgchAnld, 0, SAL_N_ELEMENTS(pAD->rgchAnld), bOutLine); // set the rest } pNumR->Set(nSwLevel, aNF); } @@ -838,6 +857,13 @@ return; } + if (static_cast(nLen) < sizeof(WW8_ANLD)) + { + SAL_WARN("sw.ww8", "ANLevelDesc property is " << nLen << " long, needs to be at least " << sizeof(WW8_ANLD)); + m_nSwNumLevel = 0xff; + return; + } + if( m_nSwNumLevel <= MAXLEVEL // Value range mapping WW:1..9 -> SW:0..8 && m_nSwNumLevel <= 9 ){ // No Bullets or Numbering @@ -884,7 +910,7 @@ if (!m_bVer67) nTextOfs *= 2; - SetAnlvStrings(aNF, rAV, pO->rgch + nTextOfs, true); // and apply + SetAnlvStrings(aNF, rAV, pO->rgch, nTextOfs, SAL_N_ELEMENTS(pO->rgch), true); // and apply pNumR->Set(nSwLevel, aNF); } @@ -900,6 +926,14 @@ m_pNumOlst = nullptr; return; } + + if (static_cast(nLen) < sizeof(WW8_OLST)) + { + SAL_WARN("sw.ww8", "WW8_OLST property is " << nLen << " long, needs to be at least " << sizeof(WW8_OLST)); + m_pNumOlst = nullptr; + return; + } + m_pNumOlst = new WW8_OLST; if( nLen < sal::static_int_cast< sal_Int32 >(sizeof( WW8_OLST )) ) // fill if to short memset( m_pNumOlst, 0, sizeof( *m_pNumOlst ) ); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par6.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par6.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par6.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par6.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -311,7 +311,7 @@ void SwWW8ImplReader::Read_ParaBiDi(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(), RES_FRAMEDIR); else { @@ -2683,7 +2683,7 @@ // parameters according to the table in WWScan.cxx. void SwWW8ImplReader::Read_Special(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 1) { m_bSpec = false; return; @@ -2694,7 +2694,7 @@ // Read_Obj is used for fObj and for fOle2 ! void SwWW8ImplReader::Read_Obj(sal_uInt16 , const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 1) m_bObj = false; else { @@ -2717,7 +2717,7 @@ void SwWW8ImplReader::Read_PicLoc(sal_uInt16 , const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 4) { m_nPicLocFc = 0; m_bSpec = false; // Is this always correct? @@ -2746,7 +2746,7 @@ if (pSI != nullptr) { pSI->mnWW8OutlineLevel = - static_cast< sal_uInt8 >( ( pData ? *pData : 0 ) ); + static_cast< sal_uInt8 >( ( (pData && nLen >= 1) ? *pData : 0 ) ); NewAttr( SfxUInt16Item( RES_PARATR_OUTLINELEVEL, SwWW8StyInf::WW8OutlineLevelToOutlinelevel( pSI->mnWW8OutlineLevel ) ) ); } } @@ -2754,7 +2754,7 @@ { const sal_uInt8 nOutlineLevel = SwWW8StyInf::WW8OutlineLevelToOutlinelevel( - static_cast((pData ? *pData : 0))); + static_cast(((pData && nLen >= 1) ? *pData : 0))); NewAttr(SfxUInt16Item(RES_PARATR_OUTLINELEVEL, nOutlineLevel)); } } @@ -2763,7 +2763,7 @@ { if( !m_bIgnoreText ) { - if( nLen < 0 ) + if (nLen < (m_bVer67 ? 3 : 4)) { //otherwise disable after we print the char if (m_pPlcxMan && m_pPlcxMan->GetDoingDrawTextBox()) @@ -2848,7 +2848,7 @@ sal_uInt16 nMask = 1 << nI; - if (nLen < 0) + if (nLen < 1) { if (nI < 2) { @@ -2914,7 +2914,7 @@ void SwWW8ImplReader::Read_Bidi(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) //Property end + if (nLen < 1) //Property end { m_bBidi = false; m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(),RES_CHRATR_BIDIRTL); @@ -3028,7 +3028,7 @@ sal_uInt16 nMask = 1 << nI; - if( nLen < 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(),nEndIds[nI]); m_pCtrlStck->SetToggleBiDiAttr(nI, false); @@ -3196,7 +3196,8 @@ void SwWW8ImplReader::Read_SubSuper( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ){ + if (nLen < 1) + { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_ESCAPEMENT ); return; } @@ -3288,15 +3289,15 @@ void SwWW8ImplReader::Read_SubSuperProp( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); + + if (nLen < (eVersion <= ww::eWW2 ? 1 : 2)) { if (!ConvertSubToGraphicPlacement()) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_ESCAPEMENT ); return; } - ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); - // font position in HalfPoints short nPos = eVersion <= ww::eWW2 ? static_cast< sal_Int8 >( *pData ) : SVBT16ToShort( pData ); sal_Int32 nPos2 = nPos * ( 10 * 100 ); // HalfPoints in 100 * tw @@ -3321,7 +3322,7 @@ { FontLineStyle eUnderline = LINESTYLE_NONE; bool bWordLine = false; - if( pData ) + if (pData && nLen) { // Parameter: 0 = none, 1 = single, 2 = by Word, // 3 = double, 4 = dotted, 5 = hidden @@ -3351,7 +3352,7 @@ } // if necessary, mix up stack and exit! - if( nLen < 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_UNDERLINE ); m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_WORDLINEMODE ); @@ -3375,7 +3376,7 @@ void SwWW8ImplReader::Read_DoubleLine_Rotate( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) // close the tag + if (nLen < 0) // close the tag { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_TWO_LINES ); m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_ROTATE ); @@ -3414,7 +3415,7 @@ if (!m_bVer67 && m_pPlcxMan && m_pPlcxMan->GetChpPLCF()->HasSprm(NS_sprm::LN_CCv)) return; - if( nLen < 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_COLOR ); else { @@ -3431,7 +3432,7 @@ void SwWW8ImplReader::Read_TextForeColor(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 4) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_COLOR ); else { @@ -3444,7 +3445,7 @@ void SwWW8ImplReader::Read_UnderlineColor(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 0) { //because the UnderlineColor is not a standalone attribute in SW, it belongs to the underline attribute. //And, the .doc file stores attributes separately, this attribute ends here, the "underline" @@ -3461,7 +3462,8 @@ const SwAttrSet& aSet = m_pAktColl->GetAttrSet(); SvxUnderlineItem *pUnderline = static_cast(aSet.Get( RES_CHRATR_UNDERLINE, false ).Clone()); - if(pUnderline){ + if (pUnderline && nLen >= 4) + { pUnderline->SetColor( Color( msfilter::util::BGRToRGB(SVBT32ToUInt32(pData)) ) ); m_pAktColl->SetFormatAttr( *pUnderline ); delete pUnderline; @@ -3474,7 +3476,8 @@ { SvxUnderlineItem *pUnderline = static_cast(m_pAktItemSet->Get( RES_CHRATR_UNDERLINE, false ) .Clone()); - if(pUnderline){ + if (pUnderline && nLen >= 4) + { pUnderline->SetColor( Color( msfilter::util::BGRToRGB(SVBT32ToUInt32(pData)) ) ); m_pAktItemSet->Put( *pUnderline ); delete pUnderline; @@ -3484,7 +3487,7 @@ else { SvxUnderlineItem* pUnderlineAttr = const_cast(static_cast(m_pCtrlStck->GetOpenStackAttr( *m_pPaM->GetPoint(), RES_CHRATR_UNDERLINE ))); - if( pUnderlineAttr != nullptr ) + if (pUnderlineAttr && nLen >= 4) pUnderlineAttr->SetColor( Color( msfilter::util::BGRToRGB(SVBT32ToUInt32( pData )))); } } @@ -3707,7 +3710,7 @@ ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); - if( nLen < 0 ) // end of attribute + if (nLen < 2) // end of attribute { if (eVersion <= ww::eWW6) { @@ -3749,7 +3752,7 @@ ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); - if( nLen < 0 ) // end of attribute + if (nLen < (eVersion <= ww::eWW2 ? 1 : 2)) // end of attribute { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), nId ); if (eVersion <= ww::eWW6) // reset additionally the CTL size @@ -3792,14 +3795,14 @@ void SwWW8ImplReader::Read_CharSet(sal_uInt16 , const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) + if (nLen < 1) { // end of attribute m_eHardCharSet = RTL_TEXTENCODING_DONTKNOW; return; } sal_uInt8 nfChsDiff = *pData; - if( nfChsDiff ) + if (nfChsDiff && nLen >= 2) m_eHardCharSet = rtl_getTextEncodingFromWindowsCharset( *(pData + 1) ); else m_eHardCharSet = RTL_TEXTENCODING_DONTKNOW; @@ -3827,7 +3830,7 @@ return; } - if( nLen < 0 ) // end of attribute + if (nLen < 2) // end of attribute m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), nId ); else { @@ -3841,7 +3844,8 @@ */ void SwWW8ImplReader::Read_CColl( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ){ // end of attribute + if (nLen < 2) // end of attribute + { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_TXTATR_CHARFMT ); m_nCharFormat = -1; return; @@ -3870,7 +3874,8 @@ */ void SwWW8ImplReader::Read_Kern( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ){ // end of attribute + if (nLen < 2) // end of attribute + { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_KERNING ); return; } @@ -3880,7 +3885,7 @@ void SwWW8ImplReader::Read_FontKern( sal_uInt16, const sal_uInt8* , short nLen ) { - if( nLen < 0 ) // end of attribute + if (nLen < 0) // end of attribute m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_AUTOKERN ); else NewAttr(SvxAutoKernItem(true, RES_CHRATR_AUTOKERN)); @@ -3892,7 +3897,7 @@ if (!m_bVer67 && m_pPlcxMan && m_pPlcxMan->GetChpPLCF()->HasSprm(0xCA71)) return; - if( nLen <= 0 ) + if (nLen < 2) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_BACKGROUND ); } @@ -3914,7 +3919,7 @@ void SwWW8ImplReader::Read_TextBackColor(sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen <= 0) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_BACKGROUND ); } @@ -3936,7 +3941,7 @@ void SwWW8ImplReader::Read_CharHighlight(sal_uInt16, const sal_uInt8* pData, short nLen) { - if( nLen <= 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_HIGHLIGHT ); } @@ -3954,7 +3959,7 @@ void SwWW8ImplReader::Read_NoLineNumb(sal_uInt16 , const sal_uInt8* pData, short nLen) { - if( nLen < 0 ) // end of attribute + if (nLen < 0) // end of attribute { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_LINENUMBER ); return; @@ -3966,7 +3971,7 @@ aLN.SetStartValue( pLN->GetStartValue() ); } - aLN.SetCountLines( pData && (0 == *pData) ); + aLN.SetCountLines(pData && nLen >= 1 && (0 == *pData)); NewAttr( aLN ); } @@ -3982,10 +3987,11 @@ } return false; } + // Sprm 16, 17 void SwWW8ImplReader::Read_LR( sal_uInt16 nId, const sal_uInt8* pData, short nLen ) { - if (nLen < 0) // end of attribute + if (nLen < 2) // end of attribute { m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(), RES_LR_SPACE); return; @@ -4136,7 +4142,10 @@ if (m_bStyNormal && m_bWWBugNormal) return; - if( nLen < 0 ){ + ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); + + if (nLen < (eVersion <= ww::eWW2 ? 3 : 4)) + { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_LINESPACING ); if( !( m_nIniFlags & WW8FL_NO_IMPLPASP ) ) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_UL_SPACE ); @@ -4144,7 +4153,6 @@ } short nSpace = SVBT16ToShort( pData ); - ww::WordVersion eVersion = m_pWwFib->GetFIBVersion(); short nMulti = (eVersion <= ww::eWW2) ? 1 : SVBT16ToShort( pData + 2 ); SvxLineSpaceRule eLnSpc; @@ -4204,7 +4212,7 @@ void SwWW8ImplReader::Read_ParaAutoBefore(sal_uInt16, const sal_uInt8 *pData, short nLen) { - if (nLen < 0) + if (nLen < 1) { m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(), RES_UL_SPACE); return; @@ -4231,7 +4239,7 @@ void SwWW8ImplReader::Read_ParaAutoAfter(sal_uInt16, const sal_uInt8 *pData, short nLen) { - if (nLen < 0) + if (nLen < 1) { m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(), RES_UL_SPACE); return; @@ -4270,7 +4278,7 @@ // then please send this Document to SH."); // bWWBugNormal is not a sufficient criterion for this distance being wrong. - if( nLen < 0 ) + if (nLen < 2) { // end of attribute m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_UL_SPACE ); @@ -4303,7 +4311,7 @@ void SwWW8ImplReader::Read_ParaContextualSpacing( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_UL_SPACE ); return; @@ -4321,7 +4329,7 @@ // when this value is 0, text properties bias towards non-far east properties. // when this value is 1, text properties bias towards far east properties. // when this value is 2, text properties bias towards complex properties. - if( nLen < 0 ) //Property end + if (nLen < 1) //Property end { m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(),RES_CHRATR_IDCTHINT); } @@ -4333,7 +4341,7 @@ void SwWW8ImplReader::Read_Justify( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_ADJUST ); return; @@ -4386,7 +4394,7 @@ void SwWW8ImplReader::Read_RTLJustify( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_ADJUST ); return; @@ -4445,7 +4453,7 @@ return ; } - if( nLen < 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), nId ); else { @@ -4458,7 +4466,7 @@ void SwWW8ImplReader::Read_Emphasis( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_EMPHASIS_MARK ); else { @@ -4515,7 +4523,7 @@ void SwWW8ImplReader::Read_ScaleWidth( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 2) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_SCALEW ); else { @@ -4529,7 +4537,7 @@ void SwWW8ImplReader::Read_Relief( sal_uInt16 nId, const sal_uInt8* pData, short nLen ) { - if( nLen < 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_RELIEF ); else { @@ -4556,7 +4564,7 @@ void SwWW8ImplReader::Read_TextAnim(sal_uInt16 /*nId*/, const sal_uInt8* pData, short nLen) { - if (nLen < 0) + if (nLen < 1) m_pCtrlStck->SetAttr(*m_pPaM->GetPoint(), RES_CHRATR_BLINK); else { @@ -4718,7 +4726,7 @@ if (!m_bVer67 && m_pPlcxMan && m_pPlcxMan->GetPapPLCF()->HasSprm(0xC64D)) return; - if (nLen <= 0) + if (nLen < 2) { // end of attribute m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_BACKGROUND ); @@ -4794,7 +4802,7 @@ void SwWW8ImplReader::Read_Border(sal_uInt16 , const sal_uInt8*, short nLen) { - if( nLen < 0 ) + if (nLen < 0) { if( m_bHasBorder ) { @@ -4871,7 +4879,7 @@ //if (!bVer67 && pPlcxMan && pPlcxMan->GetChpPLCF()->HasSprm(0xCA72)) // return; - if( nLen < 0 ) + if (nLen < 0) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_BOX ); m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_CHRATR_SHADOW ); @@ -4911,7 +4919,7 @@ void SwWW8ImplReader::Read_Hyphenation( sal_uInt16, const sal_uInt8* pData, short nLen ) { // set Hyphenation flag - if( nLen <= 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_HYPHENZONE ); else { @@ -4933,7 +4941,7 @@ void SwWW8ImplReader::Read_WidowControl( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen < 1) { m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_WIDOWS ); m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_ORPHANS ); @@ -4953,7 +4961,7 @@ void SwWW8ImplReader::Read_UsePgsuSettings(sal_uInt16,const sal_uInt8* pData,short nLen) { - if( nLen <= 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_SNAPTOGRID); else { @@ -4966,7 +4974,7 @@ void SwWW8ImplReader::Read_AlignFont( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen < 2) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_VERTALIGN); else { @@ -5000,7 +5008,7 @@ void SwWW8ImplReader::Read_KeepLines( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_PARATR_SPLIT ); else NewAttr( SvxFormatSplitItem( ( *pData & 1 ) == 0, RES_PARATR_SPLIT ) ); @@ -5008,7 +5016,7 @@ void SwWW8ImplReader::Read_KeepParas( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_KEEP ); else NewAttr( SvxFormatKeepItem( ( *pData & 1 ) != 0 , RES_KEEP) ); @@ -5016,7 +5024,7 @@ void SwWW8ImplReader::Read_BreakBefore( sal_uInt16, const sal_uInt8* pData, short nLen ) { - if( nLen <= 0 ) + if (nLen < 1) m_pCtrlStck->SetAttr( *m_pPaM->GetPoint(), RES_BREAK ); else NewAttr( SvxFormatBreakItem( diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par.hxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8par.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8par.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -1537,7 +1537,7 @@ // the corresponding structures are: LSTF, LVLF, LFO LFOLVL void SetAnlvStrings(SwNumFormat &rNum, WW8_ANLV const &rAV, const sal_uInt8* pText, - bool bOutline); + size_t nStart, size_t nElements, bool bOutline); void SetAnld(SwNumRule* pNumR, WW8_ANLD const * pAD, sal_uInt8 nSwLevel, bool bOutLine); void SetNumOlst( SwNumRule* pNumR, WW8_OLST* pO, sal_uInt8 nSwLevel ); SwNumRule* GetStyRule(); diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8scan.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8scan.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8scan.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8scan.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -4902,6 +4902,11 @@ { // Length of actual sprm pRes->nMemLen = maSprmParser.GetSprmSize(pRes->nSprmId, pRes->pMemPos); + if (pRes->nMemLen > p->nSprmsLen) + { + SAL_WARN("sw.ww8", "Short sprm, len " << pRes->nMemLen << " claimed, max possible is " << p->nSprmsLen); + pRes->nSprmId = 0; + } } } diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8struc.hxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8struc.hxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/ww8/ww8struc.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/ww8/ww8struc.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -649,7 +649,7 @@ sal_uInt8 fNumberAcross; // 0x11 number across cells in table rows(instead of down) sal_uInt8 fRestartHdn; // 0x12 restart heading number on section boundary sal_uInt8 fSpareX; // 0x13 unused( should be 0) - sal_uInt8 rgchAnld[32]; // 0x14 characters displayed before/after autonumber + sal_uInt8 rgchAnld[32]; // 0x14 characters displayed before/after autonumber }; struct WW8_OLST diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/filter/xml/xmlimp.cxx libreoffice-l10n-5.3.3~rc2/sw/source/filter/xml/xmlimp.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/filter/xml/xmlimp.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/filter/xml/xmlimp.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -52,6 +52,7 @@ #include #include #include +#include #include "xmlimp.hxx" #include "xmltexti.hxx" #include @@ -138,6 +139,29 @@ const Reference< xml::sax::XAttributeList > & /*xAttrList*/ ) : SvXMLImportContext( rImport, nPrfx, rLName ) { + // tdf#107211: if at this point we don't have a defined char style "Default" + // or "Default Style", add a mapping for it as it is not written + // into the file since it's not really a style but "no style" + // (hence referencing it actually makes no sense except for hyperlinks + // which default to something other than "Default") + OUString const sDefault(SW_RES(STR_POOLCOLL_STANDARD)); + uno::Reference const& xStyles( + rImport.GetTextImport()->GetTextStyles()); + if (!xStyles->hasByName("Default")) + { // this old name was used before LO 4.0 + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, "Default", sDefault); + } + if (!xStyles->hasByName("Default_20_Style")) + { // this new name contains a space which is converted to _20_ on export + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, "Default_20_Style", sDefault); + } + bool isEncoded(false); + OUString const defaultEncoded( + rImport.GetMM100UnitConverter().encodeStyleName(sDefault, &isEncoded)); + if (isEncoded && !xStyles->hasByName(defaultEncoded)) + { // new name may contain a space which is converted to _20_ on export + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, defaultEncoded, sDefault); + } } SwXMLBodyContext_Impl::~SwXMLBodyContext_Impl() diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/ui/utlui/poolfmt.src libreoffice-l10n-5.3.3~rc2/sw/source/ui/utlui/poolfmt.src --- libreoffice-l10n-5.3.2~rc2/sw/source/ui/utlui/poolfmt.src 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/ui/utlui/poolfmt.src 2017-05-03 16:46:29.000000000 +0000 @@ -155,6 +155,7 @@ // Template names +// tdf#107211 please don't change STANDARD, except back to "Default" String STR_POOLCOLL_STANDARD { Text [ en-US ] = "Default Style" ; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/uibase/uiview/view2.cxx libreoffice-l10n-5.3.3~rc2/sw/source/uibase/uiview/view2.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/uibase/uiview/view2.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/uibase/uiview/view2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -714,7 +714,6 @@ if (pArgs && pArgs->GetItemState(nSlot, false, &pItem) == SfxItemState::SET) nRedline = static_cast(pItem)->GetValue(); - const SwRangeRedline *pCurrent = m_pWrtShell->GetCurrRedline(); SwDoc* pDoc = m_pWrtShell->GetDoc(); const SwRedlineTable& rTable = pDoc->getIDocumentRedlineAccess().GetRedlineTable(); const SwRangeRedline *pNext = nullptr; @@ -723,15 +722,6 @@ else pNext = m_pWrtShell->SelNextRedline(); - // FN_REDLINE_PREV_CHANGE leaves the selection point at the start of the redline. - // In such cases, SelNextRedline (which starts searching from the selection point) - // immediately finds the current redline and advances the selection point to its end. - - // This behavior means that PREV_CHANGE followed by NEXT_CHANGE would not change - // the current redline, so we detect it and select the next redline again. - if (pCurrent && pCurrent == pNext && nRedline == USHRT_MAX) - pNext = m_pWrtShell->SelNextRedline(); - if (pNext) m_pWrtShell->SetInSelect(); } @@ -739,24 +729,9 @@ case FN_REDLINE_PREV_CHANGE: { - const SwPaM *pCursor = m_pWrtShell->GetCursor(); - const SwPosition initialCursorStart = *pCursor->Start(); const SwRangeRedline *pPrev = m_pWrtShell->SelPrevRedline(); if (pPrev) - { - // FN_REDLINE_NEXT_CHANGE leaves the selection point at the end of the redline. - // In such cases, SelPrevRedline (which starts searching from the selection point) - // immediately finds the current redline and advances the selection point to its - // start. - - // This behavior means that NEXT_CHANGE followed by PREV_CHANGE would not change - // the current redline, so we detect it and move to the previous redline again. - if (initialCursorStart == *pPrev->Start()) - pPrev = m_pWrtShell->SelPrevRedline(); - } - - if (pPrev) m_pWrtShell->SetInSelect(); } break; diff -Nru libreoffice-l10n-5.3.2~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-l10n-5.3.3~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-l10n-5.3.2~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1765,6 +1765,11 @@ void SwWrtShell::ChangeHeaderOrFooter( const OUString& rStyleName, bool bHeader, bool bOn, bool bShowWarning) { + SdrView *const pSdrView = GetDrawView(); + if (pSdrView && pSdrView->IsTextEdit()) + { // tdf#107474 deleting header may delete active drawing object + pSdrView->SdrEndTextEdit(true); + } addCurrentPosition(); StartAllAction(); StartUndo( UNDO_HEADER_FOOTER ); // #i7983# diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/af/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: af\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794659.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593134.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/af/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 16:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 11:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467650563.000000\n" +"X-POOTLE-MTIME: 1480676667.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hiërargies" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/af/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 16:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 11:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: af\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467650650.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480676832.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/af/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-29 18:28+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-01 15:54+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456770514.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1462118072.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/af/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 16:50+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 11:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467651022.000000\n" +"X-POOTLE-MTIME: 1480677245.000000\n" #: imagemgr.src msgctxt "" @@ -3905,6 +3905,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/af/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 16:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 11:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: af\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467651243.000000\n" +"X-POOTLE-MTIME: 1480678276.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/af/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/af/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/af/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/af/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-02 11:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/source/options.po libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/source/options.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/source/options.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 16:40+0000\n" +"PO-Revision-Date: 2017-04-23 00:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487263253.000000\n" +"X-POOTLE-MTIME: 1492907129.000000\n" #: connpooloptions.src msgctxt "" @@ -274,7 +274,9 @@ msgid "" "The folder you selected does not contain a Java runtime environment.\n" "Please select a different folder." -msgstr "እርስዎ የመረጡት ፎልደር የ Java runtime environment. አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ" +msgstr "" +"እርስዎ የመረጡት ፎልደር የ Java runtime environment.\n" +"አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ" #: optjava.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/source/tabpages.po libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/source/tabpages.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/source/tabpages.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/source/tabpages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-19 21:34+0000\n" +"PO-Revision-Date: 2017-04-23 00:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487540096.000000\n" +"X-POOTLE-MTIME: 1492907147.000000\n" #: border.src msgctxt "" @@ -280,7 +280,9 @@ msgid "" "The pattern was modified without saving. \n" "Modify the selected pattern or add a new pattern" -msgstr "ንድፉ ተሻሽሏል ነገር ግን አልተቀመጠም የ ተመረጠውን ንድፍ ያሻሽሉ ወይንም አዲስ ንድፍ ይጨምሩ" +msgstr "" +"ንድፉ ተሻሽሏል ነገር ግን አልተቀመጠም\n" +"የ ተመረጠውን ንድፍ ያሻሽሉ ወይንም አዲስ ንድፍ ይጨምሩ" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-20 00:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489969104.000000\n" +"X-POOTLE-MTIME: 1492907193.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000–2017 LibreOffice contributors." #: aboutdialog.ui msgctxt "" @@ -15484,7 +15484,7 @@ "title\n" "string.text" msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)" -msgstr "ፊደል ማረሚያ እና ሰዋሰው: $LANGUAGE ($LOCATION)" +msgstr "ፊደል እና ሰዋሰው ማረሚያ: $LANGUAGE ($LOCATION)" #: spellingdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/fpicker/source/office.po libreoffice-l10n-5.3.3~rc2/translations/source/am/fpicker/source/office.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/fpicker/source/office.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/fpicker/source/office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2016-12-10 03:10+0000\n" +"PO-Revision-Date: 2017-04-23 00:22+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481339418.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492906959.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -250,7 +250,9 @@ msgid "" "Are you sure you want to delete the service?\n" "\"$servicename$\"" -msgstr "በ እርግጥ የተመረጠውን ግልጋሎት ማጥፋት ይፈልጋሉ?\"$servicename$\"" +msgstr "" +"በ እርግጥ የተመረጠውን ግልጋሎት ማጥፋት ይፈልጋሉ?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-18 20:02+0000\n" +"PO-Revision-Date: 2017-04-02 22:39+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489867329.000000\n" +"X-POOTLE-MTIME: 1491172740.000000\n" #: 00000002.xhp msgctxt "" @@ -17014,7 +17014,7 @@ "par_id3150398\n" "help.text" msgid "Expression1, Expression2: Any numerical expressions that you want to subtract." -msgstr "መግለጫ1, መግለጫ2: ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት" +msgstr "መግለጫ1: መግለጫ2: ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት" #: 03070100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-28 17:57+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490723843.000000\n" #: 01120000.xhp @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/schart/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/schart/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-17 01:14+0000\n" +"PO-Revision-Date: 2017-03-31 01:47+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489713299.000000\n" +"X-POOTLE-MTIME: 1490924866.000000\n" #: 03010000.xhp msgctxt "" @@ -4806,7 +4806,7 @@ "par_id3791924\n" "help.text" msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version." -msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት perspective ተመሳሳይ እንደ አሁኑ እትም" +msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት ተመሳሳይ አስተያየት እንደ አሁኑ እትም" #: three_d_view.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-17 19:11+0000\n" +"PO-Revision-Date: 2017-03-30 20:20+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489777905.000000\n" +"X-POOTLE-MTIME: 1490905223.000000\n" #: 00000001.xhp msgctxt "" @@ -4112,7 +4112,7 @@ "83\n" "help.text" msgid "On the help page for $[officename] general you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop." -msgstr "በ እርዳታ ገጽ ላይ ለ $[officename] ባጠቃላይ እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: እና መጎተቻ እና መጣያ የ መሳሰሉ" +msgstr "በ እርዳታ ገጽ ላይ ለ $[officename] ባጠቃላይ እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: መጎተቻ እና መጣያ የመሳሰሉ" #: 00000099.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-28 18:53+0000\n" +"PO-Revision-Date: 2017-03-31 01:42+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490727230.000000\n" +"X-POOTLE-MTIME: 1490924546.000000\n" #: 01110000.xhp msgctxt "" @@ -614,7 +614,7 @@ "tit\n" "help.text" msgid "Form Controls" -msgstr "የፎርም መቆጣጠሪያዎች" +msgstr "የ ፎርም መቆጣጠሪያዎች" #: 01170000.xhp msgctxt "" @@ -674,7 +674,7 @@ "3\n" "help.text" msgid "Form Controls" -msgstr "የፎርም መቆጣጠሪያዎች" +msgstr "የ ፎርም መቆጣጠሪያዎች" #: 01170000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/05.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/05.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-12-07 18:50+0000\n" +"PO-Revision-Date: 2017-04-02 22:43+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481136618.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491173028.000000\n" #: 00000001.xhp msgctxt "" @@ -941,7 +941,7 @@ "10\n" "help.text" msgid "After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click Display to load the corresponding Help document." -msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ ማሳያተመሳሳዩን የ እርዳታ ገጽ ለ መጫን" +msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ ማሳያ ተመሳሳዩን የ እርዳታ ገጽ ለ መጫን" #: 00000140.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/autokorr.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/autokorr.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/autokorr.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/autokorr.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-30 19:31+0000\n" +"PO-Revision-Date: 2017-04-02 22:39+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485804682.000000\n" +"X-POOTLE-MTIME: 1491172786.000000\n" #: 01000000.xhp msgctxt "" @@ -390,7 +390,7 @@ "2\n" "help.text" msgid "Minus signs have been replaced" -msgstr "የመቀነስ ምልክት ተቀይሯል" +msgstr "የ መቀነሻ ምልክት ተቀይሯል" #: 12000000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-28 18:09+0000\n" +"PO-Revision-Date: 2017-04-02 22:41+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490724592.000000\n" +"X-POOTLE-MTIME: 1491172896.000000\n" #: 02000000.xhp msgctxt "" @@ -12761,7 +12761,7 @@ "par_id1278420\n" "help.text" msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon." -msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክይ ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት" +msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክት ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት" #: rep_main.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-28 19:00+0000\n" +"PO-Revision-Date: 2017-03-30 19: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490727634.000000\n" +"X-POOTLE-MTIME: 1490902447.000000\n" #: aaa_start.xhp msgctxt "" @@ -10043,7 +10043,7 @@ "54\n" "help.text" msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor." -msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው የ ፍጹም መንገድ ስሞች ነው በውስጣዊ: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው" +msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው በ ውስጣዊ የ ፍጹም መንገድ ስሞች ነው: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው" #: imagemap.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-17 01:24+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-02 21:44+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489713879.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491169466.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "ይምረጡ" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" @@ -8626,7 +8626,7 @@ "par_idN106AE\n" "help.text" msgid "Character style" -msgstr "የባህሪ ዘዴ" +msgstr "የ ባህሪ ዘዴ" #: 01041100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/smath/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/smath/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-28 19:07+0000\n" +"PO-Revision-Date: 2017-04-02 22:40+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490728074.000000\n" +"X-POOTLE-MTIME: 1491172804.000000\n" #: 02080000.xhp msgctxt "" @@ -501,7 +501,7 @@ "7\n" "help.text" msgid "Minus" -msgstr "መቀነስ" +msgstr "መቀነሻ" #: 03090100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-28 02:40+0000\n" +"PO-Revision-Date: 2017-03-30 23:02+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490668849.000000\n" +"X-POOTLE-MTIME: 1490914965.000000\n" #: anchor_object.xhp msgctxt "" @@ -15753,7 +15753,7 @@ "68\n" "help.text" msgid "Right-click in a paragraph, choose Paragraph, set the options that you want, for example, the background color, and then click OK." -msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ አንቀጽ ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ : የ መደብ ቀለም: እና ከዛ ይጫኑ እሺ." +msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ አንቀጽ ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ: የ መደብ ቀለም: እና ከዛ ይጫኑ እሺ." #: text_emphasize.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/swriter.po libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/helpcontent2/source/text/swriter.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/helpcontent2/source/text/swriter.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-28 17:05+0000\n" +"PO-Revision-Date: 2017-03-30 19: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490720721.000000\n" +"X-POOTLE-MTIME: 1490902474.000000\n" #: classificationbar.xhp msgctxt "" @@ -2428,7 +2428,7 @@ "14\n" "help.text" msgid "Text documents in $[officename] have an integrated calculation function that helps you execute sophisticated calculations or logical links. You can easily create a table in a text document in order to perform calculations." -msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የማስሊያ ተግባር አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም" +msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የ ማስሊያ ተግባር አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም" #: main0503.xhp msgctxt "" @@ -2518,4 +2518,4 @@ "28\n" "help.text" msgid "You can use the Help system as a complete reference for $[officename] applications, including instructions for simple and complex tasks." -msgstr "መጠቀም ይችላሉ የእርዳታ ስርአቱን እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም መመሪያዎች ለቀላል እና ለውስብስብ ስራዎች" +msgstr "መጠቀም ይችላሉ የ እርዳታ ስርአቱን እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም መመሪያዎች ለ ቀላል እና ለ ውስብስብ ስራዎች" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-19 23:57+0000\n" +"PO-Revision-Date: 2017-04-02 22:52+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489967877.000000\n" +"X-POOTLE-MTIME: 1491173523.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -23587,7 +23587,7 @@ "Label\n" "value.text" msgid "Page Settings" -msgstr "የገጽ ማሰናጃዎች" +msgstr "የ ገጽ ማሰናጃ" #: ReportCommands.xcu msgctxt "" @@ -26512,7 +26512,7 @@ "Label\n" "value.text" msgid "Page Column Type" -msgstr "የገጽ አምድ አይነት" +msgstr "የ ገጽ አምድ አይነት" #: WriterCommands.xcu msgctxt "" @@ -26530,7 +26530,7 @@ "Label\n" "value.text" msgid "Page Settings" -msgstr "የገጽ ማሰናጃዎች" +msgstr "የ ገጽ ማሰናጃ" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-19 16:49+0000\n" +"PO-Revision-Date: 2017-04-23 00:22+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489942189.000000\n" +"X-POOTLE-MTIME: 1492906925.000000\n" #: Addons.xcu msgctxt "" @@ -1292,7 +1292,7 @@ "STR_DELETE_SLIDES\n" "value.text" msgid "Delete %SLIDES slides." -msgstr "ማጥፊያ %ተንሸራታች ተንሸራታች" +msgstr "ማጥፊያ %ተንሸራታች ተንሸራታቾች" #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/am/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-19 23:52+0000\n" +"PO-Revision-Date: 2017-04-23 00:20+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489967564.000000\n" +"X-POOTLE-MTIME: 1492906850.000000\n" #: filter.src msgctxt "" @@ -9112,7 +9112,7 @@ "1\n" "string.text" msgid "Not available. Returns the error value #N/A." -msgstr "ዝግጁ አይደለም የስህተት ዋጋ ይመልሳል #ዝ/አ" +msgstr "ዝግጁ አይደለም የ ስህተት ዋጋ ይመልሳል #ዝ/አ" #: scfuncs.src msgctxt "" @@ -23351,7 +23351,7 @@ "10\n" "string.text" msgid "triangulation_precision" -msgstr "" +msgstr "ሶስትዮሽ_ትክክለኛነት" #. This description uses almost all available space in the dialog, make sure translations fit in size. #: scfuncs.src diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/am/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-23 23:47+0000\n" +"PO-Revision-Date: 2017-04-02 23:42+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487893656.000000\n" +"X-POOTLE-MTIME: 1491176548.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6548,14 +6548,13 @@ msgstr "Case se_nsitive" #: optcalculatepage.ui -#, fuzzy msgctxt "" "optcalculatepage.ui\n" "case\n" "tooltip_text\n" "string.text" msgid "Disable case sensitivity for interoperability with Microsoft Excel" -msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel" +msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel ጋር" #: optcalculatepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/am/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-04 20:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00:28+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480881922.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907327.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "በ ቅደም ተከተል" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "የ መሙያ አቀራረብ ዘዴ" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "አዲስ ዘዴ ከ ምርጫ ውስጥ" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "የ ማሻሻያ ዘዴ" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/am/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-23 02:43+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485139385.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n" -"\n" -"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n" -"\n" -"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" -"\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" -"\n" -"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/am/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-03-20 00:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489968923.000000\n" +"X-POOTLE-MTIME: 1492907221.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "የ ጽሁፍ አቀራረብ [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/am/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-14 15:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481730375.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907229.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hungarian (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "English (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/am/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 18:33+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480703596.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907258.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "SmartArts. መጫን አልተቻለም: ማስቀመጥ በ Microsoft Office 2010 ወይንም ከዚያ በኋላ ያሉ ይህን ችግር ያስወግዳሉ" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/am/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/am/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/am/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/am/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-19 16:50+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 00: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489942235.000000\n" +"X-POOTLE-MTIME: 1492907272.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1796,7 +1796,7 @@ "label\n" "string.text" msgid "_Focal length" -msgstr "" +msgstr "የ _ትኩረት እርዝመት" #: docking3deffects.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_ማጥፊያ" +msgid "_Restart in Normal Mode" +msgstr "በ መደበኛ ዘዴ _እንደገና ማስጀመሪያ" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-16 03:36+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-03 15:28+0000\n" "Last-Translator: Khaled \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489635387.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491233297.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "الحقوق محفوظة © ٢٠٠٠–٢٠١٦ لمساهمي ليبر‌ أوفيس." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "Component method name:" -msgstr "" +msgstr "اسم طريقة المكون:" #: autocorrectdialog.ui msgctxt "" @@ -995,7 +995,7 @@ "label\n" "string.text" msgid "Unlinked image" -msgstr "" +msgstr "الصور غير المربوطة" #: backgroundpage.ui msgctxt "" @@ -1004,7 +1004,7 @@ "label\n" "string.text" msgid "Find images" -msgstr "" +msgstr "ابحث عن الصور" #: backgroundpage.ui msgctxt "" @@ -1085,7 +1085,7 @@ "0\n" "stringlist.text" msgid "Color" -msgstr "لون" +msgstr "اللون" #: backgroundpage.ui msgctxt "" @@ -1094,7 +1094,7 @@ "1\n" "stringlist.text" msgid "Image" -msgstr "" +msgstr "الصورة" #: baselinksdialog.ui msgctxt "" @@ -1103,7 +1103,7 @@ "title\n" "string.text" msgid "Edit Links" -msgstr "حرّر الوصلات" +msgstr "حرّر الروابط" #: baselinksdialog.ui msgctxt "" @@ -1139,7 +1139,7 @@ "label\n" "string.text" msgid "_Break Link" -msgstr "" +msgstr "_فك الرابط" #: baselinksdialog.ui msgctxt "" @@ -1229,7 +1229,7 @@ "label\n" "string.text" msgid "_Automatic" -msgstr "ت_لقائية" +msgstr "ت_لقائيًا" #: baselinksdialog.ui msgctxt "" @@ -1268,7 +1268,6 @@ msgstr "النمط:" #: bitmaptabpage.ui -#, fuzzy msgctxt "" "bitmaptabpage.ui\n" "bitmapstyle\n" @@ -1278,7 +1277,6 @@ msgstr "كما هي" #: bitmaptabpage.ui -#, fuzzy msgctxt "" "bitmaptabpage.ui\n" "bitmapstyle\n" @@ -1288,7 +1286,6 @@ msgstr "مملوءة" #: bitmaptabpage.ui -#, fuzzy msgctxt "" "bitmaptabpage.ui\n" "bitmapstyle\n" @@ -1304,7 +1301,7 @@ "3\n" "stringlist.text" msgid "Zoomed" -msgstr "" +msgstr "مقرّبة" #: bitmaptabpage.ui msgctxt "" @@ -1313,7 +1310,7 @@ "4\n" "stringlist.text" msgid "Custom" -msgstr "" +msgstr "مخصّص" #: bitmaptabpage.ui msgctxt "" @@ -1322,7 +1319,7 @@ "5\n" "stringlist.text" msgid "Tiled" -msgstr "" +msgstr "مبلّطة" #: bitmaptabpage.ui msgctxt "" @@ -1334,14 +1331,13 @@ msgstr "المقاس:" #: bitmaptabpage.ui -#, fuzzy msgctxt "" "bitmaptabpage.ui\n" "label5\n" "label\n" "string.text" msgid "W:" -msgstr "ع:" +msgstr "عرض:" #: bitmaptabpage.ui msgctxt "" @@ -1350,7 +1346,7 @@ "label\n" "string.text" msgid "H:" -msgstr "" +msgstr "طول:" #: bitmaptabpage.ui msgctxt "" @@ -1368,7 +1364,7 @@ "label\n" "string.text" msgid "Position:" -msgstr "الموقع:" +msgstr "الموضع:" #: bitmaptabpage.ui msgctxt "" @@ -1458,7 +1454,7 @@ "label\n" "string.text" msgid "Tiling Position:" -msgstr "" +msgstr "موضع التبليط:" #: bitmaptabpage.ui msgctxt "" @@ -1467,7 +1463,7 @@ "label\n" "string.text" msgid "X:" -msgstr "" +msgstr "س:" #: bitmaptabpage.ui msgctxt "" @@ -1476,7 +1472,7 @@ "label\n" "string.text" msgid "Y:" -msgstr "" +msgstr "ص:" #: bitmaptabpage.ui msgctxt "" @@ -1485,7 +1481,7 @@ "label\n" "string.text" msgid "Tiling Offset:" -msgstr "" +msgstr "إزاحة التبليط:" #: bitmaptabpage.ui msgctxt "" @@ -1494,7 +1490,7 @@ "0\n" "stringlist.text" msgid "Row" -msgstr "" +msgstr "صف" #: bitmaptabpage.ui msgctxt "" @@ -1503,7 +1499,7 @@ "1\n" "stringlist.text" msgid "Column" -msgstr "" +msgstr "عمود" #: bitmaptabpage.ui msgctxt "" @@ -1512,7 +1508,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "الخيارات" #: bitmaptabpage.ui msgctxt "" @@ -1521,7 +1517,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Example" -msgstr "" +msgstr "مثال" #: bitmaptabpage.ui msgctxt "" @@ -1530,7 +1526,7 @@ "label\n" "string.text" msgid "Preview" -msgstr "" +msgstr "معاينة" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1557,7 +1553,7 @@ "label\n" "string.text" msgid "OpenCL vendor:" -msgstr "" +msgstr "الشركة:" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1584,7 +1580,7 @@ "label\n" "string.text" msgid "Edit OpenCL Blacklist Entry" -msgstr "" +msgstr "حرر مُدخل قائمة أوبن‌سي‌إل السوداء" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1593,7 +1589,7 @@ "label\n" "string.text" msgid "Create OpenCL Blacklist Entry" -msgstr "" +msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل السوداء" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1602,7 +1598,7 @@ "label\n" "string.text" msgid "Edit OpenCL Whitelist Entry" -msgstr "" +msgstr "حرر مُدخل قائمة أوبن‌سي‌إل البيضاء" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1611,7 +1607,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "" +msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل البيضاء" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1620,7 +1616,7 @@ "label\n" "string.text" msgid "OpenCL Information" -msgstr "" +msgstr "معلومات أوبن‌سي‌إل" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1629,7 +1625,7 @@ "0\n" "stringlist.text" msgid "Any" -msgstr "" +msgstr "أي واحد" #: borderareatransparencydialog.ui msgctxt "" @@ -1710,7 +1706,7 @@ "label\n" "string.text" msgid "Pr_esets:" -msgstr "" +msgstr "الإعدادات الجا_هزة:" #: borderpage.ui msgctxt "" @@ -1719,7 +1715,7 @@ "label\n" "string.text" msgid "_Adjacent Cells:" -msgstr "" +msgstr "الخلايا الم_تجاورة:" #: borderpage.ui msgctxt "" @@ -1728,7 +1724,7 @@ "label\n" "string.text" msgid "Remove border" -msgstr "" +msgstr "أزل الحد" #: borderpage.ui msgctxt "" @@ -1791,7 +1787,7 @@ "label\n" "string.text" msgid "Right:" -msgstr "يمين:" +msgstr "اليمين:" #: borderpage.ui msgctxt "" @@ -1818,37 +1814,34 @@ "label\n" "string.text" msgid "Synchronize" -msgstr "مزامنة" +msgstr "زامِن" #: borderpage.ui -#, fuzzy msgctxt "" "borderpage.ui\n" "label10\n" "label\n" "string.text" msgid "Spacing to Contents" -msgstr "المسافة حتى المحتويات" +msgstr "المسافة إلى المحتويات" #: borderpage.ui -#, fuzzy msgctxt "" "borderpage.ui\n" "label22\n" "label\n" "string.text" msgid "_Position:" -msgstr "الم_وضع" +msgstr "الم_وضع:" #: borderpage.ui -#, fuzzy msgctxt "" "borderpage.ui\n" "distanceft\n" "label\n" "string.text" msgid "Distan_ce:" -msgstr "ال_مسافة" +msgstr "ال_مسافة:" #: borderpage.ui msgctxt "" @@ -1860,7 +1853,6 @@ msgstr "ال_لون:" #: borderpage.ui -#, fuzzy msgctxt "" "borderpage.ui\n" "label11\n" @@ -1885,7 +1877,7 @@ "label\n" "string.text" msgid "_Merge adjacent line styles" -msgstr "" +msgstr "ا_دمج طُرز الخطوط المتجاورة" #: borderpage.ui msgctxt "" @@ -1894,7 +1886,7 @@ "label\n" "string.text" msgid "Properties" -msgstr "خصائص" +msgstr "الخصائص" #: breaknumberoption.ui msgctxt "" @@ -1906,27 +1898,24 @@ msgstr "فصل المقاطع" #: breaknumberoption.ui -#, fuzzy msgctxt "" "breaknumberoption.ui\n" "beforelabel\n" "label\n" "string.text" msgid "Characters Before Break" -msgstr "المحارف قبل الفاصل" +msgstr "عدد الأحرف قبل الفاصل" #: breaknumberoption.ui -#, fuzzy msgctxt "" "breaknumberoption.ui\n" "afterlabel\n" "label\n" "string.text" msgid "Characters After Break" -msgstr "المحارف بعد الفاصل" +msgstr "عدد الأحرف بعد الفاصل" #: breaknumberoption.ui -#, fuzzy msgctxt "" "breaknumberoption.ui\n" "minimallabel\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-11-25 02:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5723,22 +5723,20 @@ msgstr "دوال" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 15:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 13:43+0000\n" "Last-Translator: صفا الفليج \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484833406.000000\n" #: dialog.src @@ -725,6 +725,30 @@ msgid "Hierarchical" msgstr "هيكلي" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-06 22:52+0000\n" "Last-Translator: Khaled \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488840765.000000\n" #: alienwarndialog.ui @@ -795,19 +795,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"إن %PRODUCTNAME متوفّر وفقا لشروط رخصة موزيلا العامة، الإصدارة الثانية. يمكن الحصول على نسخة من الرخصة على http://mozilla.org/MPL/2.0/.\n" -"\n" -"يمكنك إيجاد إشعارات الحقوق وشروط الرخص الإضافية لنصوص الأطراف الثالثة والمطبّقة في أجزاء من البرمجية في ملف LICENSE.html، انقر \"أظهر الرخصة\" لترى التفاصيل الدقيقة بالإنجليزية.\n" -"\n" -"كل العلامات التجارية وتلك المسجلة أيضا المذكورة هنا ملك لأصحابها المعنيين.\n" -"\n" -"الحقوق محفوظة © 2000–2016 مساهمو ليبر أوفيس. جميع الحقوق محفوظة.\n" -"\n" -"أُنشأ هذا المنتج من %OOOVENDOR، وذلك بناء على أوبن‌أوفيس.أورغ، محفوظ الحقوق 2000، 2011 أوركال و/أو شركاتها التابعة. يشكر %OOOVENDOR كل أعضاء المجتمع، فضلا طالع http://www.libreoffice.org/ لتفاصيل أكثر." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-20 16:39+0000\n" "Last-Translator: Khaled \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484930380.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-10 18:06+0000\n" "Last-Translator: Khaled \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489169206.000000\n" #: imagemgr.src @@ -3891,6 +3891,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-15 20:13+0000\n" "Last-Translator: صفا الفليج \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487189597.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-16 03:55+0000\n" "Last-Translator: Khaled \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489636530.000000\n" #: acceptrejectchangesdialog.ui @@ -5078,20 +5078,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "أ_نهِ" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_طبّق التغييرات و أعد التشغيل" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ar/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-06 22:50+0000\n" -"Last-Translator: Khaled \n" +"PO-Revision-Date: 2017-04-01 07:00+0000\n" +"Last-Translator: صفا الفليج \n" "Language-Team: none\n" "Language: ar\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488840656.000000\n" +"X-POOTLE-MTIME: 1491030012.000000\n" #: abstractdialog.ui msgctxt "" @@ -9270,7 +9270,7 @@ "tooltip_text\n" "string.text" msgid "Insert Audio or Video" -msgstr "" +msgstr "أدرِج صوت و فديو" #: notebookbar.ui msgctxt "" @@ -10527,24 +10527,22 @@ msgstr "واصفة" #: optcaptionpage.ui -#, fuzzy msgctxt "" "optcaptionpage.ui\n" "label4\n" "label\n" "string.text" msgid "Level:" -msgstr "مستوى" +msgstr "المستوى:" #: optcaptionpage.ui -#, fuzzy msgctxt "" "optcaptionpage.ui\n" "label6\n" "label\n" "string.text" msgid "Separator:" -msgstr "فاصل" +msgstr "الفاصل" #: optcaptionpage.ui msgctxt "" @@ -10566,14 +10564,13 @@ msgstr "ترقيم الواصفات لكل فصل" #: optcaptionpage.ui -#, fuzzy msgctxt "" "optcaptionpage.ui\n" "label3\n" "label\n" "string.text" msgid "Character style:" -msgstr "نمط الأحرف" +msgstr "نمط الأحرف:" #: optcaptionpage.ui msgctxt "" @@ -13799,7 +13796,7 @@ "title\n" "string.text" msgid "Continue at the beginning?" -msgstr "" +msgstr "أأتابع من البداية؟" #: querycontinuebegindialog.ui msgctxt "" @@ -13808,7 +13805,7 @@ "text\n" "string.text" msgid "Do you want to continue at the beginning?" -msgstr "" +msgstr "أتريد المتابعة من البداية؟" #: querycontinuebegindialog.ui msgctxt "" @@ -13826,7 +13823,7 @@ "title\n" "string.text" msgid "Continue at the end?" -msgstr "" +msgstr "أأتابع من النهاية؟" #: querycontinueenddialog.ui msgctxt "" @@ -13835,7 +13832,7 @@ "text\n" "string.text" msgid "Do you want to continue at the end?" -msgstr "" +msgstr "أتريد المتابعة من النهاية؟" #: querycontinueenddialog.ui msgctxt "" @@ -14318,7 +14315,7 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "أ_ضف..." #: selectaddressdialog.ui msgctxt "" @@ -14327,7 +14324,7 @@ "label\n" "string.text" msgid "_Create..." -msgstr "" +msgstr "أ_نشئ..." #: selectaddressdialog.ui msgctxt "" @@ -14336,17 +14333,16 @@ "label\n" "string.text" msgid "_Filter..." -msgstr "" +msgstr "ر_شّح..." #: selectaddressdialog.ui -#, fuzzy msgctxt "" "selectaddressdialog.ui\n" "edit\n" "label\n" "string.text" msgid "_Edit..." -msgstr "تحرير" +msgstr "_حرّر..." #: selectaddressdialog.ui msgctxt "" @@ -14355,7 +14351,7 @@ "label\n" "string.text" msgid "Change _Table..." -msgstr "" +msgstr "غيّر ال_جدول..." #: selectaddressdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/as/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:47+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Assamese \n" "Language: as\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794877.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593303.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–2016 LibreOffice contributors." -msgstr "স্বত্বাধিকাৰ ©২০০০-২০১৪ LibreOffice অৱদানকাৰীসকল।" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/as/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-10 16:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Assamese \n" "Language: as\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457626599.000000\n" +"X-POOTLE-MTIME: 1478888209.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "ওপৰৰ পৰা তললৈকে ক্ৰমানুসাৰে" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/as/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 16:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Assamese \n" "Language: as\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467650708.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480595687.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/as/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 19:36+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: as_IN \n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440531397.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/as/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 08:27+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Assamese \n" "Language: as\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462696034.000000\n" +"X-POOTLE-MTIME: 1478888824.000000\n" #: imagemgr.src msgctxt "" @@ -3891,6 +3891,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/as/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 14:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: as_IN \n" "Language: as\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449845950.000000\n" +"X-POOTLE-MTIME: 1478889867.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/as/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/as/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/as/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/as/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5086,16 +5086,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:48+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ast\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794929.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593267.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME ye una suite de productividá moderna, cenciella d'usar y de códigu abiertu, pa procesar testu, fueyes de cálculu, presentaciones y más." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2014 collaboradores de LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 18:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Softastur \n" @@ -5721,22 +5721,20 @@ msgstr "Funciones" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 17:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Softastur \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-10 18:48+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ast\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457635713.000000\n" +"X-POOTLE-MTIME: 1478888927.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "Xerárquicu" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-11-22 15:10+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ast\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1479827454.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480595753.000000\n" #: alienwarndialog.ui msgctxt "" @@ -790,7 +790,6 @@ msgstr "_Amosar la llicencia" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -803,19 +802,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME ta disponible suxetu a los términos de la Llicencia Pública de Mozilla, v. 2.0. Pue alcontrar una copia de la llicencia en http://mozilla.org/MPL/2.0/.\n" -"\n" -"Otros avisos de copyright del códigu de terceros y les condiciones de llicencia aplicables a porciones del software descríbense nel ficheru LICENSE.html; escueya «Amosar la llicencia» pa ver los detalles exactos n'inglés.\n" -"\n" -"Toles marques comerciales que se mencionen, rexistraes o non, son propiedá de los dueños respeutivos.\n" -"\n" -"Copyright © 2000–2014 de los collaboradores de LibreOffice. Tolos drechos acutaos.\n" -"\n" -"Esti productu creóse por %OOOVENDOR, basáu en OpenOffice.org, que tien Copyright 2000, 2011 de Oracle y/o los sos afiliaos. %OOOVENDOR reconoz a tolos miembros de la comunidá; por favor, vea http://www.libreoffice.org/ pa más detalles." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 19:32+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440531157.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 08:37+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ast\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462696653.000000\n" +"X-POOTLE-MTIME: 1478889547.000000\n" #: imagemgr.src msgctxt "" @@ -3892,6 +3892,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 14:53+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ast\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449845629.000000\n" +"X-POOTLE-MTIME: 1478890584.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ast/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ast/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ast/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ast/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5105,16 +5105,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/basctl/source/basicide.po libreoffice-l10n-5.3.3~rc2/translations/source/be/basctl/source/basicide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/basctl/source/basicide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/basctl/source/basicide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: basicide\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-29 14:52+0000\n" +"PO-Revision-Date: 2017-03-30 08:17+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490799134.000000\n" +"X-POOTLE-MTIME: 1490861844.000000\n" #: basicprint.src msgctxt "" @@ -745,13 +745,12 @@ msgstr "Модулі..." #: basidesh.src -#, fuzzy msgctxt "" "basidesh.src\n" "RID_STR_REMOVEWATCHTIP\n" "string.text" msgid "Remove Watch" -msgstr "Remove Watch" +msgstr "Выдаліць назіральніка" #: basidesh.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/basctl/uiconfig/basicide/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/basctl/uiconfig/basicide/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/basctl/uiconfig/basicide/ui.po 2017-05-03 16:46:29.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-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-03-29 14:55+0000\n" +"PO-Revision-Date: 2017-03-30 08:17+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490799340.000000\n" +"X-POOTLE-MTIME: 1490861865.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -386,14 +386,13 @@ msgstr "_Экспартаваць..." #: managebreakpoints.ui -#, fuzzy msgctxt "" "managebreakpoints.ui\n" "ManageBreakpointsDialog\n" "title\n" "string.text" msgid "Manage Breakpoints" -msgstr "Manage Breakpoints" +msgstr "Кіраваць перапынкамі" #: managebreakpoints.ui msgctxt "" @@ -414,14 +413,13 @@ msgstr "Колькасць праходаў:" #: managebreakpoints.ui -#, fuzzy msgctxt "" "managebreakpoints.ui\n" "label1\n" "label\n" "string.text" msgid "Breakpoints" -msgstr "Breakpoints" +msgstr "Перапынкі" #: managelanguages.ui msgctxt "" @@ -478,7 +476,6 @@ msgstr "М_одуль:" #: modulepage.ui -#, fuzzy msgctxt "" "modulepage.ui\n" "newmodule\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/basic/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/be/basic/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/basic/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: classes\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-03-29 14:58+0000\n" +"PO-Revision-Date: 2017-03-30 10:15+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490799530.000000\n" +"X-POOTLE-MTIME: 1490868929.000000\n" #: sb.src msgctxt "" @@ -233,7 +233,6 @@ msgstr "Файл ужо адкрыты." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -243,7 +242,6 @@ msgstr "Памылка ўводу ці вываду з прыстасавання." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -253,7 +251,6 @@ msgstr "Файл ужо існуе." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -263,7 +260,6 @@ msgstr "Няправільная даўжыня запісу." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -273,7 +269,6 @@ msgstr "Дыск (ці дыскета) поўны." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -283,7 +278,6 @@ msgstr "Чытанне перасягае EOF." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -293,7 +287,6 @@ msgstr "Няправільны нумар запісу." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -303,7 +296,6 @@ msgstr "Занадта многа файлаў." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -313,7 +305,6 @@ msgstr "Прыстасаванне не прысутнае." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -323,7 +314,6 @@ msgstr "Не дазволены доступ." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -333,7 +323,6 @@ msgstr "Не гатовы дыск." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -343,7 +332,6 @@ msgstr "Не рэалізавана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -353,7 +341,6 @@ msgstr "Немагчыма мяняць назву па-над рознымі дыскамі." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -363,7 +350,6 @@ msgstr "Памылка дасягання каталогу ці файла." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -373,7 +359,6 @@ msgstr "Не знойдзены шлях." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -383,7 +368,6 @@ msgstr "Не настаўлена аб'ектавая зменная." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -393,7 +377,6 @@ msgstr "Няправільны ўзор радка." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -403,7 +386,6 @@ msgstr "Не дазваляецца ўжыванне нуля." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -413,7 +395,6 @@ msgstr "Памылка DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -423,7 +404,6 @@ msgstr "Чакаецца водгук на спробу далучэння DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -433,7 +413,6 @@ msgstr "Няма наяўных каналаў DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -443,7 +422,6 @@ msgstr "Ніякія праграмы не адгукаюцца на ініцыяцыю далучэння DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -453,7 +431,6 @@ msgstr "Занадта многа праграм адгукнуліся на ініцыяцыю далучэння DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -463,7 +440,6 @@ msgstr "Канал DDE замкнуты." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -473,7 +449,6 @@ msgstr "Вонкавая праграма няздольная выканаць аперацыю DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -483,7 +458,6 @@ msgstr "Таймаут пры чаканні водгуку DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -493,7 +467,6 @@ msgstr "У час аперацыі DDE была націснута клавіша \"Escape\"." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -503,7 +476,6 @@ msgstr "Вонкавая праграма занятая." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -513,7 +485,6 @@ msgstr "Аперацыя DDE без даных." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -523,7 +494,6 @@ msgstr "Няправільны фармат даных." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -533,7 +503,6 @@ msgstr "Вонкавая праграма была спынена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -543,7 +512,6 @@ msgstr "Далучэнне DDE перапынена або зменена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -553,17 +521,15 @@ msgstr "Метад DDE выкліканы без адкрытага канала." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_INVALID_LINK & ERRCODE_RES_MASK\n" "string.text" msgid "Invalid DDE link format." -msgstr "Неправільны фармат спасылкі DDE." +msgstr "Няправільны фармат спасылкі DDE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -573,7 +539,6 @@ msgstr "Паведамленне DDE было згублена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -583,37 +548,33 @@ msgstr "Ужо здзейснена ўстаўлянне спасылкі." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n" "string.text" msgid "Link mode cannot be set due to invalid link topic." -msgstr "Немагчыма змяніць лад спасылкі, з-за недапушчальнай тэмы (topic) спасылкі." +msgstr "Немагчыма змяніць рэжым спасылкі з-за няправільнай тэмы." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n" "string.text" msgid "DDE requires the DDEML.DLL file." -msgstr "Дзеля DDE патрабуецца файл DDEML.DLL." +msgstr "DDE патрабуе файл DDEML.DLL." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_CANNOT_LOAD & ERRCODE_RES_MASK\n" "string.text" msgid "Module cannot be loaded; invalid format." -msgstr "Модуль немагчыма прачытаць, з-за недапушчальнага фармату." +msgstr "Немагчыма прачытаць модуль; няправільны фармат." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -623,17 +584,15 @@ msgstr "Недапушчальны індэкс аб'екта." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n" "string.text" msgid "Object is not available." -msgstr "Аб'ект не наяўны." +msgstr "Аб'ект недаступны." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -643,27 +602,24 @@ msgstr "Няправільнае значэнне ўласцівасці." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_PROP_READONLY & ERRCODE_RES_MASK\n" "string.text" msgid "This property is read-only." -msgstr "Гэта ўласцівасць з'яўляецца толькі-чытанай." +msgstr "Гэта ўласцівасць толькі для чытання." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_PROP_WRITEONLY & ERRCODE_RES_MASK\n" "string.text" msgid "This property is write only." -msgstr "Гэта ўласцівасць толькі дзеля запісу." +msgstr "Гэта ўласцівасць толькі для запісу." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -673,7 +629,6 @@ msgstr "Недапушчальная спасылка на аб'ект." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -683,7 +638,6 @@ msgstr "Не знойдзена ўласцівасць ці метад: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -693,7 +647,6 @@ msgstr "Патрабуецца аб'ект." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -703,7 +656,6 @@ msgstr "Няправільнае выкарыстанне аб'екта." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -713,7 +665,6 @@ msgstr "Аўтаматызацыя OLE не падтрымліваецца гэтым аб'ектам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -723,7 +674,6 @@ msgstr "Гэта ўласцівасць ці метад не падтрымліваецца гэтым аб'ектам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -733,7 +683,6 @@ msgstr "Памылка аўтаматызацыі OLE." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -743,7 +692,6 @@ msgstr "Гэта дзеянне не падтрымліваецца гэтым аб'ектам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -753,17 +701,15 @@ msgstr "Называныя аргументы не падтрымліваюцца гэтым аб'ектам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_LOCALE & ERRCODE_RES_MASK\n" "string.text" msgid "The current locale setting is not supported by the given object." -msgstr "Актыўнае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам." +msgstr "Бягучае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -773,17 +719,15 @@ msgstr "Называны аргумент не знойдзены." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_NOT_OPTIONAL & ERRCODE_RES_MASK\n" "string.text" msgid "Argument is not optional." -msgstr "Аргумент не з'яўляецца неабавязковым." +msgstr "Аргумент абавязковы." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -793,7 +737,6 @@ msgstr "Няправільная колькасць аргументаў." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -803,7 +746,6 @@ msgstr "Гэты аб'ект не з'яўляецца спісам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -813,7 +755,6 @@ msgstr "Недапушчальны парадкавы нумар." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -823,7 +764,6 @@ msgstr "Азначаная функцыя DLL не знойдзена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -833,7 +773,6 @@ msgstr "Недапушчальны фармат абменніка." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -843,27 +782,24 @@ msgstr "Гэты аб'ект не ўтрымлівае гэтай уласцівасці." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n" "string.text" msgid "Object does not have this method." -msgstr "Гэты аб'ект не ўтрымлівае гэтага метада." +msgstr "Гэты аб'ект не ўтрымлівае гэтага метаду." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_ARG_MISSING & ERRCODE_RES_MASK\n" "string.text" msgid "Required argument lacking." -msgstr "Адсутнічае патрабаваны аргумент." +msgstr "Адсутнічае абавязковы аргумент." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -873,17 +809,15 @@ msgstr "Няправільная колькасць аргументаў." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_METHOD_FAILED & ERRCODE_RES_MASK\n" "string.text" msgid "Error executing a method." -msgstr "Памылка пры выкананні метада." +msgstr "Памылка пры выкананні метаду." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -893,7 +827,6 @@ msgstr "Немагчыма наставіць уласцівасць." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -903,7 +836,6 @@ msgstr "Немагчыма вызначыць уласцівасць." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -913,7 +845,6 @@ msgstr "Нечаканы сімвал: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -923,7 +854,6 @@ msgstr "Чакалася: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -933,7 +863,6 @@ msgstr "Чакаўся сімвал." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -943,7 +872,6 @@ msgstr "Чакалася зменная." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -953,7 +881,6 @@ msgstr "Чакалася метка." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -963,7 +890,6 @@ msgstr "Немагчыма ўжыць гэта значэнне." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -973,7 +899,6 @@ msgstr "Зменная $(ARG1) ужо вызначана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -983,7 +908,6 @@ msgstr "Працэдура (\"sub\" ці \"function\") $(ARG1) ужо вызначана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -993,7 +917,6 @@ msgstr "Метка $(ARG1) ужо вызначана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1003,7 +926,6 @@ msgstr "Зменная $(ARG1) не знойдзена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1013,7 +935,6 @@ msgstr "Масіў ці працэдура $(ARG1) не знойдзена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1023,7 +944,6 @@ msgstr "Працэдура $(ARG1) не знойдзена." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1033,7 +953,6 @@ msgstr "Метка $(ARG1) не вызначана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1043,7 +962,6 @@ msgstr "Невядомы тып даных $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1053,7 +971,6 @@ msgstr "Чакалася Exit $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1063,7 +980,6 @@ msgstr "Блок сцвярджэння застаецца адкрытым: не хапае $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1073,7 +989,6 @@ msgstr "Дужкі ўзаемна не адпаведныя." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1083,7 +998,6 @@ msgstr "Сімвал $(ARG1) ужо вызначаны іншым чынам." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1093,7 +1007,6 @@ msgstr "Параметры не адпавядаюць працэдуры." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1103,17 +1016,15 @@ msgstr "Недапушчальны знак у ліку." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n" "string.text" msgid "Array must be dimensioned." -msgstr "Масіў мусіць мець вымярэнне(-і)." +msgstr "Масіў мусіць мець вымернасць." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1123,7 +1034,6 @@ msgstr "Else/Endif без If." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1133,7 +1043,6 @@ msgstr "Не дазваляецца $(ARG1) у працэдуры." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1143,7 +1052,6 @@ msgstr "Не дазваляецца $(ARG1) па-за працэдурай." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1153,17 +1061,15 @@ msgstr "Вызначэнні вымярэнняў узаемна не адпаведныя." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" "ERRCODE_BASIC_BAD_OPTION & ERRCODE_RES_MASK\n" "string.text" msgid "Unknown option: $(ARG1)." -msgstr "Невядомая магчымасць: $(ARG1)." +msgstr "Невядомы параметр: $(ARG1)." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1173,7 +1079,6 @@ msgstr "Канстанта $(ARG1) перавызначана." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" @@ -1183,7 +1088,6 @@ msgstr "Праграма занадта вялікая." #: sb.src -#, fuzzy msgctxt "" "sb.src\n" "RID_BASIC_START\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/chart2/source/controller/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/be/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/chart2/source/controller/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/chart2/source/controller/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: dialogs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2014-05-15 05:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 17:32+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1400132584.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491327163.000000\n" #: Strings.src msgctxt "" @@ -534,7 +534,7 @@ "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS\n" "string.text" msgid "Moving average trend line with period = %PERIOD" -msgstr "" +msgstr "Слізгальная сярэдняя лінія трэнду з перыядам = %PERIOD" #: Strings.src msgctxt "" @@ -750,7 +750,7 @@ "STR_ACTION_TOGGLE_GRID_HORZ\n" "string.text" msgid "Horizontal grid major/major&minor/off" -msgstr "" +msgstr "Гарызантальная сетка галоўная/галоўная+дадатковая/выкл." #: Strings.src msgctxt "" @@ -758,7 +758,7 @@ "STR_ACTION_TOGGLE_GRID_VERTICAL\n" "string.text" msgid "Vertical grid major/major&minor/off" -msgstr "" +msgstr "Вертыкальная сетка галоўная/галоўная+дадатковая/выкл." #: Strings.src msgctxt "" @@ -1010,7 +1010,7 @@ "STR_PROPERTY_ROLE_FILLCOLOR\n" "string.text" msgid "Fill Color" -msgstr "" +msgstr "Колер запаўнення" #: Strings.src msgctxt "" @@ -1018,7 +1018,7 @@ "STR_PROPERTY_ROLE_BORDERCOLOR\n" "string.text" msgid "Border Color" -msgstr "" +msgstr "Колер аблямоўкі" #: Strings_AdditionalControls.src msgctxt "" @@ -1266,7 +1266,7 @@ "STR_TYPE_GL3D_BAR\n" "string.text" msgid "GL3D Bar" -msgstr "" +msgstr "Брусок GL3D" #: Strings_ChartTypes.src msgctxt "" @@ -1274,7 +1274,7 @@ "STR_GL3D_BAR\n" "string.text" msgid "GL3D Bar Chart" -msgstr "" +msgstr "Брусковая дыяграма GL3D" #: Strings_Scale.src msgctxt "" @@ -1362,7 +1362,7 @@ "STR_REGRESSION_LINEAR\n" "string.text" msgid "Linear" -msgstr "" +msgstr "Лінейная" #: Strings_Statistic.src msgctxt "" @@ -1370,7 +1370,7 @@ "STR_REGRESSION_LOG\n" "string.text" msgid "Logarithmic" -msgstr "" +msgstr "Лагарыфмічная" #: Strings_Statistic.src msgctxt "" @@ -1378,7 +1378,7 @@ "STR_REGRESSION_EXP\n" "string.text" msgid "Exponential" -msgstr "" +msgstr "Экспанентная" #: Strings_Statistic.src msgctxt "" @@ -1386,7 +1386,7 @@ "STR_REGRESSION_POWER\n" "string.text" msgid "Power" -msgstr "" +msgstr "Ступенная" #: Strings_Statistic.src msgctxt "" @@ -1394,7 +1394,7 @@ "STR_REGRESSION_POLYNOMIAL\n" "string.text" msgid "Polynomial" -msgstr "" +msgstr "Паліномная" #: Strings_Statistic.src msgctxt "" @@ -1402,7 +1402,7 @@ "STR_REGRESSION_MOVING_AVERAGE\n" "string.text" msgid "Moving average" -msgstr "" +msgstr "Слізгальнае сярэдняе" #: Strings_Statistic.src msgctxt "" @@ -1410,4 +1410,4 @@ "STR_REGRESSION_MEAN\n" "string.text" msgid "Mean" -msgstr "" +msgstr "Сярэдняе" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/chart2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/chart2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/chart2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/chart2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-01 19:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-12 15:09+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462129630.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492009774.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -23,7 +23,7 @@ "title\n" "string.text" msgid "3D View" -msgstr "" +msgstr "Трохмерны від" #: chardialog.ui msgctxt "" @@ -32,7 +32,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Знак" #: chardialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Шрыфт" #: chardialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Шрыфтавыя эфекты" #: chardialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Месца" #: chartdatadialog.ui msgctxt "" @@ -68,7 +68,7 @@ "title\n" "string.text" msgid "Data Table" -msgstr "" +msgstr "Табліца даных" #: chartdatadialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "Insert Row" -msgstr "" +msgstr "Уставіць радок" #: chartdatadialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Insert Series" -msgstr "" +msgstr "Уставіць выбарку" #: chartdatadialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Insert Text Column" -msgstr "" +msgstr "Уставіць тэкставую калонку" #: chartdatadialog.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Delete Row" -msgstr "" +msgstr "Выдаліць радок" #: chartdatadialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "Delete Series" -msgstr "" +msgstr "Выдаліць выбарку" #: chartdatadialog.ui msgctxt "" @@ -122,7 +122,7 @@ "label\n" "string.text" msgid "Move Series Right" -msgstr "" +msgstr "Пасунуць выбарку ўправа" #: chartdatadialog.ui msgctxt "" @@ -131,7 +131,7 @@ "label\n" "string.text" msgid "Move Row Down" -msgstr "" +msgstr "Пасунуць радок уніз" #: charttypedialog.ui msgctxt "" @@ -140,7 +140,7 @@ "title\n" "string.text" msgid "Chart Type" -msgstr "" +msgstr "Тып дыяграмы" #: datarangedialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Data Ranges" -msgstr "" +msgstr "Абсягі даных" #: dlg_DataLabel.ui msgctxt "" @@ -158,7 +158,7 @@ "title\n" "string.text" msgid "Data Labels for all Data Series" -msgstr "" +msgstr "Меткі даных для ўсіх выбарак" #: dlg_DataLabel.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "Show value as _number" -msgstr "" +msgstr "Паказаць значэнне як лічбу" #: dlg_DataLabel.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "Show value as _percentage" -msgstr "" +msgstr "Паказаць значэнне як працэнт" #: dlg_DataLabel.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Show _category" -msgstr "" +msgstr "Паказаць _катэгорыю" #: dlg_DataLabel.ui msgctxt "" @@ -194,7 +194,7 @@ "label\n" "string.text" msgid "Show _legend key" -msgstr "" +msgstr "Паказаць ключ леген_ды" #: dlg_DataLabel.ui msgctxt "" @@ -203,7 +203,7 @@ "label\n" "string.text" msgid "Auto text _wrap" -msgstr "" +msgstr "Пераносіць па словах" #: dlg_DataLabel.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Number _format..." -msgstr "" +msgstr "Фармат лікаў..." #: dlg_DataLabel.ui msgctxt "" @@ -221,7 +221,7 @@ "label\n" "string.text" msgid "Percentage f_ormat..." -msgstr "" +msgstr "Фармат працэнта_ў..." #: dlg_DataLabel.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "ABCD" -msgstr "" +msgstr "ABCD" #: dlg_DataLabel.ui msgctxt "" @@ -239,7 +239,7 @@ "label\n" "string.text" msgid "_Separator" -msgstr "" +msgstr "Межнік" #: dlg_DataLabel.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Place_ment" -msgstr "" +msgstr "Месца" #: dlg_DataLabel.ui msgctxt "" @@ -257,7 +257,7 @@ "label\n" "string.text" msgid "Number Format for Percentage Value" -msgstr "" +msgstr "Фармат працэнтавых значэнняў" #: dlg_DataLabel.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Атрыбуты тэксту" #: dlg_DataLabel.ui msgctxt "" @@ -275,7 +275,7 @@ "label\n" "string.text" msgid "_Degrees" -msgstr "" +msgstr "градусаў" #: dlg_DataLabel.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "Te_xt direction" -msgstr "" +msgstr "Кірунак тэксту" #: dlg_DataLabel.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "Rotate Text" -msgstr "" +msgstr "Павярнуць тэкст" #: dlg_DataLabel.ui msgctxt "" @@ -302,7 +302,7 @@ "0\n" "stringlist.text" msgid "Best fit" -msgstr "" +msgstr "Дапасаваць як найлепш" #: dlg_DataLabel.ui msgctxt "" @@ -311,7 +311,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "" +msgstr "У цэнтры" #: dlg_DataLabel.ui msgctxt "" @@ -320,7 +320,7 @@ "2\n" "stringlist.text" msgid "Above" -msgstr "" +msgstr "Над" #: dlg_DataLabel.ui msgctxt "" @@ -329,7 +329,7 @@ "3\n" "stringlist.text" msgid "Top left" -msgstr "" +msgstr "Верхні левы" #: dlg_DataLabel.ui msgctxt "" @@ -338,7 +338,7 @@ "4\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Левы" #: dlg_DataLabel.ui msgctxt "" @@ -347,7 +347,7 @@ "5\n" "stringlist.text" msgid "Bottom left" -msgstr "" +msgstr "Ніжні левы" #: dlg_DataLabel.ui msgctxt "" @@ -392,7 +392,7 @@ "10\n" "stringlist.text" msgid "Inside" -msgstr "" +msgstr "Усярэдзіне" #: dlg_DataLabel.ui msgctxt "" @@ -401,7 +401,7 @@ "11\n" "stringlist.text" msgid "Outside" -msgstr "" +msgstr "Звонку" #: dlg_DataLabel.ui msgctxt "" @@ -419,7 +419,7 @@ "0\n" "stringlist.text" msgid "Space" -msgstr "" +msgstr "Прабел" #: dlg_DataLabel.ui msgctxt "" @@ -428,7 +428,7 @@ "1\n" "stringlist.text" msgid "Comma" -msgstr "" +msgstr "Коска" #: dlg_DataLabel.ui msgctxt "" @@ -437,7 +437,7 @@ "2\n" "stringlist.text" msgid "Semicolon" -msgstr "" +msgstr "Кропка з коскай" #: dlg_DataLabel.ui msgctxt "" @@ -446,7 +446,7 @@ "3\n" "stringlist.text" msgid "New line" -msgstr "" +msgstr "Новы радок" #: dlg_InsertErrorBars.ui msgctxt "" @@ -455,7 +455,7 @@ "title\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Легенда" #: dlg_InsertErrorBars.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "_None" -msgstr "" +msgstr "_Няма" #: dlg_InsertErrorBars.ui msgctxt "" @@ -545,7 +545,7 @@ "label\n" "string.text" msgid "P_ositive (+)" -msgstr "" +msgstr "Дадатны (+)" #: dlg_InsertErrorBars.ui msgctxt "" @@ -554,7 +554,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Выберыце абсяг даных" #: dlg_InsertErrorBars.ui msgctxt "" @@ -563,7 +563,7 @@ "label\n" "string.text" msgid "_Negative (-)" -msgstr "" +msgstr "Адмоўны (-)" #: dlg_InsertErrorBars.ui msgctxt "" @@ -572,7 +572,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Выберыце абсяг даных" #: dlg_InsertErrorBars.ui msgctxt "" @@ -590,7 +590,7 @@ "label\n" "string.text" msgid "Parameters" -msgstr "" +msgstr "Параметры" #: dlg_InsertErrorBars.ui msgctxt "" @@ -734,7 +734,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "Вось _X" #: insertaxisdlg.ui msgctxt "" @@ -743,7 +743,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "Вось _Y" #: insertaxisdlg.ui msgctxt "" @@ -752,7 +752,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "Вось _Z" #: insertaxisdlg.ui msgctxt "" @@ -761,7 +761,7 @@ "label\n" "string.text" msgid "Axes" -msgstr "" +msgstr "Восі" #: insertaxisdlg.ui msgctxt "" @@ -770,7 +770,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "Вось X" #: insertaxisdlg.ui msgctxt "" @@ -779,7 +779,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "Вось Y" #: insertaxisdlg.ui msgctxt "" @@ -788,7 +788,7 @@ "label\n" "string.text" msgid "Z axi_s" -msgstr "" +msgstr "Вось Z" #: insertaxisdlg.ui msgctxt "" @@ -797,7 +797,7 @@ "label\n" "string.text" msgid "Secondary Axes" -msgstr "" +msgstr "Другасныя восі" #: insertgriddlg.ui msgctxt "" @@ -806,7 +806,7 @@ "title\n" "string.text" msgid "Grids" -msgstr "" +msgstr "Рашоткі" #: insertgriddlg.ui msgctxt "" @@ -815,7 +815,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "Вось _X" #: insertgriddlg.ui msgctxt "" @@ -824,7 +824,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "Вось _Y" #: insertgriddlg.ui msgctxt "" @@ -833,7 +833,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "Вось _Z" #: insertgriddlg.ui msgctxt "" @@ -842,7 +842,7 @@ "label\n" "string.text" msgid "Major Grids" -msgstr "" +msgstr "Асноўныя рашоткі" #: insertgriddlg.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "Вось X" #: insertgriddlg.ui msgctxt "" @@ -860,7 +860,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "Вось Y" #: insertgriddlg.ui msgctxt "" @@ -869,7 +869,7 @@ "label\n" "string.text" msgid "Z axi_s" -msgstr "" +msgstr "Вось Z" #: insertgriddlg.ui msgctxt "" @@ -878,7 +878,7 @@ "label\n" "string.text" msgid "Minor Grids" -msgstr "" +msgstr "Дадатковыя рашоткі" #: inserttitledlg.ui msgctxt "" @@ -914,7 +914,7 @@ "label\n" "string.text" msgid "_X axis" -msgstr "" +msgstr "Вось _X" #: inserttitledlg.ui msgctxt "" @@ -923,7 +923,7 @@ "label\n" "string.text" msgid "_Y axis" -msgstr "" +msgstr "Вось _Y" #: inserttitledlg.ui msgctxt "" @@ -932,7 +932,7 @@ "label\n" "string.text" msgid "_Z axis" -msgstr "" +msgstr "Вось _Z" #: inserttitledlg.ui msgctxt "" @@ -941,7 +941,7 @@ "label\n" "string.text" msgid "Axes" -msgstr "" +msgstr "Восі" #: inserttitledlg.ui msgctxt "" @@ -950,7 +950,7 @@ "label\n" "string.text" msgid "X _axis" -msgstr "" +msgstr "Вось X" #: inserttitledlg.ui msgctxt "" @@ -959,7 +959,7 @@ "label\n" "string.text" msgid "Y ax_is" -msgstr "" +msgstr "Вось Y" #: inserttitledlg.ui msgctxt "" @@ -968,7 +968,7 @@ "label\n" "string.text" msgid "Secondary Axes" -msgstr "" +msgstr "Другасныя восі" #: paradialog.ui msgctxt "" @@ -977,7 +977,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Параграф" #: paradialog.ui msgctxt "" @@ -986,7 +986,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "" +msgstr "Водступы і інтэрвалы" #: paradialog.ui msgctxt "" @@ -995,7 +995,7 @@ "label\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Раўнаванне" #: paradialog.ui msgctxt "" @@ -1004,7 +1004,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Азіяцкі лад друку" #: paradialog.ui msgctxt "" @@ -1013,7 +1013,7 @@ "label\n" "string.text" msgid "Tabs" -msgstr "" +msgstr "Табуляцыі" #: sidebaraxis.ui msgctxt "" @@ -1022,7 +1022,7 @@ "label\n" "string.text" msgid "Show labels" -msgstr "" +msgstr "Паказаць подпісы" #: sidebaraxis.ui msgctxt "" @@ -1031,7 +1031,7 @@ "label\n" "string.text" msgid "Reverse direction" -msgstr "" +msgstr "Адваротны кірунак" #: sidebaraxis.ui msgctxt "" @@ -1040,7 +1040,7 @@ "label\n" "string.text" msgid "_Label position:" -msgstr "" +msgstr "Месца по_дпісу:" #: sidebaraxis.ui msgctxt "" @@ -1049,7 +1049,7 @@ "0\n" "stringlist.text" msgid "Near Axis" -msgstr "" +msgstr "Каля восі" #: sidebaraxis.ui msgctxt "" @@ -1058,7 +1058,7 @@ "1\n" "stringlist.text" msgid "Near Axis (other side)" -msgstr "" +msgstr "Каля восі (з другога боку)" #: sidebaraxis.ui msgctxt "" @@ -1121,7 +1121,7 @@ "tooltip_text\n" "string.text" msgid "Show Legend" -msgstr "" +msgstr "Паказаць легенду" #: sidebarelements.ui msgctxt "" @@ -1184,7 +1184,7 @@ "label\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Легенда" #: sidebarelements.ui msgctxt "" @@ -1193,7 +1193,7 @@ "label\n" "string.text" msgid "X axis" -msgstr "" +msgstr "Вось X" #: sidebarelements.ui msgctxt "" @@ -1202,7 +1202,7 @@ "label\n" "string.text" msgid "X axis title" -msgstr "" +msgstr "Назва на восі X" #: sidebarelements.ui msgctxt "" @@ -1211,7 +1211,7 @@ "label\n" "string.text" msgid "Y axis" -msgstr "" +msgstr "Вось Y" #: sidebarelements.ui msgctxt "" @@ -1220,7 +1220,7 @@ "label\n" "string.text" msgid "Y axis title" -msgstr "" +msgstr "Назва на восі Y" #: sidebarelements.ui msgctxt "" @@ -1229,7 +1229,7 @@ "label\n" "string.text" msgid "Z axis" -msgstr "" +msgstr "Вось Z" #: sidebarelements.ui msgctxt "" @@ -1238,7 +1238,7 @@ "label\n" "string.text" msgid "Z axis title" -msgstr "" +msgstr "Назва на восі Z" #: sidebarelements.ui msgctxt "" @@ -1283,7 +1283,7 @@ "label\n" "string.text" msgid "Axes" -msgstr "" +msgstr "Восі" #: sidebarelements.ui msgctxt "" @@ -1292,7 +1292,7 @@ "label\n" "string.text" msgid "Horizontal major" -msgstr "" +msgstr "Гарызантальная асн." #: sidebarelements.ui msgctxt "" @@ -1301,7 +1301,7 @@ "label\n" "string.text" msgid "Vertical major" -msgstr "" +msgstr "Вертыкальная асн." #: sidebarelements.ui msgctxt "" @@ -1310,7 +1310,7 @@ "label\n" "string.text" msgid "Horizontal minor" -msgstr "" +msgstr "Гарызантальная дап." #: sidebarelements.ui msgctxt "" @@ -1319,7 +1319,7 @@ "label\n" "string.text" msgid "Vertical minor" -msgstr "" +msgstr "Вертыкальная дап." #: sidebarelements.ui msgctxt "" @@ -1328,7 +1328,7 @@ "label\n" "string.text" msgid "Gridlines" -msgstr "" +msgstr "Лініі рашоткі" #: sidebarelements.ui msgctxt "" @@ -1337,7 +1337,7 @@ "label\n" "string.text" msgid "Title" -msgstr "" +msgstr "Загаловак" #: sidebarelements.ui msgctxt "" @@ -1346,7 +1346,7 @@ "label\n" "string.text" msgid "Subtitle" -msgstr "" +msgstr "Падзагаловак" #: sidebarerrorbar.ui msgctxt "" @@ -1355,7 +1355,7 @@ "label\n" "string.text" msgid "Category:" -msgstr "" +msgstr "Катэгорыя:" #: sidebarerrorbar.ui msgctxt "" @@ -1364,7 +1364,7 @@ "0\n" "stringlist.text" msgid "Constant" -msgstr "" +msgstr "Канстанта" #: sidebarerrorbar.ui msgctxt "" @@ -1427,7 +1427,7 @@ "label\n" "string.text" msgid "Positive (+):" -msgstr "" +msgstr "Дадатна (+)" #: sidebarerrorbar.ui msgctxt "" @@ -1436,7 +1436,7 @@ "label\n" "string.text" msgid "Negative (-):" -msgstr "" +msgstr "Адмоўна (-)" #: sidebarerrorbar.ui msgctxt "" @@ -1445,7 +1445,7 @@ "text\n" "string.text" msgid "0.00" -msgstr "" +msgstr "0,00" #: sidebarerrorbar.ui msgctxt "" @@ -1454,7 +1454,7 @@ "text\n" "string.text" msgid "0.00" -msgstr "" +msgstr "0,00" #: sidebarerrorbar.ui msgctxt "" @@ -1463,7 +1463,7 @@ "tooltip_text\n" "string.text" msgid "Positive and Negative" -msgstr "" +msgstr "Дадатныя і адмоўныя" #: sidebarerrorbar.ui msgctxt "" @@ -1472,7 +1472,7 @@ "tooltip_text\n" "string.text" msgid "Positive" -msgstr "" +msgstr "Дадатныя" #: sidebarerrorbar.ui msgctxt "" @@ -1481,7 +1481,7 @@ "tooltip_text\n" "string.text" msgid "Negative" -msgstr "" +msgstr "Адмоўныя" #: sidebarerrorbar.ui msgctxt "" @@ -1490,7 +1490,7 @@ "label\n" "string.text" msgid "Indicator" -msgstr "" +msgstr "Індыкатар" #: sidebarseries.ui msgctxt "" @@ -1562,7 +1562,7 @@ "5\n" "stringlist.text" msgid "Near origin" -msgstr "" +msgstr "Каля пачатку каардынат" #: sidebarseries.ui msgctxt "" @@ -1571,7 +1571,7 @@ "label\n" "string.text" msgid "Show trendline" -msgstr "" +msgstr "Паказаць лінію трэнду" #: sidebarseries.ui msgctxt "" @@ -1580,7 +1580,7 @@ "label\n" "string.text" msgid "Y error bars" -msgstr "" +msgstr "Слупкі памылак Y" #: sidebarseries.ui msgctxt "" @@ -1589,7 +1589,7 @@ "label\n" "string.text" msgid "X error bars" -msgstr "" +msgstr "Слупкі памылак X" #: sidebarseries.ui msgctxt "" @@ -1598,7 +1598,7 @@ "label\n" "string.text" msgid "Error Bars" -msgstr "" +msgstr "Слупкі памылак" #: sidebarseries.ui msgctxt "" @@ -1778,7 +1778,7 @@ "label\n" "string.text" msgid "ABCD" -msgstr "" +msgstr "ABCD" #: titlerotationtabpage.ui msgctxt "" @@ -1787,7 +1787,7 @@ "label\n" "string.text" msgid "Te_xt direction:" -msgstr "" +msgstr "Кірунак тэксту:" #: titlerotationtabpage.ui msgctxt "" @@ -1841,7 +1841,7 @@ "0\n" "stringlist.text" msgid "Simple" -msgstr "" +msgstr "Проста" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1850,7 +1850,7 @@ "1\n" "stringlist.text" msgid "Realistic" -msgstr "" +msgstr "Рэалістычна" #: tp_3D_SceneAppearance.ui msgctxt "" @@ -1859,16 +1859,17 @@ "2\n" "stringlist.text" msgid "Custom" -msgstr "" +msgstr "Свой" #: tp_3D_SceneGeometry.ui +#, fuzzy msgctxt "" "tp_3D_SceneGeometry.ui\n" "CBX_RIGHT_ANGLED_AXES\n" "label\n" "string.text" msgid "_Right-angled axes" -msgstr "" +msgstr "Аксанаметрычныя восі" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1877,7 +1878,7 @@ "label\n" "string.text" msgid "_X rotation" -msgstr "" +msgstr "Паварот X" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1886,7 +1887,7 @@ "label\n" "string.text" msgid "_Y rotation" -msgstr "" +msgstr "Паварот Y" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1895,7 +1896,7 @@ "label\n" "string.text" msgid "_Z rotation" -msgstr "" +msgstr "Паварот Z" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1904,7 +1905,7 @@ "label\n" "string.text" msgid "_Perspective" -msgstr "" +msgstr "Перспектыва" #: tp_3D_SceneGeometry.ui msgctxt "" @@ -1913,7 +1914,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Perspective" -msgstr "" +msgstr "Перспектыва" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1922,7 +1923,7 @@ "tooltip_text\n" "string.text" msgid "Light source 1" -msgstr "" +msgstr "Крыніца святла 1" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1931,7 +1932,7 @@ "tooltip_text\n" "string.text" msgid "Light source 2" -msgstr "" +msgstr "Крыніца святла 2" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1940,7 +1941,7 @@ "tooltip_text\n" "string.text" msgid "Light source 3" -msgstr "" +msgstr "Крыніца святла 3" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1949,7 +1950,7 @@ "tooltip_text\n" "string.text" msgid "Light source 4" -msgstr "" +msgstr "Крыніца святла 4" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1958,7 +1959,7 @@ "tooltip_text\n" "string.text" msgid "Light source 5" -msgstr "" +msgstr "Крыніца святла 5" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1967,7 +1968,7 @@ "tooltip_text\n" "string.text" msgid "Light source 6" -msgstr "" +msgstr "Крыніца святла 6" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1976,7 +1977,7 @@ "tooltip_text\n" "string.text" msgid "Light source 7" -msgstr "" +msgstr "Крыніца святла 7" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -1985,16 +1986,17 @@ "tooltip_text\n" "string.text" msgid "Light source 8" -msgstr "" +msgstr "Крыніца святла 8" #: tp_3D_SceneIllumination.ui +#, fuzzy msgctxt "" "tp_3D_SceneIllumination.ui\n" "BTN_LIGHTSOURCE_COLOR\n" "tooltip_text\n" "string.text" msgid "Select a color using the color dialog" -msgstr "" +msgstr "Выберыце колер у дыялогу выбару колераў" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -2003,16 +2005,17 @@ "label\n" "string.text" msgid "_Light source" -msgstr "" +msgstr "Крыніца святла" #: tp_3D_SceneIllumination.ui +#, fuzzy msgctxt "" "tp_3D_SceneIllumination.ui\n" "BTN_AMBIENT_COLOR\n" "tooltip_text\n" "string.text" msgid "Select a color using the color dialog" -msgstr "" +msgstr "Выбраць колер у дылогу выбару колераў" #: tp_3D_SceneIllumination.ui msgctxt "" @@ -2021,7 +2024,7 @@ "label\n" "string.text" msgid "_Ambient light" -msgstr "" +msgstr "Навакольнае (ambient) асвятленне" #: tp_3D_SceneIllumination.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/customize.po libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/customize.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/customize.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/customize.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: customize\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-04-17 00:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 19:44+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1460853457.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491335089.000000\n" #: acccfg.src msgctxt "" @@ -57,7 +57,7 @@ "ID_DEFAULT_COMMAND\n" "menuitem.text" msgid "Restore Default Command" -msgstr "" +msgstr "Узнавіць прадвызначаную каманду" #: cfg.src msgctxt "" @@ -183,7 +183,7 @@ "RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n" "string.text" msgid "%PRODUCTNAME %MODULENAME Context Menus" -msgstr "" +msgstr "Кантэкстныя меню %PRODUCTNAME %MODULENAME" #: cfg.src msgctxt "" @@ -223,10 +223,9 @@ "RID_SVXSTR_TOOLBAR_NAME\n" "string.text" msgid "Toolbar Name" -msgstr "" +msgstr "Назва стужкі" #: cfg.src -#, fuzzy msgctxt "" "cfg.src\n" "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR\n" @@ -240,7 +239,7 @@ "RID_SVXSTR_CONFIRM_MENU_RESET\n" "string.text" msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "" +msgstr "Настаўленні меню для %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?" #: cfg.src msgctxt "" @@ -248,10 +247,9 @@ "RID_SVXSTR_CONFIRM_TOOLBAR_RESET\n" "string.text" msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?" -msgstr "" +msgstr "Настаўленні стужкі %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?" #: cfg.src -#, fuzzy msgctxt "" "cfg.src\n" "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: dialogs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 07:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 19:47+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462691496.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491335262.000000\n" #: cuires.src msgctxt "" @@ -38,7 +38,7 @@ "RID_SVXSTR_ALLFUNCTIONS\n" "string.text" msgid "All categories" -msgstr "" +msgstr "Усе катэгорыі" #: cuires.src msgctxt "" @@ -87,7 +87,7 @@ "RID_SVXSTR_PPI\n" "string.text" msgid "(%1 PPI)" -msgstr "" +msgstr "(%1 PPI)" #: cuires.src msgctxt "" @@ -119,7 +119,7 @@ "RID_SVXSTR_LOADACCELCONFIG\n" "string.text" msgid "Load Keyboard Configuration" -msgstr "" +msgstr "Прачытаць настаўленні клавіятуры" #: cuires.src msgctxt "" @@ -127,7 +127,7 @@ "RID_SVXSTR_SAVEACCELCONFIG\n" "string.text" msgid "Save Keyboard Configuration" -msgstr "" +msgstr "Запісаць настаўленні клавіятуры" #: cuires.src msgctxt "" @@ -367,7 +367,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP\n" "string.text" msgid "Mail" -msgstr "" +msgstr "Пошта" #: hyperdlg.src msgctxt "" @@ -471,7 +471,7 @@ "RID_SVXSTR_ADD_IMAGE\n" "string.text" msgid "Add Image" -msgstr "" +msgstr "Дадаць відарыс" #: passwdomdlg.src msgctxt "" @@ -479,7 +479,7 @@ "RID_SVXSTR_PASSWD_MUST_BE_CONFIRMED\n" "string.text" msgid "Password must be confirmed" -msgstr "" +msgstr "Трэба пацвердзіць пароль" #: passwdomdlg.src msgctxt "" @@ -487,7 +487,7 @@ "RID_SVXSTR_ONE_PASSWORD_MISMATCH\n" "string.text" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "" +msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі." #: passwdomdlg.src msgctxt "" @@ -519,7 +519,7 @@ "RID_SVXSTR_SAVE_SCREENSHOT_AS\n" "string.text" msgid "Save Screenshot As..." -msgstr "" +msgstr "Захаваць здымак як..." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/options.po libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/options.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/source/options.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: options\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 07:13+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 19:56+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462691605.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491335819.000000\n" #: connpooloptions.src msgctxt "" @@ -22,7 +22,7 @@ "RID_SVXSTR_DRIVER_NAME\n" "string.text" msgid "Driver name" -msgstr "" +msgstr "Назва драйвера" #: connpooloptions.src msgctxt "" @@ -30,7 +30,7 @@ "RID_SVXSTR_POOLED_FLAG\n" "string.text" msgid "Pool" -msgstr "" +msgstr "Супол" #: connpooloptions.src msgctxt "" @@ -38,7 +38,7 @@ "RID_SVXSTR_POOL_TIMEOUT\n" "string.text" msgid "Timeout" -msgstr "" +msgstr "Таймаут" #: connpooloptions.src msgctxt "" @@ -46,7 +46,7 @@ "RID_SVXSTR_YES\n" "string.text" msgid "Yes" -msgstr "" +msgstr "Так" #: connpooloptions.src msgctxt "" @@ -54,7 +54,7 @@ "RID_SVXSTR_NO\n" "string.text" msgid "No" -msgstr "" +msgstr "Не" #: dbregister.src msgctxt "" @@ -62,7 +62,7 @@ "RID_SVXSTR_TYPE\n" "string.text" msgid "Registered name" -msgstr "" +msgstr "Зарэгістраваная назва" #: dbregister.src msgctxt "" @@ -70,7 +70,7 @@ "RID_SVXSTR_PATH\n" "string.text" msgid "Database file" -msgstr "" +msgstr "Файл базы даных" #: doclinkdialog.src msgctxt "" @@ -186,7 +186,7 @@ "STR_MODIFY\n" "string.text" msgid "~Replace" -msgstr "" +msgstr "Замяніць" #: optdict.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 "" @@ -218,7 +218,7 @@ "RID_SVXSTR_CHG_MATH\n" "string.text" msgid "MathType to %PRODUCTNAME Math or reverse" -msgstr "" +msgstr "MathType у %PRODUCTNAME Math і адваротна" #: optfltr.src msgctxt "" @@ -226,7 +226,7 @@ "RID_SVXSTR_CHG_WRITER\n" "string.text" msgid "WinWord to %PRODUCTNAME Writer or reverse" -msgstr "" +msgstr "WinWord у %PRODUCTNAME Writer і адваротна" #: optfltr.src msgctxt "" @@ -234,7 +234,7 @@ "RID_SVXSTR_CHG_CALC\n" "string.text" msgid "Excel to %PRODUCTNAME Calc or reverse" -msgstr "" +msgstr "Excel у %PRODUCTNAME Calc і адваротна" #: optfltr.src msgctxt "" @@ -242,7 +242,7 @@ "RID_SVXSTR_CHG_IMPRESS\n" "string.text" msgid "PowerPoint to %PRODUCTNAME Impress or reverse" -msgstr "" +msgstr "PowerPoint у %PRODUCTNAME Impress і адваротна" #: optfltr.src msgctxt "" @@ -267,7 +267,6 @@ "Максімальны дазволены нумар порта гэта 65535." #: optjava.src -#, fuzzy msgctxt "" "optjava.src\n" "RID_SVXSTR_JRE_NOT_RECOGNIZED\n" @@ -280,7 +279,6 @@ "Выберыце іншы каталог." #: optjava.src -#, fuzzy msgctxt "" "optjava.src\n" "RID_SVXSTR_JRE_FAILED_VERSION\n" @@ -314,7 +312,7 @@ "RID_SVXSTR_SPELL\n" "string.text" msgid "Spelling" -msgstr "" +msgstr "Правапіс" #: optlingu.src msgctxt "" @@ -322,7 +320,7 @@ "RID_SVXSTR_HYPH\n" "string.text" msgid "Hyphenation" -msgstr "" +msgstr "Пераносы" #: optlingu.src msgctxt "" @@ -330,7 +328,7 @@ "RID_SVXSTR_THES\n" "string.text" msgid "Thesaurus" -msgstr "" +msgstr "Тэзаўрус" #: optlingu.src msgctxt "" @@ -338,7 +336,7 @@ "RID_SVXSTR_GRAMMAR\n" "string.text" msgid "Grammar" -msgstr "" +msgstr "Граматыка" #: optlingu.src msgctxt "" @@ -346,7 +344,7 @@ "RID_SVXSTR_CAPITAL_WORDS\n" "string.text" msgid "Check uppercase words" -msgstr "" +msgstr "Правяраць словы ў верхнім рэгістры" #: optlingu.src msgctxt "" @@ -354,7 +352,7 @@ "RID_SVXSTR_WORDS_WITH_DIGITS\n" "string.text" msgid "Check words with numbers " -msgstr "" +msgstr "Правяраць словы з лічбамі " #: optlingu.src msgctxt "" @@ -362,7 +360,7 @@ "RID_SVXSTR_SPELL_SPECIAL\n" "string.text" msgid "Check special regions" -msgstr "" +msgstr "Правяраць спецыяльныя вобласці" #: optlingu.src msgctxt "" @@ -370,7 +368,7 @@ "RID_SVXSTR_SPELL_AUTO\n" "string.text" msgid "Check spelling as you type" -msgstr "" +msgstr "Правяраць правапіс падчас набору" #: optlingu.src msgctxt "" @@ -378,7 +376,7 @@ "RID_SVXSTR_GRAMMAR_AUTO\n" "string.text" msgid "Check grammar as you type" -msgstr "" +msgstr "Аўтаматычна правяраць граматыку" #: optlingu.src msgctxt "" @@ -442,7 +440,7 @@ "RID_SVXSTR_KEY_GRAPHICS_PATH\n" "string.text" msgid "Images" -msgstr "" +msgstr "Відарысы" #: optpath.src msgctxt "" @@ -586,7 +584,7 @@ "RID_SVXSTR_KEY_CLASSIFICATION_PATH\n" "string.text" msgid "Classification" -msgstr "" +msgstr "Класіфікацыя" #: optpath.src msgctxt "" @@ -610,7 +608,7 @@ "RID_SVXSTR_SEARCHTERM\n" "string.text" msgid "Search term" -msgstr "" +msgstr "Пошук тэксту" #: personalization.src msgctxt "" @@ -659,7 +657,7 @@ "LibreOffice\n" "itemlist.text" msgid "LibreOffice" -msgstr "" +msgstr "LibreOffice" #: personalization.src msgctxt "" @@ -668,7 +666,7 @@ "Abstract\n" "itemlist.text" msgid "Abstract" -msgstr "" +msgstr "Абстракцыя" #: personalization.src msgctxt "" @@ -677,7 +675,7 @@ "Color\n" "itemlist.text" msgid "Color" -msgstr "" +msgstr "Колер" #: personalization.src msgctxt "" @@ -686,7 +684,7 @@ "Music\n" "itemlist.text" msgid "Music" -msgstr "" +msgstr "Музыка" #: personalization.src msgctxt "" @@ -695,7 +693,7 @@ "Nature\n" "itemlist.text" msgid "Nature" -msgstr "" +msgstr "Прырода" #: personalization.src msgctxt "" @@ -704,7 +702,7 @@ "Solid\n" "itemlist.text" msgid "Solid" -msgstr "" +msgstr "Суцэльны" #: treeopt.src msgctxt "" @@ -713,7 +711,7 @@ "%PRODUCTNAME\n" "itemlist.text" msgid "%PRODUCTNAME" -msgstr "" +msgstr "%PRODUCTNAME" #: treeopt.src msgctxt "" @@ -722,7 +720,7 @@ "User Data\n" "itemlist.text" msgid "User Data" -msgstr "" +msgstr "Карыстальніцкія дадзеныя" #: treeopt.src msgctxt "" @@ -731,7 +729,7 @@ "General\n" "itemlist.text" msgid "General" -msgstr "" +msgstr "Агульнае" #: treeopt.src msgctxt "" @@ -740,7 +738,7 @@ "Memory\n" "itemlist.text" msgid "Memory" -msgstr "" +msgstr "Памяць" #: treeopt.src msgctxt "" @@ -749,7 +747,7 @@ "View\n" "itemlist.text" msgid "View" -msgstr "" +msgstr "Від" #: treeopt.src msgctxt "" @@ -758,7 +756,7 @@ "Print\n" "itemlist.text" msgid "Print" -msgstr "" +msgstr "Друк" #: treeopt.src msgctxt "" @@ -767,7 +765,7 @@ "Paths\n" "itemlist.text" msgid "Paths" -msgstr "" +msgstr "Шляхі" #: treeopt.src msgctxt "" @@ -776,7 +774,7 @@ "Fonts\n" "itemlist.text" msgid "Fonts" -msgstr "" +msgstr "Шрыфты" #: treeopt.src msgctxt "" @@ -785,7 +783,7 @@ "Security\n" "itemlist.text" msgid "Security" -msgstr "" +msgstr "Бяспека" #: treeopt.src msgctxt "" @@ -794,7 +792,7 @@ "Personalization\n" "itemlist.text" msgid "Personalization" -msgstr "" +msgstr "Персаналізацыя" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:46+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-04 16:59+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794815.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491325153.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui @@ -3237,7 +3237,7 @@ "label\n" "string.text" msgid "Recent Colors" -msgstr "" +msgstr "Папярэднія колеры" #: colorpage.ui msgctxt "" @@ -4531,7 +4531,7 @@ "label\n" "string.text" msgid "Get more dictionaries online..." -msgstr "" +msgstr "Атрымаць больш слоўнікаў у сеціве..." #: editmodulesdialog.ui #, fuzzy @@ -5558,7 +5558,7 @@ "label\n" "string.text" msgid "_File type:" -msgstr "" +msgstr "Тып ф_айла:" #: galleryfilespage.ui msgctxt "" @@ -6240,7 +6240,7 @@ "label\n" "string.text" msgid "User-defined Dictionaries" -msgstr "" +msgstr "Слоўнікі карыстальніка" #: hangulhanjaoptdialog.ui msgctxt "" @@ -6258,7 +6258,7 @@ "label\n" "string.text" msgid "Show recently used entries first" -msgstr "" +msgstr "Паказваць нядаўнія запісы ў пачатку" #: hangulhanjaoptdialog.ui msgctxt "" @@ -6440,7 +6440,7 @@ "label\n" "string.text" msgid "Open File" -msgstr "" +msgstr "Адкрыць файл" #: hyperlinkdocpage.ui msgctxt "" @@ -6449,7 +6449,7 @@ "tooltip_text\n" "string.text" msgid "Open File" -msgstr "" +msgstr "Адкрыць файл" #: hyperlinkdocpage.ui msgctxt "" @@ -6851,7 +6851,7 @@ "label\n" "string.text" msgid "_File:" -msgstr "" +msgstr "Ф_айл:" #: hyperlinknewdocpage.ui msgctxt "" @@ -10741,7 +10741,7 @@ "label\n" "string.text" msgid "Help Improve %PRODUCTNAME" -msgstr "" +msgstr "Дапамажыце палепшыць %PRODUCTNAME" #: opthtmlpage.ui msgctxt "" @@ -11264,7 +11264,7 @@ "label\n" "string.text" msgid "_User-defined dictionaries:" -msgstr "" +msgstr "_Слоўнікі карыстальніка:" #: optlingupage.ui msgctxt "" @@ -11292,7 +11292,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Edit User-defined dictionaries" -msgstr "" +msgstr "Рэдагаваць слоўнікі карыстальніка" #: optlingupage.ui msgctxt "" @@ -11320,7 +11320,7 @@ "label\n" "string.text" msgid "Get more dictionaries online..." -msgstr "" +msgstr "Іншыя слоўнікі ў сеціве..." #: optlingupage.ui #, fuzzy @@ -14005,7 +14005,7 @@ "label\n" "string.text" msgid "Open file read-only" -msgstr "" +msgstr "Адкрыць толькі для чытання" #: password.ui msgctxt "" @@ -15101,7 +15101,7 @@ "label\n" "string.text" msgid "Paste the following markup into the help file:" -msgstr "" +msgstr "Устаўце наступную разметку ў файл даведкі:" #: scriptorganizer.ui msgctxt "" @@ -15301,7 +15301,7 @@ "label\n" "string.text" msgid "When creating PDF _files" -msgstr "Пры стварэнні файлаў PDF" +msgstr "Пры стварэнні ф_айлаў PDF" #: securityoptionsdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/dbaccess/source/ui/dlg.po libreoffice-l10n-5.3.3~rc2/translations/source/be/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/dbaccess/source/ui/dlg.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/dbaccess/source/ui/dlg.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: dlg\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2015-08-25 15:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-04 17:10+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440517968.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325810.000000\n" #: AutoControls.src msgctxt "" @@ -690,7 +690,6 @@ msgstr "Наставіць далучэнне да разліковых аркушаў" #: dbadminsetup.src -#, fuzzy msgctxt "" "dbadminsetup.src\n" "STR_SPREADSHEET_HELPTEXT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/dbaccess/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/dbaccess/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/dbaccess/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/dbaccess/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "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: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2015-12-11 14:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-04 16:59+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1449843230.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325181.000000\n" #: admindialog.ui msgctxt "" @@ -1013,14 +1013,13 @@ msgstr "" #: generalpagewizard.ui -#, fuzzy msgctxt "" "generalpagewizard.ui\n" "openExistingDatabase\n" "label\n" "string.text" msgid "Open an existing database _file" -msgstr "Адкрыць" +msgstr "Адкрыць наяўны ф_айл базы даных" #: generalpagewizard.ui msgctxt "" @@ -1029,7 +1028,7 @@ "label\n" "string.text" msgid "_Recently used:" -msgstr "" +msgstr "_Нядаўна выкарыстаныя:" #: generalpagewizard.ui #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/editeng/source/editeng.po libreoffice-l10n-5.3.3~rc2/translations/source/be/editeng/source/editeng.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/editeng/source/editeng.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/editeng/source/editeng.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: editeng\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2013-08-05 12:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-04 19:39+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1375706220.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491334785.000000\n" #: editeng.src msgctxt "" @@ -89,14 +89,13 @@ msgstr "Змяніць рэгістр літар" #: editeng.src -#, fuzzy msgctxt "" "editeng.src\n" "RID_MENU_SPELL\n" "MN_IGNORE\n" "menuitem.text" msgid "I~gnore All" -msgstr "Ignore All" +msgstr "Ігнараваць усе" #: editeng.src msgctxt "" @@ -132,7 +131,7 @@ "MN_AUTOCORR\n" "menuitem.text" msgid "AutoCorrect ~To" -msgstr "" +msgstr "Аўтазам~ена на" #: editeng.src msgctxt "" @@ -141,7 +140,7 @@ "MN_AUTO_CORRECT_DLG\n" "menuitem.text" msgid "Auto~Correct Options..." -msgstr "" +msgstr "Параметры аўтазамены..." #: editeng.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/editeng/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/be/editeng/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/editeng/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/editeng/source/misc.po 2017-05-03 16:46:29.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-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-03-24 13:25+0000\n" +"PO-Revision-Date: 2017-04-04 19:40+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490361946.000000\n" +"X-POOTLE-MTIME: 1491334843.000000\n" #: lingu.src msgctxt "" @@ -33,7 +33,6 @@ msgstr "Continue checking at end of document?" #: lingu.src -#, fuzzy msgctxt "" "lingu.src\n" "RID_SVXSTR_HMERR_THESAURUS\n" @@ -42,8 +41,8 @@ "No thesaurus is available for the selected language. \n" "Please check your installation and install the desired language\n" msgstr "" -"No thesaurus is available for the selected language. \n" -"Please check your installation and install the desired language\n" +"Няма ў наяўнасці тэзаўруса для выбранай мовы.\n" +"Праверце вашу інсталяцыю і ўстанавіце патрэбны варыянт.\n" #: lingu.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/extensions/source/propctrlr.po libreoffice-l10n-5.3.3~rc2/translations/source/be/extensions/source/propctrlr.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/extensions/source/propctrlr.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/extensions/source/propctrlr.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: propctrlr\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 14:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-30 13:07+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449843459.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490879223.000000\n" #: formlinkdialog.src msgctxt "" @@ -2001,7 +2001,7 @@ "Help\n" "itemlist.text" msgid "Help" -msgstr "" +msgstr "Даведка" #: formres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/extras/source/autocorr/emoji.po libreoffice-l10n-5.3.3~rc2/translations/source/be/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/extras/source/autocorr/emoji.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/extras/source/autocorr/emoji.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-10-18 13:02+0200\n" -"PO-Revision-Date: 2016-05-08 07:35+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 16:57+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: LANGUAGE \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1462692932.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325021.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3915,7 +3915,7 @@ "CRESCENT_MOON\n" "LngText.text" msgid "crescent moon" -msgstr "" +msgstr "паўмесяц" #. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/filter/source/config/fragments/filters.po libreoffice-l10n-5.3.3~rc2/translations/source/be/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/filter/source/config/fragments/filters.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/filter/source/config/fragments/filters.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "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: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-07-04 16:31+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 17:11+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467649878.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325887.000000\n" #: AbiWord.xcu msgctxt "" @@ -95,7 +95,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -359,14 +359,13 @@ 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 "Шаблон Microsoft Excel 95" +msgstr "Шаблон Microsoft Excel 97-2003" #: MS_PowerPoint_97.xcu #, fuzzy @@ -389,14 +388,13 @@ msgstr "Шаблон Microsoft PowerPoint 97/2000/XP/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 "Шаблон Microsoft PowerPoint 97/2000/XP/2003" +msgstr "Шаблон Microsoft PowerPoint 97-2003" #: MS_WinWord_5.xcu msgctxt "" @@ -436,14 +434,13 @@ msgstr "Microsoft Word 2003 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 "Шаблон Microsoft Word 95" +msgstr "Шаблон Word 2007-2013 XML" #: MS_Word_95.xcu msgctxt "" @@ -473,14 +470,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 "Шаблон Microsoft Word 95" +msgstr "Шаблон Microsoft Word 97-2003" #: MS_Works.xcu msgctxt "" @@ -642,7 +638,7 @@ "UIName\n" "value.text" msgid "Office Open XML Text Template" -msgstr "Office Open XML Text Template" +msgstr "Шаблон тэкставага дакумента Office Open XML" #: PBM___Portable_Bitmap.xcu msgctxt "" @@ -1156,7 +1152,7 @@ "UIName\n" "value.text" msgid "ODF Spreadsheet Template" -msgstr "ODF Spreadsheet Template" +msgstr "Шаблон электроннай табліцы ODF" #: calc_Gnumeric.xcu msgctxt "" @@ -1165,7 +1161,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш Gnumeric" #: calc_HTML_WebQuery.xcu msgctxt "" @@ -1205,14 +1201,13 @@ msgstr "Microsoft Excel 2003 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 "Шаблон Microsoft Excel 95" +msgstr "Шаблон Microsoft Excel 2007-2013 XML" #: calc_OOXML.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/filter/source/config/fragments/types.po libreoffice-l10n-5.3.3~rc2/translations/source/be/filter/source/config/fragments/types.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/filter/source/config/fragments/types.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/filter/source/config/fragments/types.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: types\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-05-11 23:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-04 17:11+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1431386229.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325904.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -138,7 +138,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш Gnumeric" #: calc_MS_Excel_2003_XML.xcu msgctxt "" @@ -295,14 +295,13 @@ msgstr "Microsoft Word 2003 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 "Microsoft Word 2003 XML" +msgstr "Шаблон Microsoft Word 2007-2013 XML" #: writer_ODT_FlatXML.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/fpicker/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/fpicker/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/fpicker/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/fpicker/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 07:36+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-30 15:55+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: LANGUAGE \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462692968.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490889307.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -149,7 +149,7 @@ "title\n" "string.text" msgid "Remote Files" -msgstr "" +msgstr "Адлеглыя файлы" #: remotefilesdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/framework/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/be/framework/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/framework/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/framework/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: classes\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 07:36+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 16:53+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462692969.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491324829.000000\n" #: resource.src msgctxt "" @@ -148,7 +148,7 @@ "STR_REMOTE_TITLE\n" "string.text" msgid " (Remote)" -msgstr "" +msgstr " (аддалена)" #: resource.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.3.3~rc2/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: msi_languages\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 13:26+0000\n" +"PO-Revision-Date: 2017-04-04 16:34+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490362019.000000\n" +"X-POOTLE-MTIME: 1491323646.000000\n" #: ActionTe.ulf msgctxt "" @@ -1694,7 +1694,7 @@ "OOO_CONTROL_127\n" "LngText.text" msgid "The Installation Wizard will install [ProductName] on your computer. To continue, click Next." -msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягваць устаноўку." +msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягнуць устаноўку." #: Control.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.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: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2016-12-01 12:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 17:13+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480594260.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491326017.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -2868,10 +2868,9 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet..." -msgstr "" +msgstr "Засцерагаць аркуш..." #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:ToolsOptions\n" @@ -4451,7 +4450,6 @@ msgstr "Фарматаванне тэксту" #: CalcWindowState.xcu -#, fuzzy msgctxt "" "CalcWindowState.xcu\n" "..CalcWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -17023,7 +17021,7 @@ "Label\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Шаблоны" #: GenericCommands.xcu msgctxt "" @@ -17032,16 +17030,17 @@ "ContextLabel\n" "value.text" msgid "Manage Templates" -msgstr "" +msgstr "Распарадзіцца шаблонамі" #: GenericCommands.xcu +#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:NewDoc\n" "TooltipLabel\n" "value.text" msgid "Show Templates Manager" -msgstr "" +msgstr "Паказаць загадчык шаблонаў" #: GenericCommands.xcu msgctxt "" @@ -17069,7 +17068,7 @@ "Label\n" "value.text" msgid "Open Remote" -msgstr "" +msgstr "Адкрыць аддалена" #: GenericCommands.xcu msgctxt "" @@ -17078,7 +17077,7 @@ "ContextLabel\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "Адкрыць адлеглы ф~айл..." #: GenericCommands.xcu msgctxt "" @@ -17087,7 +17086,7 @@ "TooltipLabel\n" "value.text" msgid "Open Remote File" -msgstr "" +msgstr "Адкрыць адлеглы файл" #: GenericCommands.xcu msgctxt "" @@ -17096,7 +17095,7 @@ "Label\n" "value.text" msgid "Save Remote" -msgstr "" +msgstr "Запісаць аддалена" #: GenericCommands.xcu msgctxt "" @@ -17105,7 +17104,7 @@ "ContextLabel\n" "value.text" msgid "Sa~ve Remote File..." -msgstr "" +msgstr "~Запісаць адлеглы файл..." #: GenericCommands.xcu msgctxt "" @@ -17114,7 +17113,7 @@ "TooltipLabel\n" "value.text" msgid "Save Remote File" -msgstr "" +msgstr "Запісаць адлеглы файл" #: GenericCommands.xcu msgctxt "" @@ -17123,7 +17122,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "" +msgstr "Запісаць адлеглы файл..." #: GenericCommands.xcu msgctxt "" @@ -17818,7 +17817,6 @@ msgstr "Пасунуць уніз" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:SaveAsTemplate\n" @@ -18609,7 +18607,7 @@ "Label\n" "value.text" msgid "~Open Template..." -msgstr "" +msgstr "~Адкрыць шаблон..." #: GenericCommands.xcu msgctxt "" @@ -20322,7 +20320,6 @@ msgstr "Presentation Options" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:ScEditOptions\n" @@ -22736,7 +22733,7 @@ "Label\n" "value.text" msgid "~Tools" -msgstr "Прылады" +msgstr "~Прылады" #: GenericCommands.xcu msgctxt "" @@ -23067,7 +23064,6 @@ msgstr "Адаслаць эл.поштай у фармаце ~OpenDocument..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:TemplateManager\n" @@ -24172,7 +24168,6 @@ msgstr "Стандартна" #: MathWindowState.xcu -#, fuzzy msgctxt "" "MathWindowState.xcu\n" "..MathWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -24455,14 +24450,13 @@ msgstr "Тэкставы дакумент" #: ReportCommands.xcu -#, fuzzy msgctxt "" "ReportCommands.xcu\n" ".ReportCommands.UserInterface.Commands..uno:Spreadsheet\n" "Label\n" "value.text" msgid "Spreadsheet Document" -msgstr "Разліковы аркуш Дакумент" +msgstr "Разліковы аркуш" #: ReportCommands.xcu #, fuzzy @@ -25379,17 +25373,15 @@ msgstr "Што гэта?" #: StartModuleCommands.xcu -#, fuzzy msgctxt "" "StartModuleCommands.xcu\n" "..StartModuleCommands.UserInterface.Commands..uno:HelpIndex\n" "Label\n" "value.text" msgid "%PRODUCTNAME ~Help" -msgstr "Даведка %PRODUCTNAME" +msgstr "~Даведка %PRODUCTNAME" #: StartModuleCommands.xcu -#, fuzzy msgctxt "" "StartModuleCommands.xcu\n" "..StartModuleCommands.UserInterface.Commands..uno:NewDoc\n" @@ -25519,14 +25511,13 @@ msgstr "Правіць" #: StartModuleCommands.xcu -#, fuzzy msgctxt "" "StartModuleCommands.xcu\n" "..StartModuleCommands.UserInterface.Popups..uno:HelpMenu\n" "Label\n" "value.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: StartModuleCommands.xcu #, fuzzy @@ -25549,14 +25540,13 @@ msgstr "Файл" #: StartModuleCommands.xcu -#, fuzzy msgctxt "" "StartModuleCommands.xcu\n" "..StartModuleCommands.UserInterface.Popups..uno:ToolsMenu\n" "Label\n" "value.text" msgid "~Tools" -msgstr "Прылады" +msgstr "~Прылады" #: StartModuleCommands.xcu #, fuzzy @@ -30331,7 +30321,6 @@ msgstr "" #: WriterFormWindowState.xcu -#, fuzzy msgctxt "" "WriterFormWindowState.xcu\n" "..WriterFormWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -30826,7 +30815,6 @@ msgstr "Фарматаванне" #: WriterGlobalWindowState.xcu -#, fuzzy msgctxt "" "WriterGlobalWindowState.xcu\n" "..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -31319,7 +31307,6 @@ msgstr "" #: WriterReportWindowState.xcu -#, fuzzy msgctxt "" "WriterReportWindowState.xcu\n" "..WriterReportWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -31794,7 +31781,6 @@ msgstr "Фарматаванне" #: WriterWebWindowState.xcu -#, fuzzy msgctxt "" "WriterWebWindowState.xcu\n" "..WriterWebWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -32248,7 +32234,6 @@ msgstr "" #: WriterWindowState.xcu -#, fuzzy msgctxt "" "WriterWindowState.xcu\n" "..WriterWindowState.UIElements.States.private:resource/toolbar/toolbar\n" @@ -32797,7 +32782,6 @@ msgstr "Фарматаванне" #: XFormsWindowState.xcu -#, fuzzy msgctxt "" "XFormsWindowState.xcu\n" "..XFormsWindowState.UIElements.States.private:resource/toolbar/toolbar\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.3.3~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 13:33+0000\n" +"PO-Revision-Date: 2017-04-04 17:02+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490362383.000000\n" +"X-POOTLE-MTIME: 1491325357.000000\n" #: Addons.xcu msgctxt "" @@ -207,7 +207,6 @@ msgstr "Візітныя карткі" #: Common.xcu -#, fuzzy msgctxt "" "Common.xcu\n" "..Common.Menus.New.m14\n" @@ -1551,7 +1550,6 @@ msgstr "Абмяняць" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n" @@ -1999,7 +1997,6 @@ msgstr "Мініяцюра слайда, %CURRENT_SLIDE_NAME%, %CURRENT_SLIDE_NUMBER% з %SLIDE_COUNT%" #: PresenterScreen.xcu -#, fuzzy msgctxt "" "PresenterScreen.xcu\n" "..PresenterScreen.Presenter.Views.HelpView\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/be/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: docs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-03-29 12:21+0000\n" +"PO-Revision-Date: 2017-03-30 13:09+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490790101.000000\n" +"X-POOTLE-MTIME: 1490879372.000000\n" #: readme.xrm #, fuzzy @@ -643,7 +643,6 @@ msgstr "Толькі тыя клавіятурныя скароты (спалучэнні клавіш), што не выкарыстоўваюцца аперацыйнай сістэмай, могуць быць выкарыстаны ў ${PRODUCTNAME}. Калі спалучэнне клавіш у ${PRODUCTNAME} не працуе так, яка апісана ў даведцы ${PRODUCTNAME}, праверце, ці не выкарыстаны ўжо гэтыя скароты аперацыйнай сістэмай. Каб развязаць падобныя канфлікты, вы можаце змяніць спалучэнні, вызначаныя вашай аперацыйнай сістэмай. Як варыянт, вы можаце змяніць амаль кожны скарот у ${PRODUCTNAME}. Каб атрымаць больш інфармацыі па гэтай тэме, звярніцеся да даведкі ${PRODUCTNAME} ці да даведкі аперацыйнай сістэмы." #: readme.xrm -#, fuzzy msgctxt "" "readme.xrm\n" "mackeys1\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/reportdesign/uiconfig/dbreport/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/reportdesign/uiconfig/dbreport/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-01 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-30 13:09+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: LANGUAGE \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462129860.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490879382.000000\n" #: backgrounddialog.ui msgctxt "" @@ -617,7 +617,7 @@ "label\n" "string.text" msgid "Help" -msgstr "" +msgstr "Даведка" #: pagedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sc/source/ui/src.po 2017-05-03 16:46:29.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: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-29 12:51+0000\n" +"PO-Revision-Date: 2017-04-04 17:13+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490791865.000000\n" +"X-POOTLE-MTIME: 1491326035.000000\n" #: filter.src msgctxt "" @@ -3719,6 +3719,7 @@ "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." #: globstr.src +#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-29 12:54+0000\n" +"PO-Revision-Date: 2017-04-04 17:15+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490792094.000000\n" +"X-POOTLE-MTIME: 1491326128.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -437,6 +437,9 @@ "\n" "Select 'Protect Sheet' from the 'Tools' menu." msgstr "" +"Засцярога клеткі дзейнічае толькі пасля ўстанаўлення засцярогі бягучага аркуша\n" +"\n" +"Выберыце 'Засцерагчы аркуш' у меню 'Прылады'." #: cellprotectionpage.ui msgctxt "" @@ -1675,7 +1678,7 @@ "label\n" "string.text" msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes." -msgstr "" +msgstr "Ёсць спрэчкі паміж змяненнямі ў гэтым аркушы супольнага карыстання. Спрэчкі павінны быць развязаныя перад запісам аркуша. Можна замацаваць або свае, або чужыя змяненні." #: conflictsdialog.ui msgctxt "" @@ -4424,7 +4427,7 @@ "10\n" "stringlist.text" msgid "Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш" #: functionpanel.ui msgctxt "" @@ -6555,7 +6558,7 @@ "label\n" "string.text" msgid "Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш" #: notebookbar_groups.ui msgctxt "" @@ -7033,7 +7036,7 @@ "label\n" "string.text" msgid "New Spreadsheet" -msgstr "" +msgstr "Новы разліковы аркуш" #: optdlg.ui msgctxt "" @@ -12876,7 +12879,7 @@ "label\n" "string.text" msgid "Helplines _while moving" -msgstr "" +msgstr "Лініі-падказкі _пры перамяшчэнні" #: tpviewpage.ui msgctxt "" @@ -13343,7 +13346,7 @@ "label\n" "string.text" msgid "Input Help" -msgstr "" +msgstr "Даведка па ўводзе" #: validationdialog.ui msgctxt "" @@ -13379,7 +13382,7 @@ "label\n" "string.text" msgid "_Input help:" -msgstr "" +msgstr "_Даведка па ўводзе:" #: validationhelptabpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/scp2/source/ooo.po libreoffice-l10n-5.3.3~rc2/translations/source/be/scp2/source/ooo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/scp2/source/ooo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: ooo\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 17:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 16:38+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467652185.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491323932.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -3705,7 +3705,7 @@ "STR_NAME_MODULE_DICTIONARIES\n" "LngText.text" msgid "Dictionaries" -msgstr "Dictionaries" +msgstr "Слоўнікі" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sd/uiconfig/simpress/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:14+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 16:55+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1467652447.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491324943.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -2263,7 +2263,7 @@ "label\n" "string.text" msgid "Start with _Template Selection" -msgstr "" +msgstr "Пачаць з выбару шаблона" #: optimpressgeneralpage.ui msgctxt "" @@ -2344,7 +2344,7 @@ "label\n" "string.text" msgid "Enable remote control" -msgstr "" +msgstr "Уключыць дыстанцыйнае кіраванне" #: optimpressgeneralpage.ui msgctxt "" @@ -3641,7 +3641,7 @@ "title\n" "string.text" msgid "Impress Remote" -msgstr "" +msgstr "Дыстанцыйнае кіраванне Impress" #: remotedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/appl.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/appl.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/appl.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/appl.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: appl\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-29 13:02+0000\n" +"PO-Revision-Date: 2017-04-04 17:00+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490792521.000000\n" +"X-POOTLE-MTIME: 1491325213.000000\n" #: app.src msgctxt "" @@ -436,6 +436,7 @@ msgstr "Апошнія дакументы" #: app.src +#, fuzzy msgctxt "" "app.src\n" "STR_QUERY_UPDATE_LINKS\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: dialog\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-10 18:50+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Belarusian \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457635812.000000\n" +"X-POOTLE-MTIME: 1478887451.000000\n" #: dialog.src msgctxt "" @@ -728,6 +728,30 @@ msgid "Hierarchical" msgstr "Іерархія" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/doc.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/doc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/source/doc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/source/doc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: doc\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-25 12:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-30 16:06+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,11 +13,10 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464178289.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490889985.000000\n" #: doc.src -#, fuzzy msgctxt "" "doc.src\n" "STR_TEMPLATE_FILTER\n" @@ -147,7 +146,7 @@ "STR_TEMPLATE_SELECTION\n" "string.text" msgid "Select a Template" -msgstr "" +msgstr "Выберыце шаблон" #: doc.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-29 13:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-04 17:19+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490792641.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491326384.000000\n" #: alienwarndialog.ui msgctxt "" @@ -441,7 +441,6 @@ msgstr "Пароль" #: documentinfopage.ui -#, fuzzy msgctxt "" "documentinfopage.ui\n" "templateft\n" @@ -830,7 +829,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -851,7 +850,7 @@ "label\n" "string.text" msgid "_File:" -msgstr "" +msgstr "Ф_айл:" #: linkeditdialog.ui #, fuzzy @@ -900,14 +899,13 @@ msgstr "" #: loadtemplatedialog.ui -#, fuzzy msgctxt "" "loadtemplatedialog.ui\n" "label2\n" "label\n" "string.text" msgid "Templates" -msgstr "Шаблон:" +msgstr "Шаблоны" #: loadtemplatedialog.ui msgctxt "" @@ -1105,14 +1103,13 @@ msgstr "Прынтэр" #: optprintpage.ui -#, fuzzy msgctxt "" "optprintpage.ui\n" "file\n" "label\n" "string.text" msgid "Print to _file" -msgstr "Друкаваць" +msgstr "Друкаваць у ф_айл" #: optprintpage.ui #, fuzzy @@ -1522,7 +1519,7 @@ "title\n" "string.text" msgid "Save As Template" -msgstr "" +msgstr "Запісаць як шаблон" #: saveastemplatedlg.ui msgctxt "" @@ -1531,7 +1528,7 @@ "label\n" "string.text" msgid "Template _Name" -msgstr "" +msgstr "Назва шаблона" #: saveastemplatedlg.ui msgctxt "" @@ -1540,7 +1537,7 @@ "label\n" "string.text" msgid "Template _Category" -msgstr "" +msgstr "Катэгорыя шаблона" #: saveastemplatedlg.ui msgctxt "" @@ -1549,7 +1546,7 @@ "label\n" "string.text" msgid "_Set as default template" -msgstr "" +msgstr "_Зрабіць тыповым шаблонам" #: saveastemplatedlg.ui msgctxt "" @@ -1624,14 +1621,13 @@ msgstr "" #: securityinfopage.ui -#, fuzzy msgctxt "" "securityinfopage.ui\n" "readonly\n" "label\n" "string.text" msgid "_Open file read-only" -msgstr "Адкрыць" +msgstr "_Адкрыць толькі для чытання" #: securityinfopage.ui #, fuzzy @@ -1679,7 +1675,7 @@ "label\n" "string.text" msgid "Clear Recent Documents" -msgstr "" +msgstr "Ачысціць нядаўнія дакументы" #: startcenter.ui msgctxt "" @@ -1688,7 +1684,7 @@ "label\n" "string.text" msgid "Writer Templates" -msgstr "" +msgstr "Шаблоны Writer" #: startcenter.ui msgctxt "" @@ -1697,7 +1693,7 @@ "label\n" "string.text" msgid "Calc Templates" -msgstr "" +msgstr "Шаблоны Calc" #: startcenter.ui msgctxt "" @@ -1706,7 +1702,7 @@ "label\n" "string.text" msgid "Impress Templates" -msgstr "" +msgstr "Шаблоны Impress" #: startcenter.ui msgctxt "" @@ -1715,7 +1711,7 @@ "label\n" "string.text" msgid "Draw Templates" -msgstr "" +msgstr "Шаблоны Draw" #: startcenter.ui msgctxt "" @@ -1724,7 +1720,7 @@ "label\n" "string.text" msgid "Manage Templates" -msgstr "" +msgstr "Распарадзіцца шаблонамі" #: startcenter.ui msgctxt "" @@ -1733,7 +1729,7 @@ "label\n" "string.text" msgid "_Open File" -msgstr "" +msgstr "_Адкрыць файл" #: startcenter.ui msgctxt "" @@ -1742,7 +1738,7 @@ "label\n" "string.text" msgid "Remote File_s" -msgstr "" +msgstr "Адлеглыя файл_ы" #: startcenter.ui msgctxt "" @@ -1751,27 +1747,25 @@ "label\n" "string.text" msgid "_Recent Files" -msgstr "" +msgstr "_Нядаўнія файлы" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "templates_all\n" "label\n" "string.text" msgid "T_emplates" -msgstr "Шаблон:" +msgstr "_Шаблоны" #: startcenter.ui -#, fuzzy msgctxt "" "startcenter.ui\n" "create_label\n" "label\n" "string.text" msgid "Create:" -msgstr "Пачаты:" +msgstr "Стварыць:" #: startcenter.ui msgctxt "" @@ -1780,7 +1774,7 @@ "label\n" "string.text" msgid "_Writer Document" -msgstr "" +msgstr "Дакумент _Writer" #: startcenter.ui msgctxt "" @@ -1789,7 +1783,7 @@ "label\n" "string.text" msgid "_Calc Spreadsheet" -msgstr "" +msgstr "Разліковы аркуш _Calc" #: startcenter.ui msgctxt "" @@ -1834,7 +1828,7 @@ "label\n" "string.text" msgid "He_lp" -msgstr "" +msgstr "_Даведка" #: startcenter.ui msgctxt "" @@ -1843,7 +1837,7 @@ "label\n" "string.text" msgid "E_xtensions" -msgstr "" +msgstr "_Прыстаўкі" #: startcenter.ui msgctxt "" @@ -1861,7 +1855,7 @@ "label\n" "string.text" msgid "Recent Files List" -msgstr "" +msgstr "Спіс нядаўніх файлаў" #: startcenter.ui msgctxt "" @@ -1870,7 +1864,7 @@ "label\n" "string.text" msgid "Templates List" -msgstr "" +msgstr "Спіс шаблонаў" #: templatecategorydlg.ui msgctxt "" @@ -1909,14 +1903,13 @@ msgstr "" #: templatedlg.ui -#, fuzzy msgctxt "" "templatedlg.ui\n" "TemplateDialog\n" "title\n" "string.text" msgid "Templates" -msgstr "Шаблон:" +msgstr "Шаблоны" #: templatedlg.ui msgctxt "" @@ -1970,7 +1963,7 @@ "label\n" "string.text" msgid "Template List" -msgstr "" +msgstr "Спіс шаблонаў" #: templatedlg.ui msgctxt "" @@ -1988,7 +1981,7 @@ "tooltip_text\n" "string.text" msgid "Browse online templates" -msgstr "" +msgstr "Аглядаць шаблоны ў сеціве" #: templatedlg.ui msgctxt "" @@ -2015,7 +2008,7 @@ "tooltip_text\n" "string.text" msgid "Move Templates" -msgstr "" +msgstr "Перамясціць шаблоны" #: templatedlg.ui msgctxt "" @@ -2033,7 +2026,7 @@ "tooltip_text\n" "string.text" msgid "Export Templates" -msgstr "" +msgstr "Экспартаваць шаблоны" #: templatedlg.ui msgctxt "" @@ -2051,7 +2044,7 @@ "tooltip_text\n" "string.text" msgid "Import Templates" -msgstr "" +msgstr "Імпартаваць шаблоны" #: templatedlg.ui msgctxt "" @@ -2078,7 +2071,7 @@ "2\n" "stringlist.text" msgid "Spreadsheets" -msgstr "" +msgstr "Разліковыя аркушы" #: templatedlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/svl/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/be/svl/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/svl/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/svl/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "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: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-07-24 22:52+0300\n" -"Last-Translator: \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-03-30 16:11+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490890298.000000\n" #: mediatyp.src msgctxt "" @@ -438,7 +440,7 @@ "STR_SVT_MIMETYPE_APP_TEMPLATE\n" "string.text" msgid "%PRODUCTNAME Template" -msgstr "%PRODUCTNAME Template" +msgstr "Шаблон %PRODUCTNAME" #: mediatyp.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/be/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: dialogs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 18:03+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440525783.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/be/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "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: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-29 13:16+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490793388.000000\n" #: imagemgr.src @@ -3903,6 +3903,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/be/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: stbctrls\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 14:51+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-11 18:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449845510.000000\n" +"X-POOTLE-MTIME: 1478889081.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2016-12-01 12:30+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-04 17:20+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480595422.000000\n" +"X-POOTLE-MTIME: 1491326446.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -938,7 +938,7 @@ "label\n" "string.text" msgid "Recent" -msgstr "" +msgstr "Нядаўняе" #: colorwindow.ui msgctxt "" @@ -5154,16 +5154,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" @@ -5226,7 +5226,7 @@ "label\n" "string.text" msgid "Disable all user extensions" -msgstr "" +msgstr "Выключыць усе прыстаўкі карыстальніка" #: safemodedialog.ui msgctxt "" @@ -5244,7 +5244,7 @@ "label\n" "string.text" msgid "Extensions" -msgstr "" +msgstr "Прыстаўкі" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-29 13:58+0000\n" +"PO-Revision-Date: 2017-04-04 17:01+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490795910.000000\n" +"X-POOTLE-MTIME: 1491325309.000000\n" #: abstractdialog.ui msgctxt "" @@ -676,14 +676,13 @@ msgstr "Шлях..." #: autotext.ui -#, fuzzy msgctxt "" "autotext.ui\n" "relfile\n" "label\n" "string.text" msgid "_File system" -msgstr "Файлавая сістэма" +msgstr "Ф_айлавая сістэма" #: autotext.ui msgctxt "" @@ -2958,7 +2957,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "Назва файла" +msgstr "Назва ф_айла" #: editsectiondialog.ui msgctxt "" @@ -7685,7 +7684,7 @@ "label\n" "string.text" msgid "From a _template" -msgstr "" +msgstr "Паводл_е шаблона" #: mailmergedialog.ui msgctxt "" @@ -8777,7 +8776,7 @@ "label\n" "string.text" msgid "Start from a t_emplate" -msgstr "" +msgstr "Пачаць з шаблона" #: mmselectpage.ui msgctxt "" @@ -8786,7 +8785,7 @@ "label\n" "string.text" msgid "Start fro_m a recently saved starting document" -msgstr "" +msgstr "Пачаць з нядаўна запісанага пачатковага дакументу" #: mmselectpage.ui #, fuzzy @@ -13226,7 +13225,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "Назва файла" +msgstr "Назва ф_айла" #: picturepage.ui msgctxt "" @@ -14266,7 +14265,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "Назва файла" +msgstr "Назва ф_айла" #: sectionpage.ui #, fuzzy @@ -17484,7 +17483,7 @@ "label\n" "string.text" msgid "_File" -msgstr "" +msgstr "Ф_айл" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/swext/mediawiki/help.po libreoffice-l10n-5.3.3~rc2/translations/source/be/swext/mediawiki/help.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/swext/mediawiki/help.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/swext/mediawiki/help.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: help\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-29 14:02+0000\n" +"PO-Revision-Date: 2017-04-04 17:08+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490796132.000000\n" +"X-POOTLE-MTIME: 1491325680.000000\n" #: help.tree msgctxt "" @@ -224,7 +224,7 @@ "par_id3514206\n" "help.text" msgid "Open a Writer document." -msgstr "Open a Writer document." +msgstr "Адкрыйце новы дакумент." #: wiki.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/sysui/desktop/share.po libreoffice-l10n-5.3.3~rc2/translations/source/be/sysui/desktop/share.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/sysui/desktop/share.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/sysui/desktop/share.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: share\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-07 21:35+0200\n" -"PO-Revision-Date: 2015-05-11 23:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 17:08+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1431387253.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491325713.000000\n" #: documents.ulf msgctxt "" @@ -389,7 +389,6 @@ msgstr "Разліковы аркуш Microsoft Excel" #: launcher_comment.ulf -#, fuzzy msgctxt "" "launcher_comment.ulf\n" "writer\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/uui/source.po libreoffice-l10n-5.3.3~rc2/translations/source/be/uui/source.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/uui/source.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/uui/source.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: source\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2017-03-29 14:07+0000\n" +"PO-Revision-Date: 2017-04-04 19:30+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,10 +14,9 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490796442.000000\n" +"X-POOTLE-MTIME: 1491334208.000000\n" #: alreadyopen.src -#, fuzzy msgctxt "" "alreadyopen.src\n" "STR_ALREADYOPEN_TITLE\n" @@ -872,7 +871,7 @@ "STR_LOCKFAILED_TITLE\n" "string.text" msgid "Document Could Not Be Locked" -msgstr "" +msgstr "Немагчыма заблакаваць дакумент" #: lockfailed.src msgctxt "" @@ -888,7 +887,7 @@ "STR_LOCKFAILED_DONTSHOWAGAIN\n" "string.text" msgid "~Do not show this message again" -msgstr "" +msgstr "~Больш не паказваць гэта паведамленне" #: nameclashdlg.src msgctxt "" @@ -916,7 +915,7 @@ "STR_SAME_NAME_USED\n" "string.text" msgid "Please provide a different file name!" -msgstr "" +msgstr "Дайце іншую назву файлу!" #: openlocked.src msgctxt "" @@ -947,13 +946,12 @@ "\n" #: openlocked.src -#, fuzzy msgctxt "" "openlocked.src\n" "STR_OPENLOCKED_OPENREADONLY_BTN\n" "string.text" msgid "Open ~Read-Only" -msgstr "Адкрыць толькі для чытання" +msgstr "Адкрыць толь~кі для чытання" #: openlocked.src msgctxt "" @@ -977,7 +975,7 @@ "STR_ENTER_PASSWORD_TO_OPEN\n" "string.text" msgid "Enter password to open file: \n" -msgstr "" +msgstr "Упішыце пароль, каб адкрыць файл: \n" #: passworddlg.src msgctxt "" @@ -985,7 +983,7 @@ "STR_ENTER_PASSWORD_TO_MODIFY\n" "string.text" msgid "Enter password to modify file: \n" -msgstr "" +msgstr "Упішыце пароль, каб змяніць файл: \n" #: passworddlg.src msgctxt "" @@ -993,7 +991,7 @@ "STR_ENTER_SIMPLE_PASSWORD\n" "string.text" msgid "Enter password: " -msgstr "" +msgstr "Увядзіце пароль:" #: passworddlg.src msgctxt "" @@ -1001,7 +999,7 @@ "STR_CONFIRM_SIMPLE_PASSWORD\n" "string.text" msgid "Confirm password: " -msgstr "" +msgstr "Яшчэ раз пароль:" #: passworddlg.src msgctxt "" @@ -1009,7 +1007,7 @@ "STR_TITLE_CREATE_PASSWORD\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Задаць пароль" #: passworddlg.src msgctxt "" @@ -1017,7 +1015,7 @@ "STR_TITLE_ENTER_PASSWORD\n" "string.text" msgid "Enter Password" -msgstr "" +msgstr "Увядзіце пароль" #: passworddlg.src msgctxt "" @@ -1025,7 +1023,7 @@ "STR_PASSWORD_MISMATCH\n" "string.text" msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." -msgstr "" +msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі." #: passworderrs.src msgctxt "" @@ -1068,7 +1066,6 @@ msgstr "Не супадаюць пароль і ягоны паўтор." #: trylater.src -#, fuzzy msgctxt "" "trylater.src\n" "STR_TRYLATER_TITLE\n" @@ -1098,7 +1095,6 @@ "\n" #: trylater.src -#, fuzzy msgctxt "" "trylater.src\n" "STR_TRYLATER_RETRYSAVING_BTN\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/uui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/be/uui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/uui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/uui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-25 12:14+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-04 19:36+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464178486.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491334609.000000\n" #: authfallback.ui msgctxt "" @@ -62,14 +62,13 @@ msgstr "" #: logindialog.ui -#, fuzzy msgctxt "" "logindialog.ui\n" "remember\n" "label\n" "string.text" msgid "_Remember password" -msgstr "Паўтарыце ўвод пароля:" +msgstr "Памятаць пароль" #: logindialog.ui msgctxt "" @@ -78,7 +77,7 @@ "label\n" "string.text" msgid "A_ccount:" -msgstr "" +msgstr "Уліковы запі_с:" #: logindialog.ui msgctxt "" @@ -87,7 +86,7 @@ "label\n" "string.text" msgid "Pass_word:" -msgstr "" +msgstr "Пароль:" #: logindialog.ui msgctxt "" @@ -96,7 +95,7 @@ "label\n" "string.text" msgid "_User name:" -msgstr "" +msgstr "Імя карыстальніка:" #: logindialog.ui msgctxt "" @@ -105,7 +104,7 @@ "label\n" "string.text" msgid "_Path:" -msgstr "" +msgstr "_Шлях:" #: logindialog.ui msgctxt "" @@ -114,7 +113,7 @@ "label\n" "string.text" msgid "_Browse…" -msgstr "" +msgstr "Агляд..." #: logindialog.ui msgctxt "" @@ -176,7 +175,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME - Security Warning" -msgstr "" +msgstr "%PRODUCTNAME - папярэджанне пра бяспеку" #: macrowarnmedium.ui msgctxt "" @@ -185,7 +184,7 @@ "label\n" "string.text" msgid "_Enable Macros" -msgstr "" +msgstr "Дазволіць макрасы" #: macrowarnmedium.ui msgctxt "" @@ -194,7 +193,7 @@ "label\n" "string.text" msgid "_Disable Macros" -msgstr "" +msgstr "Не дазваляць макрасы" #: macrowarnmedium.ui msgctxt "" @@ -203,7 +202,7 @@ "label\n" "string.text" msgid "The document contains document macros signed by:" -msgstr "" +msgstr "Дакумент утрымлівае макрасы, падпісаныя:" #: macrowarnmedium.ui msgctxt "" @@ -212,7 +211,7 @@ "label\n" "string.text" msgid "The document contains document macros." -msgstr "" +msgstr "Дакумент утрымлівае макрасы." #: macrowarnmedium.ui msgctxt "" @@ -221,7 +220,7 @@ "label\n" "string.text" msgid "_View Signatures…" -msgstr "" +msgstr "Паказаць подпісы..." #: macrowarnmedium.ui msgctxt "" @@ -239,7 +238,7 @@ "label\n" "string.text" msgid "_Always trust macros from this source" -msgstr "" +msgstr "Заўсёды давяраць макрасам з гэтай крыніцы" #: masterpassworddlg.ui msgctxt "" @@ -266,7 +265,7 @@ "title\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Задаць пароль" #: setmasterpassworddlg.ui msgctxt "" @@ -320,7 +319,7 @@ "title\n" "string.text" msgid "File Exists" -msgstr "" +msgstr "Файл існуе" #: simplenameclash.ui msgctxt "" @@ -329,7 +328,7 @@ "label\n" "string.text" msgid "Replace" -msgstr "" +msgstr "Замяніць" #: simplenameclash.ui msgctxt "" @@ -338,7 +337,7 @@ "label\n" "string.text" msgid "Rename" -msgstr "" +msgstr "Перайменаваць" #: sslwarndialog.ui msgctxt "" @@ -347,7 +346,7 @@ "title\n" "string.text" msgid "Security Warning: " -msgstr "" +msgstr "Папярэджанне бяспекі: " #: sslwarndialog.ui msgctxt "" @@ -356,7 +355,7 @@ "label\n" "string.text" msgid "Continue" -msgstr "" +msgstr "Працягнуць" #: sslwarndialog.ui msgctxt "" @@ -365,7 +364,7 @@ "label\n" "string.text" msgid "Cancel Connection" -msgstr "" +msgstr "Разарваць злучэнне" #: sslwarndialog.ui msgctxt "" @@ -374,7 +373,7 @@ "label\n" "string.text" msgid "View Certificate" -msgstr "" +msgstr "Паказаць сертыфікат" #: unknownauthdialog.ui msgctxt "" @@ -383,7 +382,7 @@ "title\n" "string.text" msgid "Website Certified by an Unknown Authority" -msgstr "" +msgstr "Пляцоўка сертыфікавана невядомым кіраўніцтвам (CA)" #: unknownauthdialog.ui msgctxt "" @@ -392,7 +391,7 @@ "label\n" "string.text" msgid "Accept this certificate temporarily for this session" -msgstr "" +msgstr "Прыняць сертыфікат на час гэтага сеансу" #: unknownauthdialog.ui msgctxt "" @@ -401,7 +400,7 @@ "label\n" "string.text" msgid "Do not accept this certificate and do not connect to this Web site" -msgstr "" +msgstr "Не прымаць гэты сертыфікат і не далучацца да гэтай пляцоўкі Сеціва" #: unknownauthdialog.ui msgctxt "" @@ -410,4 +409,4 @@ "label\n" "string.text" msgid "Examine Certificate…" -msgstr "" +msgstr "Праверыць сертыфікат…" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/vcl/source/src.po libreoffice-l10n-5.3.3~rc2/translations/source/be/vcl/source/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/vcl/source/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/vcl/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-01 19:16+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-30 13:01+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462130184.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490878864.000000\n" #: app.src msgctxt "" @@ -154,7 +154,7 @@ "SV_BUTTONTEXT_HELP\n" "string.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: btntext.src #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/euro.po libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/euro.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/euro.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/euro.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: euro\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-11 23:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-03-30 13:01+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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: 1431387292.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490878868.000000\n" #: euro.src msgctxt "" @@ -30,7 +30,7 @@ "STEP_ZERO + 1\n" "string.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: euro.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/formwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/formwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/formwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/formwizard.po 2017-05-03 16:46:29.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-11-10 19:32+0100\n" -"PO-Revision-Date: 2017-03-29 14:09+0000\n" +"PO-Revision-Date: 2017-03-30 16:13+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490796581.000000\n" +"X-POOTLE-MTIME: 1490890386.000000\n" #: dbwizres.src msgctxt "" @@ -142,7 +142,7 @@ "RID_COMMON_START + 15\n" "string.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: dbwizres.src msgctxt "" @@ -263,13 +263,12 @@ msgstr "Не ўдалося наладзіць далучэння да базы даных." #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_DB_COMMON_START + 20\n" "string.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: dbwizres.src msgctxt "" @@ -5258,13 +5257,12 @@ msgstr "Зрабіць адвольныя змены ў гэтым шаблоне парадку дня" #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_AGENDAWIZARDDIALOG_START +3\n" "string.text" msgid "Template name:" -msgstr "Назва шаблону:" +msgstr "Назва шаблона:" #: dbwizres.src #, fuzzy @@ -5325,7 +5323,6 @@ msgstr "Вызначце імёны, якія хочаце ўлучыць у ваш шаблон парадку дня" #: dbwizres.src -#, fuzzy msgctxt "" "dbwizres.src\n" "RID_AGENDAWIZARDDIALOG_START +11\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/importwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/importwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/be/wizards/source/importwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/be/wizards/source/importwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: importwizard\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-06-10 10:39+0200\n" -"PO-Revision-Date: 2013-07-24 22:52+0300\n" -"Last-Translator: \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-03-30 13:01+0000\n" +"Last-Translator: Мікалай Удодаў \n" "Language-Team: \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490878885.000000\n" #: importwi.src msgctxt "" @@ -21,7 +22,7 @@ "sHelpButton\n" "string.text" msgid "~Help" -msgstr "Даведка" +msgstr "~Даведка" #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-28 12:51+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 10:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: .\n" "Language: bg\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488286315.000000\n" +"X-POOTLE-MTIME: 1492079635.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,8 +185,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "© 2000–2015 сътрудниците на LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "© 2000–2017 сътрудниците на LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-13 08:59+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LibreOffice на български\n" @@ -5678,7 +5678,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5686,7 +5686,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-12-02 11:16+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: .\n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-06 01:37+0000\n" +"PO-Revision-Date: 2017-04-30 11:29+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: none\n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488764263.000000\n" +"X-POOTLE-MTIME: 1493551781.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6284,7 +6284,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Наляво" #: notebookbar_groups.ui msgctxt "" @@ -6293,7 +6293,7 @@ "label\n" "string.text" msgid "Center" -msgstr "" +msgstr "Центриранe" #: notebookbar_groups.ui msgctxt "" @@ -6302,7 +6302,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Надясно" #: notebookbar_groups.ui msgctxt "" @@ -6311,7 +6311,7 @@ "label\n" "string.text" msgid "Text" -msgstr "" +msgstr "Текст" #: notebookbar_groups.ui msgctxt "" @@ -6356,7 +6356,7 @@ "label\n" "string.text" msgid "Conditional" -msgstr "" +msgstr "Условни" #: notebookbar_groups.ui msgctxt "" @@ -6365,7 +6365,7 @@ "label\n" "string.text" msgid "Top" -msgstr "" +msgstr "Отгоре" #: notebookbar_groups.ui msgctxt "" @@ -6374,7 +6374,7 @@ "label\n" "string.text" msgid "Center" -msgstr "" +msgstr "Центриране" #: notebookbar_groups.ui msgctxt "" @@ -6383,7 +6383,7 @@ "label\n" "string.text" msgid "Bottom" -msgstr "" +msgstr "Отдолу" #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-22 22:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-30 11:31+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485122780.000000\n" +"X-POOTLE-MTIME: 1493551873.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Йерархично" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Режим на запълване" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Нов стил от избраното" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Обновяване на стил" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-23 01:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 10:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: none\n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485133237.000000\n" +"X-POOTLE-MTIME: 1492079672.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Всички споменати запазени и регистрирани марки са собственост на съответните страни.\n" "\n" -"© 2000–2016 разработчиците на LibreOffice. Всички права запазени.\n" +"© 2000–2017 разработчиците на LibreOffice. Всички права запазени.\n" "\n" "Продуктът е създаден от %OOOVENDOR на базата на OpenOffice.org, © 2000–2011 Oracle и/или партньорите ѝ. %OOOVENDOR благодари на всички членове на общността, за подробности вижте http://www.libreoffice.org/ ." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-09-12 00:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 10:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442017767.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492079685.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Форматиран текст [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 23:33+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 10:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484868789.000000\n" +"X-POOTLE-MTIME: 1492079691.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Унгарски (унгарски руни)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Английски (Малайзия)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 15:13+0000\n" +"PO-Revision-Date: 2017-04-26 22:57+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487257986.000000\n" +"X-POOTLE-MTIME: 1493247441.000000\n" #: SafeMode.src msgctxt "" @@ -1040,7 +1040,7 @@ "Native Numbering\n" "itemlist.text" msgid "Native Numbering" -msgstr "" +msgstr "Местна номерация" #: pagenumbering.src msgctxt "" @@ -1354,7 +1354,7 @@ "All Pages\n" "itemlist.text" msgid "All Pages" -msgstr "" +msgstr "Всички страници" #: samecontent.src msgctxt "" @@ -1363,7 +1363,7 @@ "First Page\n" "itemlist.text" msgid "First Page" -msgstr "" +msgstr "Първа страница" #: samecontent.src msgctxt "" @@ -1372,7 +1372,7 @@ "Left and Right Pages\n" "itemlist.text" msgid "Left and Right Pages" -msgstr "" +msgstr "Леви и десни страници" #: samecontent.src msgctxt "" @@ -1381,7 +1381,7 @@ "First, Left and Right Pages\n" "itemlist.text" msgid "First, Left and Right Pages" -msgstr "" +msgstr "Първа, леви и десни страници" #: sdstring.src msgctxt "" @@ -1413,7 +1413,7 @@ "RID_SVXSTR_PATTERN\n" "string.text" msgid "Pattern" -msgstr "" +msgstr "Шарка" #: sdstring.src msgctxt "" @@ -1421,7 +1421,7 @@ "RID_SVXSTR_PATTERN_UNTITLED\n" "string.text" msgid "Untitled Pattern" -msgstr "" +msgstr "Шарка без име" #: sdstring.src msgctxt "" @@ -2717,7 +2717,7 @@ "RID_SVXSTR_HATCH0\n" "string.text" msgid "Black 45 Degrees Wide" -msgstr "" +msgstr "Черна, 45 градуса, рядка" #: sdstring.src msgctxt "" @@ -2725,7 +2725,7 @@ "RID_SVXSTR_HATCH1\n" "string.text" msgid "Black 45 Degrees" -msgstr "" +msgstr "Черна, 45 градуса" #: sdstring.src msgctxt "" @@ -2733,7 +2733,7 @@ "RID_SVXSTR_HATCH2\n" "string.text" msgid "Black -45 Degrees" -msgstr "" +msgstr "Черна, -45 градуса" #: sdstring.src msgctxt "" @@ -2741,7 +2741,7 @@ "RID_SVXSTR_HATCH3\n" "string.text" msgid "Black 90 Degrees" -msgstr "" +msgstr "Черна, 90 градуса" #: sdstring.src msgctxt "" @@ -2749,7 +2749,7 @@ "RID_SVXSTR_HATCH4\n" "string.text" msgid "Red Crossed 45 Degrees" -msgstr "" +msgstr "Червена, кръстосана, 45 градуса" #: sdstring.src msgctxt "" @@ -2757,7 +2757,7 @@ "RID_SVXSTR_HATCH5\n" "string.text" msgid "Red Crossed 0 Degrees" -msgstr "" +msgstr "Червена, кръстосана, 0 градуса" #: sdstring.src msgctxt "" @@ -2765,7 +2765,7 @@ "RID_SVXSTR_HATCH6\n" "string.text" msgid "Blue Crossed 45 Degrees" -msgstr "" +msgstr "Синя, кръстосана, 45 градуса" #: sdstring.src msgctxt "" @@ -2773,7 +2773,7 @@ "RID_SVXSTR_HATCH7\n" "string.text" msgid "Blue Crossed 0 Degrees" -msgstr "" +msgstr "Синя, кръстосана, 0 градуса" #: sdstring.src msgctxt "" @@ -2781,7 +2781,7 @@ "RID_SVXSTR_HATCH8\n" "string.text" msgid "Blue Triple 90 Degrees" -msgstr "" +msgstr "Синя, тройна, 45 градуса" #: sdstring.src msgctxt "" @@ -2789,7 +2789,7 @@ "RID_SVXSTR_HATCH9\n" "string.text" msgid "Black 0 Degrees" -msgstr "" +msgstr "Черна, 0 градуса" #: sdstring.src msgctxt "" @@ -2805,7 +2805,7 @@ "RID_SVXSTR_BMP0\n" "string.text" msgid "Empty" -msgstr "" +msgstr "Празно" #: sdstring.src msgctxt "" @@ -3626,7 +3626,7 @@ "Extra Small (1/16\")\n" "itemlist.text" msgid "Extra Small (1/16\")" -msgstr "" +msgstr "Съвсем малко (1/16\")" #: spacing.src msgctxt "" @@ -3635,7 +3635,7 @@ "Small (1/8\")\n" "itemlist.text" msgid "Small (1/8\")" -msgstr "" +msgstr "Малко (1/8\")" #: spacing.src msgctxt "" @@ -3644,7 +3644,7 @@ "Small Medium (1/4\")\n" "itemlist.text" msgid "Small Medium (1/4\")" -msgstr "" +msgstr "Средно малко (1/4\")" #: spacing.src msgctxt "" @@ -3653,7 +3653,7 @@ "Medium (3/8\")\n" "itemlist.text" msgid "Medium (3/8\")" -msgstr "" +msgstr "Средно (3/8\")" #: spacing.src msgctxt "" @@ -3662,7 +3662,7 @@ "Medium Large (1/2\")\n" "itemlist.text" msgid "Medium Large (1/2\")" -msgstr "" +msgstr "Средно голямо (1/2\")" #: spacing.src msgctxt "" @@ -3671,7 +3671,7 @@ "Large (3/4\")\n" "itemlist.text" msgid "Large (3/4\")" -msgstr "" +msgstr "Голямо (3/4\")" #: spacing.src msgctxt "" @@ -3680,7 +3680,7 @@ "Extra Large (1\")\n" "itemlist.text" msgid "Extra Large (1\")" -msgstr "" +msgstr "Много голямо (1\")" #: srchdlg.src msgctxt "" @@ -7400,7 +7400,7 @@ "RID_SUBSETSTR_ADLAM\n" "string.text" msgid "Adlam" -msgstr "" +msgstr "Адлам" #: ucsubset.src msgctxt "" @@ -7409,7 +7409,7 @@ "RID_SUBSETSTR_BHAIKSUKI\n" "string.text" msgid "Bhaiksuki" -msgstr "" +msgstr "Бхайкшуки" #: ucsubset.src msgctxt "" @@ -7436,7 +7436,7 @@ "RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION\n" "string.text" msgid "Ideographic Symbols and Punctuation" -msgstr "" +msgstr "Идеографски символи и пунктуация" #: ucsubset.src msgctxt "" @@ -7445,7 +7445,7 @@ "RID_SUBSETSTR_MARCHEN\n" "string.text" msgid "Marchen" -msgstr "" +msgstr "Марчен" #: ucsubset.src msgctxt "" @@ -7454,7 +7454,7 @@ "RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n" "string.text" msgid "Mongolian Supplement" -msgstr "" +msgstr "Монголски – допълнение" #: ucsubset.src msgctxt "" @@ -7463,7 +7463,7 @@ "RID_SUBSETSTR_NEWA\n" "string.text" msgid "Newa" -msgstr "" +msgstr "Нева" #: ucsubset.src msgctxt "" @@ -7472,7 +7472,7 @@ "RID_SUBSETSTR_OSAGE\n" "string.text" msgid "Osage" -msgstr "" +msgstr "Осейдж" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/form.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/form.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/form.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/form.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 20:43+0000\n" +"PO-Revision-Date: 2017-04-26 22:56+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487277780.000000\n" +"X-POOTLE-MTIME: 1493247400.000000\n" #: datanavi.src msgctxt "" @@ -1471,7 +1471,7 @@ "Collect\n" "itemlist.text" msgid "Collect" -msgstr "" +msgstr "Събиране" #: fmstring.src msgctxt "" @@ -1480,7 +1480,7 @@ "Fusion\n" "itemlist.text" msgid "Fusion" -msgstr "" +msgstr "Сливане" #: fmstring.src msgctxt "" @@ -1489,7 +1489,7 @@ "Intersection\n" "itemlist.text" msgid "Intersection" -msgstr "" +msgstr "Сечение" #: fmstring.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 15:14+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-26 00:30+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487258083.000000\n" +"X-POOTLE-MTIME: 1493166628.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Не бе възможно да се заредят всички обекти SmartArt. Проблемът може да се избегне чрез записване във формат на Microsoft Office 2010 или по-нов." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/tbxctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/tbxctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/source/tbxctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/source/tbxctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 15:14+0000\n" +"PO-Revision-Date: 2017-04-26 22:54+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487258049.000000\n" +"X-POOTLE-MTIME: 1493247263.000000\n" #: colrctrl.src msgctxt "" @@ -486,7 +486,7 @@ "RID_SVXSTR_TRANSPARENT\n" "string.text" msgid "Transparent" -msgstr "" +msgstr "Прозрачност" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-23 01:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-02 01:00+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485133562.000000\n" +"X-POOTLE-MTIME: 1493686802.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -473,7 +473,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -482,7 +482,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -491,7 +491,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -500,7 +500,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -509,7 +509,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -518,7 +518,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -905,7 +905,7 @@ "label\n" "string.text" msgid "None" -msgstr "" +msgstr "Няма" #: colorwindow.ui msgctxt "" @@ -941,7 +941,7 @@ "label\n" "string.text" msgid "JPEG Quality" -msgstr "" +msgstr "Качество на JPEG" #: compressgraphicdialog.ui msgctxt "" @@ -950,7 +950,7 @@ "tooltip_text\n" "string.text" msgid "Lossy compression" -msgstr "" +msgstr "Компресия със загуби" #: compressgraphicdialog.ui msgctxt "" @@ -959,7 +959,7 @@ "label\n" "string.text" msgid "PNG Compression" -msgstr "" +msgstr "Компресия на PNG" #: compressgraphicdialog.ui msgctxt "" @@ -968,7 +968,7 @@ "tooltip_text\n" "string.text" msgid "Lossless compression" -msgstr "" +msgstr "Компресия без загуби" #: compressgraphicdialog.ui msgctxt "" @@ -977,7 +977,7 @@ "text\n" "string.text" msgid "90" -msgstr "" +msgstr "90" #: compressgraphicdialog.ui msgctxt "" @@ -986,7 +986,7 @@ "text\n" "string.text" msgid "9" -msgstr "" +msgstr "9" #: compressgraphicdialog.ui msgctxt "" @@ -995,7 +995,7 @@ "label\n" "string.text" msgid "Compression" -msgstr "" +msgstr "Компресия" #: compressgraphicdialog.ui msgctxt "" @@ -1049,7 +1049,7 @@ "text\n" "string.text" msgid "1" -msgstr "" +msgstr "1" #: compressgraphicdialog.ui msgctxt "" @@ -1058,7 +1058,7 @@ "text\n" "string.text" msgid "1" -msgstr "" +msgstr "1" #: compressgraphicdialog.ui msgctxt "" @@ -1094,7 +1094,7 @@ "label\n" "string.text" msgid "Resolution" -msgstr "" +msgstr "Разделителна способност" #: compressgraphicdialog.ui msgctxt "" @@ -1139,7 +1139,7 @@ "label\n" "string.text" msgid "Calculate New Size:" -msgstr "" +msgstr "Изчислен нов размер:" #: compressgraphicdialog.ui msgctxt "" @@ -1274,7 +1274,7 @@ "label\n" "string.text" msgid "Restart LibreOffice to enter Safe Mode" -msgstr "" +msgstr "Рестартиране на LibreOffice в безопасен режим" #: datanavigator.ui msgctxt "" @@ -1391,7 +1391,7 @@ "label\n" "string.text" msgid "Lines & Arrows" -msgstr "" +msgstr "Линии и стрелки" #: defaultshapespanel.ui msgctxt "" @@ -1400,7 +1400,7 @@ "label\n" "string.text" msgid "Curve" -msgstr "" +msgstr "Крива" #: defaultshapespanel.ui msgctxt "" @@ -1409,7 +1409,7 @@ "label\n" "string.text" msgid "Connectors" -msgstr "" +msgstr "Съединителни линии" #: defaultshapespanel.ui msgctxt "" @@ -1418,7 +1418,7 @@ "label\n" "string.text" msgid "Basic Shapes" -msgstr "" +msgstr "Основни фигури" #: defaultshapespanel.ui msgctxt "" @@ -1427,7 +1427,7 @@ "label\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Символи" #: defaultshapespanel.ui msgctxt "" @@ -1436,7 +1436,7 @@ "label\n" "string.text" msgid "Block Arrows" -msgstr "" +msgstr "Блокови стрелки" #: defaultshapespanel.ui msgctxt "" @@ -1445,7 +1445,7 @@ "label\n" "string.text" msgid "Flowchart" -msgstr "" +msgstr "Блоксхема" #: defaultshapespanel.ui msgctxt "" @@ -1454,7 +1454,7 @@ "label\n" "string.text" msgid "Callouts" -msgstr "" +msgstr "Изнесени означения" #: defaultshapespanel.ui msgctxt "" @@ -1463,7 +1463,7 @@ "label\n" "string.text" msgid "Stars" -msgstr "" +msgstr "Звезди" #: defaultshapespanel.ui msgctxt "" @@ -1472,7 +1472,7 @@ "label\n" "string.text" msgid "3D Objects" -msgstr "" +msgstr "Триизмерни обекти" #: deletefooterdialog.ui msgctxt "" @@ -2345,7 +2345,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 2" -msgstr "" +msgstr "Изходен цвят 2" #: dockingcolorreplace.ui msgctxt "" @@ -2354,7 +2354,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 3" -msgstr "" +msgstr "Изходен цвят 3" #: dockingcolorreplace.ui msgctxt "" @@ -2363,7 +2363,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 4" -msgstr "" +msgstr "Изходен цвят 4" #: dockingcolorreplace.ui msgctxt "" @@ -2372,7 +2372,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 1" -msgstr "" +msgstr "Изходен цвят 1" #: dockingcolorreplace.ui msgctxt "" @@ -2390,7 +2390,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 1" -msgstr "" +msgstr "Толеранс 1" #: dockingcolorreplace.ui msgctxt "" @@ -2399,7 +2399,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 2" -msgstr "" +msgstr "Толеранс 2" #: dockingcolorreplace.ui msgctxt "" @@ -2408,7 +2408,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 3" -msgstr "" +msgstr "Толеранс 3" #: dockingcolorreplace.ui msgctxt "" @@ -2417,7 +2417,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 4" -msgstr "" +msgstr "Толеранс 4" #: dockingcolorreplace.ui msgctxt "" @@ -2426,7 +2426,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 1" -msgstr "" +msgstr "Замяна с 1" #: dockingcolorreplace.ui msgctxt "" @@ -2435,7 +2435,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 2" -msgstr "" +msgstr "Замяна с 2" #: dockingcolorreplace.ui msgctxt "" @@ -2444,7 +2444,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 3" -msgstr "" +msgstr "Замяна с 3" #: dockingcolorreplace.ui msgctxt "" @@ -2453,7 +2453,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 4" -msgstr "" +msgstr "Замяна с 4" #: dockingcolorreplace.ui msgctxt "" @@ -2756,7 +2756,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery" -msgstr "" +msgstr "Възстановяване на документ на %PRODUCTNAME %PRODUCTVERSION" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2765,7 +2765,7 @@ "label\n" "string.text" msgid "_Discard" -msgstr "" +msgstr "Отхвърляне" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2774,7 +2774,7 @@ "label\n" "string.text" msgid "_Start" -msgstr "" +msgstr "Стартиране" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2783,7 +2783,7 @@ "label\n" "string.text" msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery." -msgstr "" +msgstr "%PRODUCTNAME ще се опита да възстанови файловете във вида им отпреди срива. Натиснете „Стартиране“, за да започнете процеса, или „Отхвърляне“, за да отмените възстановяването." #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2819,7 +2819,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery" -msgstr "" +msgstr "Възстановяване на документ на %PRODUCTNAME %PRODUCTVERSION" #: docrecoverysavedialog.ui msgctxt "" @@ -2900,7 +2900,7 @@ "label\n" "string.text" msgid "For_matted display" -msgstr "" +msgstr "Зачитане на формàта" #: findreplacedialog.ui msgctxt "" @@ -2927,7 +2927,7 @@ "label\n" "string.text" msgid "All _sheets" -msgstr "" +msgstr "Всички листове" #: findreplacedialog.ui msgctxt "" @@ -2972,7 +2972,7 @@ "label\n" "string.text" msgid "Find Pre_vious" -msgstr "" +msgstr "Предишно срещане" #: findreplacedialog.ui msgctxt "" @@ -2981,7 +2981,7 @@ "label\n" "string.text" msgid "Find Ne_xt" -msgstr "" +msgstr "Следващо срещане" #: findreplacedialog.ui msgctxt "" @@ -3017,7 +3017,7 @@ "label\n" "string.text" msgid "Re_gular expressions" -msgstr "" +msgstr "Регулярни изрази" #: findreplacedialog.ui msgctxt "" @@ -3026,7 +3026,7 @@ "label\n" "string.text" msgid "Attribut_es..." -msgstr "" +msgstr "Атрибути..." #: findreplacedialog.ui msgctxt "" @@ -3062,7 +3062,7 @@ "label\n" "string.text" msgid "Ignore diac_ritics" -msgstr "" +msgstr "Игнориране на диакритичните знаци" #: findreplacedialog.ui msgctxt "" @@ -3071,7 +3071,7 @@ "label\n" "string.text" msgid "Ignore _kashida" -msgstr "" +msgstr "Игнориране на кашида" #: findreplacedialog.ui msgctxt "" @@ -3107,7 +3107,7 @@ "label\n" "string.text" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Подобно звучене (японски)" #: findreplacedialog.ui msgctxt "" @@ -3143,7 +3143,7 @@ "label\n" "string.text" msgid "Replace _backwards" -msgstr "" +msgstr "Замяна назад" #: findreplacedialog.ui msgctxt "" @@ -3206,7 +3206,7 @@ "label\n" "string.text" msgid "Colum_ns" -msgstr "" +msgstr "Колони" #: findreplacedialog.ui msgctxt "" @@ -3224,7 +3224,7 @@ "label\n" "string.text" msgid "_Angle:" -msgstr "" +msgstr "Ъгъл:" #: floatingareastyle.ui msgctxt "" @@ -3233,7 +3233,7 @@ "tooltip_text\n" "string.text" msgid "Specify the angle of rotation for the gradient shading style." -msgstr "" +msgstr "Задайте ъгъла на завъртане за градиента." #: floatingareastyle.ui msgctxt "" @@ -3242,7 +3242,7 @@ "tooltip_text\n" "string.text" msgid "Rotate counterclockwise by 45 degrees." -msgstr "" +msgstr "Завъртане на 45° обратно на часовниковата стрелка." #: floatingareastyle.ui msgctxt "" @@ -3251,7 +3251,7 @@ "tooltip_text\n" "string.text" msgid "Rotate clockwise by 45 degrees." -msgstr "" +msgstr "Завъртане на 45° по часовниковата стрелка." #: floatingareastyle.ui msgctxt "" @@ -3260,7 +3260,7 @@ "label\n" "string.text" msgid "_Start value:" -msgstr "" +msgstr "Начална стойност:" #: floatingareastyle.ui msgctxt "" @@ -3269,7 +3269,7 @@ "label\n" "string.text" msgid "_End value:" -msgstr "" +msgstr "Крайна стойност:" #: floatingareastyle.ui msgctxt "" @@ -3278,7 +3278,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "" +msgstr "Въведете стойност за прозрачността в началото на градиента, където 0% е непрозрачно, а 100% е напълно прозрачно." #: floatingareastyle.ui msgctxt "" @@ -3287,7 +3287,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "" +msgstr "Въведете стойност за прозрачността в края на градиента, където 0% е непрозрачно, а 100% е напълно прозрачно." #: floatingareastyle.ui msgctxt "" @@ -3296,7 +3296,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3305,7 +3305,7 @@ "label\n" "string.text" msgid "_Border:" -msgstr "" +msgstr "Граница:" #: floatingareastyle.ui msgctxt "" @@ -3314,7 +3314,7 @@ "tooltip_text\n" "string.text" msgid "Specify the border value of gradient transparency." -msgstr "" +msgstr "Задайте ширината на канта за градиента на прозрачността." #: floatingareastyle.ui msgctxt "" @@ -3323,7 +3323,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3332,7 +3332,7 @@ "label\n" "string.text" msgid "Center _X:" -msgstr "" +msgstr "Център по X:" #: floatingareastyle.ui msgctxt "" @@ -3341,7 +3341,7 @@ "label\n" "string.text" msgid "Center _Y:" -msgstr "" +msgstr "Център по Y:" #: floatingareastyle.ui msgctxt "" @@ -3350,7 +3350,7 @@ "tooltip_text\n" "string.text" msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center." -msgstr "" +msgstr "Задайте хоризонталното отместване за градиента на прозрачността в проценти спрямо центъра. 50% е центърът по хоризонтала." #: floatingareastyle.ui msgctxt "" @@ -3359,7 +3359,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3368,7 +3368,7 @@ "tooltip_text\n" "string.text" msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center." -msgstr "" +msgstr "Задайте вертикалното отместване за градиента на прозрачността в проценти спрямо центъра. 50% е центърът по вертикала." #: floatingareastyle.ui msgctxt "" @@ -3377,7 +3377,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingcontour.ui msgctxt "" @@ -3626,7 +3626,7 @@ "label\n" "string.text" msgid "Same _content on left and right pages" -msgstr "" +msgstr "Еднакво съдържание на леви и десни страници" #: headfootformatpage.ui msgctxt "" @@ -3977,7 +3977,7 @@ "label\n" "string.text" msgid "Playback:" -msgstr "" +msgstr "Възпроизвеждане:" #: mediaplayback.ui msgctxt "" @@ -3986,7 +3986,7 @@ "label\n" "string.text" msgid "Seek:" -msgstr "" +msgstr "Превъртане:" #: mediaplayback.ui msgctxt "" @@ -3995,7 +3995,7 @@ "label\n" "string.text" msgid "Volume:" -msgstr "" +msgstr "Сила:" #: mediaplayback.ui msgctxt "" @@ -4004,7 +4004,7 @@ "tooltip_text\n" "string.text" msgid "View" -msgstr "" +msgstr "Изглед" #: namespacedialog.ui msgctxt "" @@ -4328,7 +4328,7 @@ "1\n" "stringlist.text" msgid "1.15 Lines" -msgstr "" +msgstr "1,15 реда" #: paralinespacingcontrol.ui msgctxt "" @@ -4337,7 +4337,7 @@ "2\n" "stringlist.text" msgid "1.5 Lines" -msgstr "" +msgstr "1,5 реда" #: paralinespacingcontrol.ui msgctxt "" @@ -4346,7 +4346,7 @@ "3\n" "stringlist.text" msgid "Double" -msgstr "" +msgstr "Двойно" #: paralinespacingcontrol.ui msgctxt "" @@ -4355,7 +4355,7 @@ "4\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Пропорционално" #: paralinespacingcontrol.ui msgctxt "" @@ -4364,7 +4364,7 @@ "5\n" "stringlist.text" msgid "At least" -msgstr "" +msgstr "Най-малко" #: paralinespacingcontrol.ui msgctxt "" @@ -4373,7 +4373,7 @@ "6\n" "stringlist.text" msgid "Leading" -msgstr "" +msgstr "Просвет" #: paralinespacingcontrol.ui msgctxt "" @@ -4382,7 +4382,7 @@ "7\n" "stringlist.text" msgid "Fixed" -msgstr "" +msgstr "Фиксирани" #: paralinespacingcontrol.ui msgctxt "" @@ -4409,7 +4409,7 @@ "label\n" "string.text" msgid "Before" -msgstr "" +msgstr "Преди" #: paralrspacing.ui msgctxt "" @@ -4418,7 +4418,7 @@ "tooltip_text\n" "string.text" msgid "Before Text Indent" -msgstr "" +msgstr "Отстъп преди текста" #: paralrspacing.ui msgctxt "" @@ -4427,7 +4427,7 @@ "label\n" "string.text" msgid "After" -msgstr "" +msgstr "След" #: paralrspacing.ui msgctxt "" @@ -4436,7 +4436,7 @@ "tooltip_text\n" "string.text" msgid "After Text Indent" -msgstr "" +msgstr "Отстъп след текста" #: paralrspacing.ui msgctxt "" @@ -4445,7 +4445,7 @@ "label\n" "string.text" msgid "First line" -msgstr "" +msgstr "Първи ред" #: paralrspacing.ui msgctxt "" @@ -4454,7 +4454,7 @@ "tooltip_text\n" "string.text" msgid "First Line Indent" -msgstr "" +msgstr "Отстъп на първия ред" #: paraulspacing.ui msgctxt "" @@ -4463,7 +4463,7 @@ "label\n" "string.text" msgid "Above" -msgstr "" +msgstr "Отгоре" #: paraulspacing.ui msgctxt "" @@ -4472,7 +4472,7 @@ "label\n" "string.text" msgid "Below" -msgstr "" +msgstr "Отдолу" #: paraulspacing.ui msgctxt "" @@ -4481,7 +4481,7 @@ "tooltip_text\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Разстояние над абзаца" #: paraulspacing.ui msgctxt "" @@ -4490,7 +4490,7 @@ "tooltip_text\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Разстояние под абзаца" #: passwd.ui msgctxt "" @@ -4553,7 +4553,7 @@ "title\n" "string.text" msgid "Profile exported" -msgstr "" +msgstr "Профилът е експортиран" #: profileexporteddialog.ui msgctxt "" @@ -4562,7 +4562,7 @@ "label\n" "string.text" msgid "Open Containing _Folder" -msgstr "" +msgstr "Отваряне на съдържащата папка" #: profileexporteddialog.ui msgctxt "" @@ -4571,7 +4571,7 @@ "label\n" "string.text" msgid "Your user profile has been exported as “libreoffice-profile.zip”." -msgstr "" +msgstr "Потребителският ви профил е експортиран като „libreoffice-profile.zip“." #: querydeletecontourdialog.ui msgctxt "" @@ -4818,7 +4818,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Comment" -msgstr "" +msgstr "Коментар" #: redlinefilterpage.ui msgctxt "" @@ -4854,7 +4854,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Author" -msgstr "" +msgstr "Автор" #: redlinefilterpage.ui msgctxt "" @@ -4863,7 +4863,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Range" -msgstr "" +msgstr "Диапазон" #: redlinefilterpage.ui msgctxt "" @@ -5061,7 +5061,7 @@ "title\n" "string.text" msgid "Safe Mode" -msgstr "" +msgstr "Безопасен режим" #: safemodedialog.ui msgctxt "" @@ -5070,25 +5070,25 @@ "label\n" "string.text" msgid "_Continue in Safe Mode" -msgstr "" +msgstr "Продължаване в безопасен режим" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "" +msgid "_Restart in Normal Mode" +msgstr "Рестартиране в нормален режим" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "Прилагане на промените и рестартиране" #: safemodedialog.ui msgctxt "" @@ -5103,6 +5103,11 @@ "\n" "The proposed changes get more radical from top down so it is recommended to try them successively one after another." msgstr "" +"В момента %PRODUCTNAME се изпълнява в безопасен режим, който временно изключва потребителската ви конфигурация и разширенията.\n" +"\n" +"За да възстановите работоспособността на %PRODUCTNAME, можете да внесете една или повече от следните промени в потребителския си профил.\n" +"\n" +"Предложените промени стават все по-радикални в посока към края на списъка, затова се препоръчва да ги изпробвате в показания ред." #: safemodedialog.ui msgctxt "" @@ -5111,7 +5116,7 @@ "label\n" "string.text" msgid "Restore from backup" -msgstr "" +msgstr "Възстановяване от резервно копие" #: safemodedialog.ui msgctxt "" @@ -5120,7 +5125,7 @@ "label\n" "string.text" msgid "Restore user configuration to the last known working state" -msgstr "" +msgstr "Възстановяване на потребителската конфигурация до последното работещо състояние" #: safemodedialog.ui msgctxt "" @@ -5129,7 +5134,7 @@ "label\n" "string.text" msgid "Restore state of installed user extensions to the last known working state" -msgstr "" +msgstr "Възстановяване на инсталираните от потребителя разширения до последното работещо състояние" #: safemodedialog.ui msgctxt "" @@ -5138,7 +5143,7 @@ "label\n" "string.text" msgid "Configure" -msgstr "" +msgstr "Конфигуриране" #: safemodedialog.ui msgctxt "" @@ -5147,7 +5152,7 @@ "label\n" "string.text" msgid "Disable all user extensions" -msgstr "" +msgstr "Изключване на всички потребителски разширения" #: safemodedialog.ui msgctxt "" @@ -5156,7 +5161,7 @@ "label\n" "string.text" msgid "Disable hardware acceleration (OpenGL, OpenCL)" -msgstr "" +msgstr "Изключване на хардуерното ускорение (OpenGL, OpenCL)" #: safemodedialog.ui msgctxt "" @@ -5165,7 +5170,7 @@ "label\n" "string.text" msgid "Extensions" -msgstr "" +msgstr "Разширения" #: safemodedialog.ui msgctxt "" @@ -5174,7 +5179,7 @@ "label\n" "string.text" msgid "Uninstall all user extensions" -msgstr "" +msgstr "Деинсталиране на всички потребителски разширения" #: safemodedialog.ui msgctxt "" @@ -5183,7 +5188,7 @@ "label\n" "string.text" msgid "Reset state of shared extensions" -msgstr "" +msgstr "Нулиране състоянието на споделените разширения" #: safemodedialog.ui msgctxt "" @@ -5192,7 +5197,7 @@ "label\n" "string.text" msgid "Reset state of bundled extensions" -msgstr "" +msgstr "Нулиране състоянието на вградените разширения" #: safemodedialog.ui msgctxt "" @@ -5201,7 +5206,7 @@ "label\n" "string.text" msgid "Reset to factory settings" -msgstr "" +msgstr "Връщане към фабричните настройки" #: safemodedialog.ui msgctxt "" @@ -5210,7 +5215,7 @@ "label\n" "string.text" msgid "Reset settings and user interface modifications" -msgstr "" +msgstr "Нулиране на настройките и промените в потребителския интерфейс" #: safemodedialog.ui msgctxt "" @@ -5219,7 +5224,7 @@ "label\n" "string.text" msgid "Reset entire user profile" -msgstr "" +msgstr "Нулиране на целия потребителски профил" #: safemodedialog.ui msgctxt "" @@ -5228,7 +5233,7 @@ "label\n" "string.text" msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug." -msgstr "" +msgstr "Ако срещнете проблеми, които не се разрешават с помощта на безопасния режим, посетете следния адрес, за да получите помощ или да съобщите за дефект." #: safemodedialog.ui msgctxt "" @@ -5237,7 +5242,7 @@ "label\n" "string.text" msgid "Get Help" -msgstr "" +msgstr "Помощ" #: safemodedialog.ui msgctxt "" @@ -5246,7 +5251,7 @@ "label\n" "string.text" msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)." -msgstr "" +msgstr "Можете да включите в доклада за грешка уместни части от потребителския профил (възможно е да съдържа лични данни)." #: safemodedialog.ui msgctxt "" @@ -5255,7 +5260,7 @@ "label\n" "string.text" msgid "Create Zip Archive from User Profile" -msgstr "" +msgstr "Архивиране на потребителския профил (Zip)" #: safemodedialog.ui msgctxt "" @@ -5264,7 +5269,7 @@ "label\n" "string.text" msgid "Show User Profile" -msgstr "" +msgstr "Показване на потребителския профил" #: safemodedialog.ui msgctxt "" @@ -5273,7 +5278,7 @@ "label\n" "string.text" msgid "Advanced" -msgstr "" +msgstr "Разширени" #: savemodifieddialog.ui msgctxt "" @@ -5453,7 +5458,7 @@ "label\n" "string.text" msgid "_Import" -msgstr "" +msgstr "Импортиране" #: sidebararea.ui msgctxt "" @@ -5687,7 +5692,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color mode" -msgstr "" +msgstr "Цветови режим" #: sidebargraphic.ui msgctxt "" @@ -5732,7 +5737,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Red" -msgstr "" +msgstr "Червено" #: sidebargraphic.ui msgctxt "" @@ -5750,7 +5755,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Green" -msgstr "" +msgstr "Зелено" #: sidebargraphic.ui msgctxt "" @@ -5768,7 +5773,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Blue" -msgstr "" +msgstr "Синьо" #: sidebargraphic.ui msgctxt "" @@ -6092,7 +6097,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Разстояние над абзаца" #: sidebarparagraph.ui msgctxt "" @@ -6110,7 +6115,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Разстояние под абзаца" #: sidebarparagraph.ui msgctxt "" @@ -6182,7 +6187,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Before Text Indent" -msgstr "" +msgstr "Отстъп преди текста" #: sidebarparagraph.ui msgctxt "" @@ -6200,7 +6205,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "After Text Indent" -msgstr "" +msgstr "Отстъп след текста" #: sidebarparagraph.ui msgctxt "" @@ -6218,7 +6223,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "First Line Indent" -msgstr "" +msgstr "Отстъп на първия ред" #: sidebarparagraph.ui msgctxt "" @@ -6236,7 +6241,7 @@ "label\n" "string.text" msgid "Position _X:" -msgstr "" +msgstr "Позиция по Х:" #: sidebarpossize.ui msgctxt "" @@ -6263,7 +6268,7 @@ "label\n" "string.text" msgid "Position _Y:" -msgstr "" +msgstr "Позиция по Y:" #: sidebarpossize.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/source/ui/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/source/ui/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/source/ui/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-01-26 17:29+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-30 11:21+0000\n" +"Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493551308.000000\n" #: poolfmt.src msgctxt "" @@ -1131,7 +1134,7 @@ "STR_POOLCOLL_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "Цитат" +msgstr "Позоваване" #: poolfmt.src msgctxt "" @@ -1216,6 +1219,14 @@ #: poolfmt.src msgctxt "" +"poolfmt.src\n" +"STR_POOLCOLL_HTML_BLOCKQUOTE\n" +"string.text" +msgid "Quotations" +msgstr "Блоков цитат" + +#: poolfmt.src +msgctxt "" "poolfmt.src\n" "STR_POOLCOLL_HTML_PRE\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/source/uibase/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/source/uibase/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/source/uibase/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/source/uibase/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 23:08+0000\n" +"PO-Revision-Date: 2017-04-30 11:21+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485385696.000000\n" +"X-POOTLE-MTIME: 1493551312.000000\n" #: attrdesc.src msgctxt "" @@ -878,7 +878,7 @@ "STR_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "Цитат" +msgstr "Позоваване" #: initui.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-27 01:49+0000\n" +"PO-Revision-Date: 2017-04-30 11:31+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: none\n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485481750.000000\n" +"X-POOTLE-MTIME: 1493551899.000000\n" #: abstractdialog.ui msgctxt "" @@ -12683,7 +12683,6 @@ msgstr "Пейзаж" #: pageorientationcontrol.ui -#, fuzzy msgctxt "" "pageorientationcontrol.ui\n" "landscape\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794562.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593092.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 16:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5715,22 +5715,20 @@ msgstr "ফাংশন" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 17:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:19+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 08:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: bn_BD\n" -"X-POOTLE-MTIME: 1467652744.000000\n" +"X-POOTLE-MTIME: 1478939685.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "ক্রমবিভক্ত" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 17:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467652994.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480594677.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 17:57+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Language: bn_BD\n" "X-POOTLE-MTIME: 1440525439.000000\n" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:27+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 08:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: bn_BD\n" -"X-POOTLE-MTIME: 1467653269.000000\n" +"X-POOTLE-MTIME: 1478940569.000000\n" #: imagemgr.src msgctxt "" @@ -3899,6 +3899,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:32+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 09:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467653523.000000\n" +"X-POOTLE-MTIME: 1478941801.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:49+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bn_IN\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794955.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593260.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–2016 LibreOffice contributors." -msgstr "কপিরাইট © 2000 - 2014 LibreOffice অবদানকারী।" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-11-25 08:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5715,22 +5715,20 @@ msgstr "ফাংশন" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 17:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn_IN\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: bn_BD\n" -"X-POOTLE-MTIME: 1467654347.000000\n" +"X-POOTLE-MTIME: 1478950830.000000\n" #: dialog.src msgctxt "" @@ -724,6 +724,30 @@ msgid "Hierarchical" msgstr "ক্রমবিভক্ত" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 17:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bn_IN\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467654386.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480595791.000000\n" #: alienwarndialog.ui msgctxt "" @@ -784,7 +784,6 @@ msgstr "লাইসেন্স প্রদর্শন (_S)" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -797,19 +796,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"Mozilla পাবলিক লাইসেন্স, v. 2.0 -এর অংশ হিসাবে %PRODUCTNAME উপলব্ধ করানো হয়েছে। MPL -এর একটি অনুলিপি http://mozilla.org/MPL/2.0/ -এ পেতে যেতে পারবেন।\n" -"\n" -"তৃতীয় পক্ষ কোড অতিরিক্ত কপিরাইট বিজ্ঞপ্তি এবং লাইসেন্স শর্তাদি LICENSE.html ফাইলে উল্লিখিত সফ্টওয়্যারের অংশে প্রযোজ্য; সঠিক বিস্তারিতটি ইংরাজিতে দেখতে, লাইসেন্স দেখান বাছুন।\n" -"\n" -"এখানে উল্লিখিত সমস্ত ট্রেডমার্ক এবং নিবন্ধিত ট্রেডমার্ক তাদের সংশ্লিষ্ট মালিকদের।\n" -"\n" -"কপিরাইট © 2000, 2014 LibreOffice কন্ট্রিবিউটর। সকল অধিকার সংরক্ষিত।\n" -"\n" -"এই প্রোডাক্টটি তৈরি করেছে %OOOVENDOR, OpenOffice.org -এর উপরে ভিত্তি করে, যা 2000, 2011 Oracle এবং/অথবা তার অধীনস্তের কপিরাইট। %OOOVENDOR সকল কমিউনিটি সদস্যদের স্বীকৃতি দেয়, বিস্তারিত জানতে দয়া করে http://www.libreoffice.org/ দেখুন।" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 19:05+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Language: bn_BD\n" "X-POOTLE-MTIME: 1440529551.000000\n" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:50+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 11:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali \n" "Language: bn_IN\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: bn_BD\n" -"X-POOTLE-MTIME: 1467654601.000000\n" +"X-POOTLE-MTIME: 1478951589.000000\n" #: imagemgr.src msgctxt "" @@ -3892,6 +3892,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 12:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bn_IN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467654755.000000\n" +"X-POOTLE-MTIME: 1478952573.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bn-IN/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bn-IN/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5093,16 +5093,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:41+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 11:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bo\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476794487.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480593048.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-24 02:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5719,7 +5719,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5727,7 +5727,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 16:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 09:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656203.000000\n" +"X-POOTLE-MTIME: 1478941881.000000\n" #: dialog.src msgctxt "" @@ -731,6 +731,30 @@ msgid "Hierarchical" msgstr "རིམ་པ་སྒྲིག་སྟངས།" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 18:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bo\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467656303.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480594689.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 17:38+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440524313.000000\n" #: addresstemplate.src @@ -345,6 +345,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:24+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 09:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656671.000000\n" +"X-POOTLE-MTIME: 1478942651.000000\n" #: imagemgr.src msgctxt "" @@ -3905,6 +3905,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 09:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656884.000000\n" +"X-POOTLE-MTIME: 1478943934.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bo/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bo/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bo/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bo/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/br/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-22 09:50+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-03 08:18+0000\n" "Last-Translator: Tornoz \n" "Language-Team: none\n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490176227.000000\n" +"X-POOTLE-MTIME: 1493799513.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Perzhiaded LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 Perzhiaded LibreOffice." #: aboutdialog.ui msgctxt "" @@ -779,7 +779,7 @@ "label\n" "string.text" msgid "Hatch" -msgstr "" +msgstr "Barrennigoù" #: areatabpage.ui msgctxt "" @@ -6161,7 +6161,7 @@ "label\n" "string.text" msgid "Hatch" -msgstr "" +msgstr "Barrennigoù" #: hatchpage.ui msgctxt "" @@ -7980,7 +7980,7 @@ "label\n" "string.text" msgid "Style" -msgstr "" +msgstr "Stil" #: menuassignpage.ui msgctxt "" @@ -7989,7 +7989,7 @@ "label\n" "string.text" msgid "Icons & Text" -msgstr "" +msgstr "Arlunioù ha testenn" #: menuassignpage.ui msgctxt "" @@ -7998,7 +7998,7 @@ "label\n" "string.text" msgid "Icons" -msgstr "" +msgstr "Arlunioù" #: menuassignpage.ui msgctxt "" @@ -8007,7 +8007,7 @@ "label\n" "string.text" msgid "Text" -msgstr "" +msgstr "Testenn" #: menuassignpage.ui msgctxt "" @@ -8061,7 +8061,7 @@ "label\n" "string.text" msgid "Reset" -msgstr "" +msgstr "Adderaouekaat" #: menuassignpage.ui msgctxt "" @@ -8079,7 +8079,7 @@ "label\n" "string.text" msgid "Remove" -msgstr "" +msgstr "Lemel kuit" #: menuassignpage.ui msgctxt "" @@ -8088,7 +8088,7 @@ "label\n" "string.text" msgid "Add Command" -msgstr "" +msgstr "Ouzhpennañ un arc'had" #: menuassignpage.ui msgctxt "" @@ -8097,7 +8097,7 @@ "label\n" "string.text" msgid "Add Separator" -msgstr "" +msgstr "Ouzhpennañ un dispartier" #: menuassignpage.ui msgctxt "" @@ -8106,7 +8106,7 @@ "label\n" "string.text" msgid "Add Submenu" -msgstr "" +msgstr "Ouzhpennañ un islañser" #: menuassignpage.ui msgctxt "" @@ -8466,7 +8466,7 @@ "label\n" "string.text" msgid "Den_ominator places:" -msgstr "" +msgstr "Sifroù en anver:" #: numberingformatpage.ui msgctxt "" @@ -9267,7 +9267,7 @@ "label\n" "string.text" msgid "Tab stop at:" -msgstr "" +msgstr "Taolennata da:" #: numberingpositionpage.ui msgctxt "" @@ -10036,7 +10036,7 @@ "0\n" "stringlist.text" msgid "Arabic (1, 2, 3…)" -msgstr "" +msgstr "Arabeg (1, 2,3…)" #: optctlpage.ui msgctxt "" @@ -10045,7 +10045,7 @@ "1\n" "stringlist.text" msgid "Eastern Arabic (٣ ,٢ ,١…)" -msgstr "" +msgstr "Arabeg ar sav-heol (٣ ,٢ ,١…)" #: optctlpage.ui msgctxt "" @@ -11026,7 +11026,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Edit Available language modules" -msgstr "" +msgstr "Embann ar molladoù yezh hegerz" #: optlingupage.ui msgctxt "" @@ -11062,7 +11062,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Edit User-defined dictionaries" -msgstr "" +msgstr "Embann geriadurioù an arveriad" #: optlingupage.ui msgctxt "" @@ -12688,7 +12688,7 @@ "label\n" "string.text" msgid "_Notebookbar icon size:" -msgstr "" +msgstr "Ment arlunioù ar _vetabarrenn:" #: optviewpage.ui msgctxt "" @@ -12697,7 +12697,7 @@ "0\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Emgefreek" #: optviewpage.ui msgctxt "" @@ -12706,7 +12706,7 @@ "1\n" "stringlist.text" msgid "Small" -msgstr "" +msgstr "Bihan" #: optviewpage.ui msgctxt "" @@ -12715,7 +12715,7 @@ "2\n" "stringlist.text" msgid "Large" -msgstr "" +msgstr "Bras" #: optviewpage.ui msgctxt "" @@ -12967,7 +12967,7 @@ "label\n" "string.text" msgid "Page numbers:" -msgstr "" +msgstr "Niverennoù pajenn:" #: pageformatpage.ui msgctxt "" @@ -13450,7 +13450,7 @@ "1\n" "stringlist.text" msgid "1.15 Lines" -msgstr "" +msgstr "1,15 linenn" #: paraindentspacing.ui msgctxt "" @@ -13459,7 +13459,7 @@ "2\n" "stringlist.text" msgid "1.5 Lines" -msgstr "" +msgstr "1,5 linenn" #: paraindentspacing.ui msgctxt "" @@ -13468,7 +13468,7 @@ "3\n" "stringlist.text" msgid "Double" -msgstr "" +msgstr "Daougement" #: paraindentspacing.ui msgctxt "" @@ -13477,7 +13477,7 @@ "4\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Kenfeuriek" #: paraindentspacing.ui msgctxt "" @@ -13486,7 +13486,7 @@ "5\n" "stringlist.text" msgid "At least" -msgstr "" +msgstr "Da vihanañ" #: paraindentspacing.ui msgctxt "" @@ -13495,7 +13495,7 @@ "6\n" "stringlist.text" msgid "Leading" -msgstr "" +msgstr "Lizherennerezhel" #: paratabspage.ui msgctxt "" @@ -13648,7 +13648,7 @@ "label\n" "string.text" msgid "points" -msgstr "" +msgstr "a bikennoù" #: paratabspage.ui msgctxt "" @@ -13657,7 +13657,7 @@ "label\n" "string.text" msgid "dashes" -msgstr "" +msgstr "a c'hourzhelloù" #: paratabspage.ui msgctxt "" @@ -13666,7 +13666,7 @@ "label\n" "string.text" msgid "underscores" -msgstr "" +msgstr "a islinennoù" #: password.ui msgctxt "" @@ -13792,7 +13792,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Daskemmañ" #: patterntabpage.ui msgctxt "" @@ -13801,7 +13801,7 @@ "label\n" "string.text" msgid "Pattern" -msgstr "" +msgstr "Goustur" #: patterntabpage.ui msgctxt "" @@ -13810,7 +13810,7 @@ "label\n" "string.text" msgid "Pattern Editor:" -msgstr "" +msgstr "Embanner goustur:" #: patterntabpage.ui msgctxt "" @@ -13819,7 +13819,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Pattern Editor" -msgstr "" +msgstr "Embanner goustur" #: patterntabpage.ui msgctxt "" @@ -13828,7 +13828,7 @@ "label\n" "string.text" msgid "Foreground Color:" -msgstr "" +msgstr "Liv ar rakva:" #: patterntabpage.ui msgctxt "" @@ -13837,7 +13837,7 @@ "label\n" "string.text" msgid "Background Color:" -msgstr "" +msgstr "Liv an drekleur:" #: patterntabpage.ui msgctxt "" @@ -13846,7 +13846,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Dibarzhioù" #: patterntabpage.ui msgctxt "" @@ -13855,7 +13855,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Example" -msgstr "" +msgstr "Skouer" #: patterntabpage.ui msgctxt "" @@ -13864,7 +13864,7 @@ "label\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Alberz" #: percentdialog.ui msgctxt "" @@ -14764,7 +14764,7 @@ "title\n" "string.text" msgid "Interactive Screenshot Annotation" -msgstr "" +msgstr "Notennoù etrewezhiat a dapadoù-skramm" #: screenshotannotationdialog.ui msgctxt "" @@ -14773,7 +14773,7 @@ "label\n" "string.text" msgid "Save Screenshot..." -msgstr "" +msgstr "Enrollañ an dapadenn-skramm..." #: screenshotannotationdialog.ui msgctxt "" @@ -14782,7 +14782,7 @@ "label\n" "string.text" msgid "Click the widgets to add annotation:" -msgstr "" +msgstr "Klikit war ar widjed evit ouzhpennañ un notenn" #: screenshotannotationdialog.ui msgctxt "" @@ -14791,7 +14791,7 @@ "label\n" "string.text" msgid "Paste the following markup into the help file:" -msgstr "" +msgstr "Pegit ar c'hlav da-heul e-barzh ar restr skoazell:" #: scriptorganizer.ui msgctxt "" @@ -15034,7 +15034,7 @@ "label\n" "string.text" msgid "Ctrl-click required _to follow links" -msgstr "" +msgstr "Reol + klik azgoulennet _a-benn heuliañ ereoù" #: securityoptionsdialog.ui msgctxt "" @@ -16240,7 +16240,7 @@ "label\n" "string.text" msgid "Drawing Object Text" -msgstr "" +msgstr "Testenn ergorenn an dresadenn" #: textattrtabpage.ui msgctxt "" @@ -16267,7 +16267,7 @@ "label\n" "string.text" msgid "Custom Shape Text" -msgstr "" +msgstr "Testenn gant ur stumm personelaet" #: textattrtabpage.ui msgctxt "" @@ -16456,7 +16456,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Page Style" -msgstr "" +msgstr "Giz ar bajenn" #: textflowpage.ui msgctxt "" @@ -17140,7 +17140,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Variable" -msgstr "" +msgstr "Argemmenn" #: zoomdialog.ui msgctxt "" @@ -17185,7 +17185,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Columns" -msgstr "" +msgstr "Bannoù" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/extensions/source/bibliography.po libreoffice-l10n-5.3.3~rc2/translations/source/br/extensions/source/bibliography.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/extensions/source/bibliography.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/extensions/source/bibliography.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-03 08:19+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467652655.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493799552.000000\n" #: bib.src msgctxt "" @@ -94,7 +94,7 @@ "ST_TYPE_CONFERENCE\n" "string.text" msgid "Conference proceedings article (BiBTeX)" -msgstr "" +msgstr "Pennad a akta prezegennoù (BiBTeX)" #: sections.src msgctxt "" @@ -118,7 +118,7 @@ "ST_TYPE_INPROCEEDINGS\n" "string.text" msgid "Conference proceedings article" -msgstr "" +msgstr "Pennad a akta prezegennoù" #: sections.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/extensions/source/propctrlr.po libreoffice-l10n-5.3.3~rc2/translations/source/br/extensions/source/propctrlr.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/extensions/source/propctrlr.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/extensions/source/propctrlr.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:18+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-03 08:51+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467652689.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493801467.000000\n" #: formlinkdialog.src msgctxt "" @@ -272,7 +272,7 @@ "Top\n" "itemlist.text" msgid "Top" -msgstr "" +msgstr "Krec'h" #: formres.src msgctxt "" @@ -281,7 +281,7 @@ "Middle\n" "itemlist.text" msgid "Middle" -msgstr "" +msgstr "Kreiz" #: formres.src msgctxt "" @@ -290,7 +290,7 @@ "Bottom\n" "itemlist.text" msgid "Bottom" -msgstr "" +msgstr "Traoñ" #: formres.src msgctxt "" @@ -339,7 +339,7 @@ "Small\n" "itemlist.text" msgid "Small" -msgstr "" +msgstr "Bihan" #: formres.src msgctxt "" @@ -348,7 +348,7 @@ "Large\n" "itemlist.text" msgid "Large" -msgstr "" +msgstr "Bras" #: formres.src msgctxt "" @@ -901,7 +901,7 @@ "Without frame\n" "itemlist.text" msgid "Without frame" -msgstr "" +msgstr "Hep framm" #: formres.src msgctxt "" @@ -910,7 +910,7 @@ "3D look\n" "itemlist.text" msgid "3D look" -msgstr "" +msgstr "Neuz 3M" #: formres.src msgctxt "" @@ -919,7 +919,7 @@ "Flat\n" "itemlist.text" msgid "Flat" -msgstr "" +msgstr "Plaen" #: formres.src msgctxt "" @@ -928,7 +928,7 @@ "Valuelist\n" "itemlist.text" msgid "Valuelist" -msgstr "" +msgstr "Rollgwerzhioù" #: formres.src msgctxt "" @@ -937,7 +937,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Taolenn" #: formres.src msgctxt "" @@ -946,7 +946,7 @@ "Query\n" "itemlist.text" msgid "Query" -msgstr "" +msgstr "Goulenn" #: formres.src msgctxt "" @@ -955,7 +955,7 @@ "Sql\n" "itemlist.text" msgid "Sql" -msgstr "" +msgstr "Sql" #: formres.src msgctxt "" @@ -964,7 +964,7 @@ "Sql [Native]\n" "itemlist.text" msgid "Sql [Native]" -msgstr "" +msgstr "Sql [genidik]" #: formres.src msgctxt "" @@ -982,7 +982,7 @@ "Left\n" "itemlist.text" msgid "Left" -msgstr "" +msgstr "Kleiz" #: formres.src msgctxt "" @@ -991,7 +991,7 @@ "Center\n" "itemlist.text" msgid "Center" -msgstr "" +msgstr "Kreizañ" #: formres.src msgctxt "" @@ -1000,7 +1000,7 @@ "Right\n" "itemlist.text" msgid "Right" -msgstr "" +msgstr "Dehou" #: formres.src msgctxt "" @@ -1009,7 +1009,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Tra ebet" #: formres.src msgctxt "" @@ -1018,7 +1018,7 @@ "Submit form\n" "itemlist.text" msgid "Submit form" -msgstr "" +msgstr "Kas ar furmskrid" #: formres.src msgctxt "" @@ -1027,7 +1027,7 @@ "Reset form\n" "itemlist.text" msgid "Reset form" -msgstr "" +msgstr "Deraouekaat ar furmskrid" #: formres.src msgctxt "" @@ -1036,7 +1036,7 @@ "Open document/web page\n" "itemlist.text" msgid "Open document/web page" -msgstr "" +msgstr "Digeriñ an teul/ar bajenn web" #: formres.src msgctxt "" @@ -1045,7 +1045,7 @@ "First record\n" "itemlist.text" msgid "First record" -msgstr "" +msgstr "Enrolladenn gentañ" #: formres.src msgctxt "" @@ -1054,7 +1054,7 @@ "Previous record\n" "itemlist.text" msgid "Previous record" -msgstr "" +msgstr "Enrolladenn gent" #: formres.src msgctxt "" @@ -1063,7 +1063,7 @@ "Next record\n" "itemlist.text" msgid "Next record" -msgstr "" +msgstr "Enrolladenn war-lerc'h" #: formres.src msgctxt "" @@ -1072,7 +1072,7 @@ "Last record\n" "itemlist.text" msgid "Last record" -msgstr "" +msgstr "Enrolladenn diwezhañ" #: formres.src msgctxt "" @@ -1081,7 +1081,7 @@ "Save record\n" "itemlist.text" msgid "Save record" -msgstr "" +msgstr "Enrollañ an enrolladenn " #: formres.src msgctxt "" @@ -1090,7 +1090,7 @@ "Undo data entry\n" "itemlist.text" msgid "Undo data entry" -msgstr "" +msgstr "Dizober enankad ar roadenn" #: formres.src msgctxt "" @@ -1099,7 +1099,7 @@ "New record\n" "itemlist.text" msgid "New record" -msgstr "" +msgstr "Enrolladenn nevez" #: formres.src msgctxt "" @@ -1108,7 +1108,7 @@ "Delete record\n" "itemlist.text" msgid "Delete record" -msgstr "" +msgstr "Dilemel an enrolladenn" #: formres.src msgctxt "" @@ -1117,7 +1117,7 @@ "Refresh form\n" "itemlist.text" msgid "Refresh form" -msgstr "" +msgstr "Azbevaat ar furmskrid" #: formres.src msgctxt "" @@ -1126,7 +1126,7 @@ "Get\n" "itemlist.text" msgid "Get" -msgstr "" +msgstr "Kaout" #: formres.src msgctxt "" @@ -1135,7 +1135,7 @@ "Post\n" "itemlist.text" msgid "Post" -msgstr "" +msgstr "Postañ" #: formres.src msgctxt "" @@ -1144,7 +1144,7 @@ "URL\n" "itemlist.text" msgid "URL" -msgstr "" +msgstr "URL" #: formres.src msgctxt "" @@ -1153,7 +1153,7 @@ "Multipart\n" "itemlist.text" msgid "Multipart" -msgstr "" +msgstr "Liesparzhioù" #: formres.src msgctxt "" @@ -1162,7 +1162,7 @@ "Text\n" "itemlist.text" msgid "Text" -msgstr "" +msgstr "Testenn" #: formres.src msgctxt "" @@ -1171,7 +1171,7 @@ "Standard (short)\n" "itemlist.text" msgid "Standard (short)" -msgstr "" +msgstr "Skoueriek (berr)" #: formres.src msgctxt "" @@ -1180,7 +1180,7 @@ "Standard (short YY)\n" "itemlist.text" msgid "Standard (short YY)" -msgstr "" +msgstr "Skoueriek (berr BB)" #: formres.src msgctxt "" @@ -1189,7 +1189,7 @@ "Standard (short YYYY)\n" "itemlist.text" msgid "Standard (short YYYY)" -msgstr "" +msgstr "Skoueriek (berr BBBB)" #: formres.src msgctxt "" @@ -1198,7 +1198,7 @@ "Standard (long)\n" "itemlist.text" msgid "Standard (long)" -msgstr "" +msgstr "Skoueriek (hir)" #: formres.src msgctxt "" @@ -1207,7 +1207,7 @@ "DD/MM/YY\n" "itemlist.text" msgid "DD/MM/YY" -msgstr "" +msgstr "DD/MM/BB" #: formres.src msgctxt "" @@ -1216,7 +1216,7 @@ "MM/DD/YY\n" "itemlist.text" msgid "MM/DD/YY" -msgstr "" +msgstr "MM/DD/BB" #: formres.src msgctxt "" @@ -1225,7 +1225,7 @@ "YY/MM/DD\n" "itemlist.text" msgid "YY/MM/DD" -msgstr "" +msgstr "BB/MM/DD" #: formres.src msgctxt "" @@ -1234,7 +1234,7 @@ "DD/MM/YYYY\n" "itemlist.text" msgid "DD/MM/YYYY" -msgstr "" +msgstr "DD/MM/BBBB" #: formres.src msgctxt "" @@ -1243,7 +1243,7 @@ "MM/DD/YYYY\n" "itemlist.text" msgid "MM/DD/YYYY" -msgstr "" +msgstr "MM/DD/BBBB" #: formres.src msgctxt "" @@ -1252,7 +1252,7 @@ "YYYY/MM/DD\n" "itemlist.text" msgid "YYYY/MM/DD" -msgstr "" +msgstr "BBBB/MM/DD" #: formres.src msgctxt "" @@ -1261,7 +1261,7 @@ "YY-MM-DD\n" "itemlist.text" msgid "YY-MM-DD" -msgstr "" +msgstr "BB-MM-DD" #: formres.src msgctxt "" @@ -1270,7 +1270,7 @@ "YYYY-MM-DD\n" "itemlist.text" msgid "YYYY-MM-DD" -msgstr "" +msgstr "BBBB-MM-DD" #: formres.src msgctxt "" @@ -1279,7 +1279,7 @@ "13:45\n" "itemlist.text" msgid "13:45" -msgstr "" +msgstr "13:45" #: formres.src msgctxt "" @@ -1288,7 +1288,7 @@ "13:45:00\n" "itemlist.text" msgid "13:45:00" -msgstr "" +msgstr "13:45:00" #: formres.src msgctxt "" @@ -1297,7 +1297,7 @@ "01:45 PM\n" "itemlist.text" msgid "01:45 PM" -msgstr "" +msgstr "01:45 PM" #: formres.src msgctxt "" @@ -1306,7 +1306,7 @@ "01:45:00 PM\n" "itemlist.text" msgid "01:45:00 PM" -msgstr "" +msgstr "01:45:00 PM" #: formres.src msgctxt "" @@ -1315,7 +1315,7 @@ "Not Selected\n" "itemlist.text" msgid "Not Selected" -msgstr "" +msgstr "N'eo ket diuzet" #: formres.src msgctxt "" @@ -1324,7 +1324,7 @@ "Selected\n" "itemlist.text" msgid "Selected" -msgstr "" +msgstr "Diuzet" #: formres.src msgctxt "" @@ -1333,7 +1333,7 @@ "Not Defined\n" "itemlist.text" msgid "Not Defined" -msgstr "" +msgstr "Ket Despizet" #: formres.src msgctxt "" @@ -1342,7 +1342,7 @@ "All records\n" "itemlist.text" msgid "All records" -msgstr "" +msgstr "An holl Enrolladennoù" #: formres.src msgctxt "" @@ -1351,7 +1351,7 @@ "Active record\n" "itemlist.text" msgid "Active record" -msgstr "" +msgstr "Enrolladenn oberiant" #: formres.src msgctxt "" @@ -1360,7 +1360,7 @@ "Current page\n" "itemlist.text" msgid "Current page" -msgstr "" +msgstr "Pajenn vremanel" #: formres.src msgctxt "" @@ -1369,7 +1369,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Ket" #: formres.src msgctxt "" @@ -1378,7 +1378,7 @@ "Yes\n" "itemlist.text" msgid "Yes" -msgstr "" +msgstr "Ya" #: formres.src msgctxt "" @@ -1387,7 +1387,7 @@ "Parent Form\n" "itemlist.text" msgid "Parent Form" -msgstr "" +msgstr "Furmskrid kar" #: formres.src msgctxt "" @@ -1396,7 +1396,7 @@ "_blank\n" "itemlist.text" msgid "_blank" -msgstr "" +msgstr "_goullo" #: formres.src msgctxt "" @@ -1405,7 +1405,7 @@ "_parent\n" "itemlist.text" msgid "_parent" -msgstr "" +msgstr "_kar" #: formres.src msgctxt "" @@ -1414,7 +1414,7 @@ "_self\n" "itemlist.text" msgid "_self" -msgstr "" +msgstr "_e-unan" #: formres.src msgctxt "" @@ -1423,7 +1423,7 @@ "_top\n" "itemlist.text" msgid "_top" -msgstr "" +msgstr "_krec'h" #: formres.src msgctxt "" @@ -1432,7 +1432,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Tra ebet" #: formres.src msgctxt "" @@ -1441,7 +1441,7 @@ "Single\n" "itemlist.text" msgid "Single" -msgstr "" +msgstr "Eeun" #: formres.src msgctxt "" @@ -1450,7 +1450,7 @@ "Multi\n" "itemlist.text" msgid "Multi" -msgstr "" +msgstr "Lies" #: formres.src msgctxt "" @@ -1908,7 +1908,7 @@ "Horizontal\n" "itemlist.text" msgid "Horizontal" -msgstr "" +msgstr "A-blaen" #: formres.src msgctxt "" @@ -1917,7 +1917,7 @@ "Vertical\n" "itemlist.text" msgid "Vertical" -msgstr "" +msgstr "A-blom" #: formres.src msgctxt "" @@ -1974,7 +1974,7 @@ "Default\n" "itemlist.text" msgid "Default" -msgstr "" +msgstr "Dre-ziouer" #: formres.src msgctxt "" @@ -1983,7 +1983,7 @@ "OK\n" "itemlist.text" msgid "OK" -msgstr "" +msgstr "Mat eo" #: formres.src msgctxt "" @@ -1992,7 +1992,7 @@ "Cancel\n" "itemlist.text" msgid "Cancel" -msgstr "" +msgstr "Nullañ" #: formres.src msgctxt "" @@ -2001,7 +2001,7 @@ "Help\n" "itemlist.text" msgid "Help" -msgstr "" +msgstr "Skoazell" #: formres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/br/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-01 12:58+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-02 17:35+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480597133.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493746507.000000\n" #: filter.src msgctxt "" @@ -23070,7 +23070,7 @@ "3\n" "string.text" msgid "The value to be converted." -msgstr "" +msgstr "Gwerzh da amdreiñ." #: scfuncs.src msgctxt "" @@ -23079,7 +23079,7 @@ "4\n" "string.text" msgid "text" -msgstr "" +msgstr "testenn" #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/br/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:31+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 13:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657119.000000\n" +"X-POOTLE-MTIME: 1478955676.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Urzhaz" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/br/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-17 14:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 13:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1468765209.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480598574.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"Da hegerz eo bet lakaet %PRODUCTNAME dre dermenoù al Lañvaz foran Hollek e live izeloc'h GNU, handelv 2.0. Kavet e vez un eilad eus al lañvaz mod MLP e http://mozilla.org/MPL/2.0/.\n" -"\n" -"Menegoù diwar-benn gwirioù ar voneg savet gant trede strolladoù ha diwar-benn termenoù al lañvaz a c'hell bezañ arloet da lodennoù ar meziant a vez displeget er restr LICENSE.html ; dibabit Diskouez al Lañvaz evit gwelout ar munudoù e saozneg.\n" -"\n" -"An holl verkoù kenwerzhel hag ar merkoù marilhet zo d'o ferc'hennerion dezho.\n" -"\n" -"Copyright © 2000, 2016 perzhiaded LibreOffice. Pep gwir miret strizh.\n" -"\n" -"Krouet eo bet ar meziant-mañ gant %OOOVENDOR, diazezet war OpenOffice.org, a zo gant Copyright Oracle 2000, 2011 hag he stalioù mibion. %OOOVENDOR a drugareka izili holl ar gumuniezh, lennit http://www.libreoffice.org/ evit gouzout hiroc'h." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/br/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-10-16 17:10+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1445015459.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/br/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:41+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 13:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657685.000000\n" +"X-POOTLE-MTIME: 1478956584.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/br/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 13:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657917.000000\n" +"X-POOTLE-MTIME: 1478958031.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/br/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/br/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/br/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/br/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 13:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 12:58+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: brx\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476795493.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480594567.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 10:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: brx\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656314.000000\n" +"X-POOTLE-MTIME: 1478947789.000000\n" #: dialog.src msgctxt "" @@ -720,6 +720,30 @@ msgid "Hierarchical" msgstr "हायरार्चिकेल" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 18:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: brx\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467656429.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480596308.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,16 +3,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 18:17+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: brx\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440526649.000000\n" #: addresstemplate.src @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 09:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 11:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: brx\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462698260.000000\n" +"X-POOTLE-MTIME: 1478948583.000000\n" #: imagemgr.src msgctxt "" @@ -3913,6 +3913,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 11:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: brx\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656942.000000\n" +"X-POOTLE-MTIME: 1478949660.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/brx/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/brx/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/brx/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/brx/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 12:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 12:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bs\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476795775.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480594815.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME je moderan, jednostavan za korištenje, paket produktivnosti otvorenog izvornog koda za obradu teksta, radnih listova, prezentacija i više." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Autorsko pravo © 2000 - 2014 LibreOffice doprinosioci." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 16:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5699,22 +5699,20 @@ msgstr "Funkcije" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 16:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:21+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 22:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656518.000000\n" +"X-POOTLE-MTIME: 1478989781.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "Hijerarhijski" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 18:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 13:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: bs\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467656710.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480597431.000000\n" #: alienwarndialog.ui msgctxt "" @@ -791,7 +791,6 @@ msgstr "_Prikaži licencu" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -804,19 +803,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME je dostupan u skladu sa uslovima Mozilla Public License, v. 2.0. Kopija MPL licence može se naći na http://mozilla.org/MPL/2.0/.\n" -"\n" -"Treća dio Koda Dodatne napomene o autorskim pravima i uslove licenciranja primjenjene na dijelove Softvera su utvrđene u LICENSE.html datoteke, odaberite Pregled Licence za vidjeti tačne informacije na engleskom jeziku.\n" -"\n" -"Svi zaštitni znakovi i registrirani zaštitni znakovi navedeni u ovom dokumentu su vlasništvo njihovih autora.\n" -"\n" -"Copyright © 2000, 2013 LibreOffice saradnika i / ili njihovih podružnica. Sva prava pridržana.\n" -"\n" -"Ovaj proizvod je stvoren %OOOVENDOR, na osnovu OpenOffice.org, koji je Copyright 2000, 2011 Oracle i / ili njenih podružnica. %OOOVENDOR potvrđuje sve članove zajednice, pogledajte http://www.libreoffice.org/ za više detalja." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 20:42+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440535321.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:31+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 22:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657091.000000\n" +"X-POOTLE-MTIME: 1478990803.000000\n" #: imagemgr.src msgctxt "" @@ -3892,6 +3892,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:34+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-12 23:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: bs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657298.000000\n" +"X-POOTLE-MTIME: 1478992290.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/bs/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/bs/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/bs/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/bs/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 13:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5105,16 +5105,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-17 12:39+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:00+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: none\n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484656794.000000\n" +"X-POOTLE-MTIME: 1491991214.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 – 2016 col·laboradors del LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 – 2017 col·laboradors del LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-11-22 16:59+0000\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479833957.000000\n" +"X-POOTLE-MTIME: 1493293044.000000\n" #: 00000004.xhp msgctxt "" @@ -1683,7 +1683,7 @@ "par_id160220162106567373\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Above " -msgstr "Trieu Full - Insereix files - Files a sobre" +msgstr "Trieu Full ▸ Insereix files ▸ Files a sobre" #: sheet_menu.xhp msgctxt "" @@ -1691,7 +1691,7 @@ "par_id160220162109048207\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Below" -msgstr "Trieu Full - Insereix files - Files a sota" +msgstr "Trieu Full ▸ Insereix files ▸ Files a sota" #: sheet_menu.xhp msgctxt "" @@ -1699,7 +1699,7 @@ "par_id160220162107055028\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Left" -msgstr "Trieu Full - Insereix columnes - Columnes a l'esquerra" +msgstr "Trieu Full ▸ Insereix columnes ▸ Columnes a l'esquerra" #: sheet_menu.xhp msgctxt "" @@ -1707,7 +1707,7 @@ "par_id160220162109126013\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Right" -msgstr "Trieu Full - Insereix columnes - Columnes a la dreta" +msgstr "Trieu Full ▸ Insereix columnes ▸ Columnes a la dreta" #: sheet_menu.xhp msgctxt "" @@ -1715,7 +1715,7 @@ "par_id3149095\n" "help.text" msgid "Choose Sheet - Insert Page Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina" #: sheet_menu.xhp msgctxt "" @@ -1723,7 +1723,7 @@ "par_id3149398\n" "help.text" msgid "Choose Sheet - Insert Page Break - Row Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina ▸ Salt de fila" #: sheet_menu.xhp msgctxt "" @@ -1731,7 +1731,7 @@ "par_id3150084\n" "help.text" msgid "Choose Sheet - Insert Page Break - Column Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina ▸ Salt de columna" #: sheet_menu.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-02-19 19:43+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1487533380.000000\n" +"X-POOTLE-MTIME: 1493293057.000000\n" #: 01120000.xhp msgctxt "" @@ -5686,22 +5686,20 @@ msgstr "Funcions" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -11254,7 +11252,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Aquesta categoria conté les funcions matemàtiques del Calc. Per obrir l'Auxiliar de funcions, trieu Insereix - Funció." +msgstr "Aquesta categoria conté les funcions matemàtiques del Calc. Per obrir l'Auxiliar de funcions, trieu Insereix ▸ Funció." #: 04060106.xhp #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-11-17 12:14+0000\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479384863.000000\n" +"X-POOTLE-MTIME: 1493293078.000000\n" #: address_auto.xhp msgctxt "" @@ -8356,7 +8356,7 @@ "32\n" "help.text" msgid "You can assign a comment to each cell by choosing Insert - Comment. The comment is indicated by a small red square, the comment indicator, in the cell." -msgstr "Podeu assignar un comentari a cada cel·la triant Insereix - Comentari. El comentari s'indica a la cel·la amb un quadrat vermell petit, l'indicador de comentari." +msgstr "Podeu assignar un comentari a cada cel·la triant Insereix ▸ Comentari. El comentari s'indica a la cel·la amb un quadrat vermell petit, l'indicador de comentari." #: note_insert.xhp msgctxt "" @@ -8426,7 +8426,7 @@ "36\n" "help.text" msgid "Insert - Comment" -msgstr "Insereix - Comentari" +msgstr "Insereix ▸ Comentari" #: numbers_text.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-22 13:31+0000\n" +"PO-Revision-Date: 2017-04-27 11:38+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1487770265.000000\n" +"X-POOTLE-MTIME: 1493293087.000000\n" #: 01010000.xhp msgctxt "" @@ -9886,7 +9886,7 @@ "par_id3153551\n" "help.text" msgid "Insert - Object" -msgstr "Insereix - Objecte" +msgstr "Insereix ▸ Objecte" #: 02200000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-01-12 08:46+0000\n" +"PO-Revision-Date: 2017-04-27 11:38+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1484210816.000000\n" +"X-POOTLE-MTIME: 1493293125.000000\n" #: aaa_start.xhp msgctxt "" @@ -17953,7 +17953,6 @@ msgstr "espais protegits;insercióespais; inserció d'espais protegitsguionets;inserció personalitzadaseparadors condicionalsseparadors; condicionalsguionsguions no separablesreemplaçament;guionsguions protegitsintercanvi, vegeu també reemplaçament" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "hd_id3155364\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-16 12:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-27 11:42+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479299218.000000\n" +"X-POOTLE-MTIME: 1493293346.000000\n" #: 01000000.xhp msgctxt "" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp @@ -9244,7 +9244,7 @@ "25\n" "help.text" msgid "You can type and edit comments with the Insert - Comment command. Comments that are permanently displayed can be edited by clicking the comment box. Click the Navigator and under the Comments entry you can view all comments in the current document. By double clicking a comment in Navigator, the cursor will jump to the corresponding cell containing the comment." -msgstr "Podeu escriure i editar comentaris mitjançant l'ordre Insereix - Comentari. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada Comentaris podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que contingui el comentari." +msgstr "Podeu escriure i editar comentaris mitjançant l'ordre Insereix ▸ Comentari. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada Comentaris podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que contingui el comentari." #: 01060100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-16 12:50+0000\n" +"PO-Revision-Date: 2017-04-27 11:42+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479300653.000000\n" +"X-POOTLE-MTIME: 1493293374.000000\n" #: 3d_create.xhp msgctxt "" @@ -4170,7 +4170,7 @@ "6\n" "help.text" msgid "Insert - File" -msgstr "Insereix - Fitxer" +msgstr "Insereix ▸ Fitxer" #: palette_files.xhp msgctxt "" @@ -5477,7 +5477,7 @@ "16\n" "help.text" msgid "Insert - Object - OLE Object" -msgstr "Insereix - Objecte - Objecte OLE" +msgstr "Insereix ▸ Objecte ▸ Objecte OLE" #: text2curve.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-16 13:18+0000\n" +"PO-Revision-Date: 2017-04-27 11:46+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479302294.000000\n" +"X-POOTLE-MTIME: 1493293577.000000\n" #: 01120000.xhp msgctxt "" @@ -3428,7 +3428,7 @@ "3\n" "help.text" msgid "The Edit Sections dialog is similar to the Insert - Section dialog, and offers the following additional options:" -msgstr "El diàleg Edita les seccions és semblant al diàleg Insereix - Secció, i ofereix les opcions addicionals següents:" +msgstr "El diàleg Edita les seccions és semblant al diàleg Insereix ▸ Secció, i ofereix les opcions addicionals següents:" #: 02170000.xhp msgctxt "" @@ -3651,7 +3651,7 @@ "par_id102720151029387618\n" "help.text" msgid "Insert - Field." -msgstr "Insereix - Camp." +msgstr "Insereix ▸ Camp." #: 03100000.xhp msgctxt "" @@ -11006,13 +11006,12 @@ msgstr "Ús de taules de continguts i índexs" #: 04120210.xhp -#, fuzzy msgctxt "" "04120210.xhp\n" "par_id3152942\n" "help.text" msgid "Insert - Table of Contents and Index - Index Entry" -msgstr "Insereix - Índexs i taules - Entrada" +msgstr "Insereix ▸ Índexs i taules ▸ Entrada" #: 04120211.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,18 +4,18 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-11-16 13:17+0000\n" -"Last-Translator: Júlia Liébana Ramos \n" +"PO-Revision-Date: 2017-04-27 11:51+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479302275.000000\n" +"X-POOTLE-MTIME: 1493293869.000000\n" #: anchor_object.xhp msgctxt "" @@ -5250,13 +5250,12 @@ msgstr "Feu clic a la part del document on vulgueu col·locar l'àncora de la nota." #: footnote_usage.xhp -#, fuzzy msgctxt "" "footnote_usage.xhp\n" "par_id3147120\n" "help.text" msgid "Choose Insert - Footnote and Endnote - Footnote or Endnote." -msgstr "Trieu Insereix - Nota al peu/Nota final." +msgstr "Trieu Insereix ▸ Nota al peu o final." #: footnote_usage.xhp #, fuzzy @@ -6892,13 +6891,12 @@ msgstr "Creació de text no imprimible" #: hidden_text.xhp -#, fuzzy msgctxt "" "hidden_text.xhp\n" "par_id3148603\n" "help.text" msgid "Insert - Field - More Fields" -msgstr "Insereix - Camps - Més camps" +msgstr "Insereix ▸ Camps ▸ Més camps" #: hidden_text.xhp msgctxt "" @@ -6907,7 +6905,7 @@ "11\n" "help.text" msgid "Insert - Section" -msgstr "Insereix - Secció" +msgstr "Insereix ▸ Secció" #: hidden_text.xhp msgctxt "" @@ -8123,14 +8121,13 @@ msgstr "Creeu un índex en cada document individual, copieu i enganxeu els índexs en un sol document i a continuació editeu-los." #: indices_multidoc.xhp -#, fuzzy msgctxt "" "indices_multidoc.xhp\n" "par_id3147118\n" "45\n" "help.text" msgid "Select each index, choose Insert - Section, and then enter a name for the index. In a separate document, choose Insert - Section, select Link, click the Browse button, and then locate and insert a named index section." -msgstr "Seleccioneu cada índex, trieu Insereix - Secció i introduïu un nom per a l'índex. En un document separat, trieu Insereix - Secció, seleccioneu Enllaç, feu clic al botó de navegació (...) i cerqueu i inseriu una secció d'índex amb nom." +msgstr "Seleccioneu cada índex, trieu Insereix ▸ Secció i introduïu un nom per a l'índex. En un document separat, trieu Insereix ▸ Secció, seleccioneu Enllaç, feu clic al botó Navega, aleshores cerqueu i inseriu una secció d'índex amb nom." #: indices_multidoc.xhp #, fuzzy @@ -8532,7 +8529,7 @@ "3\n" "help.text" msgid "Choose Insert - Image - From File." -msgstr "Trieu Insereix - Imatge - Des d'un fitxer." +msgstr "Trieu Insereix ▸ Imatge ▸ Des d'un fitxer." #: insert_graphic_dialog.xhp msgctxt "" @@ -8794,7 +8791,7 @@ "5\n" "help.text" msgid "Choose Insert - Media - Scan, and choose the scanning source from the submenu." -msgstr "Trieu Insereix - Multimèdia - Escàner i trieu la font de l'escaneig des del submenú." +msgstr "Trieu Insereix ▸ Multimèdia ▸ Escàner i trieu la font de l'escaneig des del submenú." #: insert_graphic_scan.xhp msgctxt "" @@ -12285,7 +12282,7 @@ "par_id3149992\n" "help.text" msgid "You can cross-reference most objects in your document, such as graphics, drawing objects, OLE objects, and tables, so long as they have a caption. To add a caption to an object, select the object, and then choose Insert - Caption." -msgstr "Podeu aplicar referències creuades a la majoria d'objectes del document, com ara gràfics, objectes de dibuix, objectes OLE i taules, sempre que tinguin una llegenda. Per afegir una llegenda a un objecte, seleccioneu l'objecte i trieu Insereix - Llegenda." +msgstr "Podeu aplicar referències creuades a la majoria d'objectes del document, com ara gràfics, objectes de dibuix, objectes OLE i taules, sempre que tinguin una llegenda. Per afegir una llegenda a un objecte, seleccioneu l'objecte i trieu Insereix ▸ Llegenda." #: references.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-02-27 08:35+0000\n" +"PO-Revision-Date: 2017-04-27 09:49+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488184528.000000\n" +"X-POOTLE-MTIME: 1493286563.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -19006,7 +19006,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "~Edita la vora..." +msgstr "~Edita el contorn..." #: GenericCommands.xcu msgctxt "" @@ -28195,7 +28195,7 @@ "Label\n" "value.text" msgid "Edit Footnote/Endnote" -msgstr "Edita la nota al peu/nota final" +msgstr "Edita la nota al peu o final" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-22 09:20+0000\n" +"PO-Revision-Date: 2017-04-27 09:43+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: none\n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487755222.000000\n" +"X-POOTLE-MTIME: 1493286184.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6536,7 +6536,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "Edita la vora" +msgstr "Edita el contorn" #: optcalculatepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/sd/source/core.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/sd/source/core.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/sd/source/core.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/sd/source/core.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-07-04 18:29+0000\n" +"PO-Revision-Date: 2017-04-12 10:01+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467656965.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491991292.000000\n" #: glob.src msgctxt "" @@ -86,7 +86,7 @@ "STR_MASTERSLIDE_NAME\n" "string.text" msgid "Master Slide" -msgstr "" +msgstr "Diapositiva mestra" #: glob.src msgctxt "" @@ -94,7 +94,7 @@ "STR_MASTERPAGE_NAME\n" "string.text" msgid "Master Page" -msgstr "" +msgstr "Pàgina mestra" #: glob.src msgctxt "" @@ -677,7 +677,7 @@ "STR_SHRINK_FONT_SIZE\n" "string.text" msgid "Shrink font size" -msgstr "" +msgstr "Redueix la mida de lletra" #: glob.src msgctxt "" @@ -685,4 +685,4 @@ "STR_GROW_FONT_SIZE\n" "string.text" msgid "Grow font size" -msgstr "" +msgstr "Augmenta la mida de lletra" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/sd/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/sd/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/sd/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-09-15 20:45+0000\n" +"PO-Revision-Date: 2017-04-12 10:02+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1473972309.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491991333.000000\n" #: popup.src msgctxt "" @@ -155,7 +155,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Tots els estils" #: res_bmp.src msgctxt "" @@ -164,7 +164,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Estils amagats" #: res_bmp.src msgctxt "" @@ -173,7 +173,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Estils aplicats" #: res_bmp.src msgctxt "" @@ -182,7 +182,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Estils personalitzats" #: res_bmp.src msgctxt "" @@ -191,7 +191,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Tots els estils" #: res_bmp.src msgctxt "" @@ -200,7 +200,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Estils amagats" #: sdstring.src msgctxt "" @@ -2426,7 +2426,7 @@ "STR_PRESENTATIONS_STYLE_FAMILY\n" "string.text" msgid "Presentation Styles" -msgstr "" +msgstr "Estils de presentació" #: strings.src msgctxt "" @@ -2450,7 +2450,7 @@ "STR_CUSTOMANIMATIONPANE\n" "string.text" msgid "Animation" -msgstr "" +msgstr "Animació" #: strings.src msgctxt "" @@ -2602,7 +2602,7 @@ "STR_OBJECTS_TREE\n" "string.text" msgid "Page Tree" -msgstr "" +msgstr "Arbre de la pàgina" #: toolbox.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-09 09:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:02+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483952790.000000\n" +"X-POOTLE-MTIME: 1491991370.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Jeràrquic" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Mode format d'emplenament" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Estil nou a partir de la selecció" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Actualitza l'estil" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-09 12:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:04+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: none\n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483964702.000000\n" +"X-POOTLE-MTIME: 1491991444.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Totes ls marques comercials i registrades mencionades aquí són propietat dels seus respectius propietaris.\n" "\n" -"Copyright © 2000 – 2016 dels col·laboradors del LibreOffice. Tots els drets reservats.\n" +"Copyright © 2000 – 2017 dels col·laboradors del LibreOffice. Tots els drets reservats.\n" "\n" "Aquest producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb copyright 2000 i 2011 d'Oracle o dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtenir més detalls." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-05-23 08:40+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:00+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1463992847.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491991256.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Text amb format [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-09 11:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:01+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483961425.000000\n" +"X-POOTLE-MTIME: 1491991265.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "hongarès (alfabet rúnic)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "anglès (Malàisia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-23 08:18+0000\n" +"PO-Revision-Date: 2017-04-05 10:41+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487837909.000000\n" +"X-POOTLE-MTIME: 1491388865.000000\n" #: SafeMode.src msgctxt "" @@ -2717,7 +2717,7 @@ "RID_SVXSTR_HATCH0\n" "string.text" msgid "Black 45 Degrees Wide" -msgstr "" +msgstr "Negre 45 graus ample" #: sdstring.src msgctxt "" @@ -2725,7 +2725,7 @@ "RID_SVXSTR_HATCH1\n" "string.text" msgid "Black 45 Degrees" -msgstr "" +msgstr "Negre 45 graus" #: sdstring.src msgctxt "" @@ -2733,7 +2733,7 @@ "RID_SVXSTR_HATCH2\n" "string.text" msgid "Black -45 Degrees" -msgstr "" +msgstr "Negre -45 graus" #: sdstring.src msgctxt "" @@ -2741,7 +2741,7 @@ "RID_SVXSTR_HATCH3\n" "string.text" msgid "Black 90 Degrees" -msgstr "" +msgstr "Negre 90 graus" #: sdstring.src msgctxt "" @@ -2749,7 +2749,7 @@ "RID_SVXSTR_HATCH4\n" "string.text" msgid "Red Crossed 45 Degrees" -msgstr "" +msgstr "Vermell encreuat 45 graus" #: sdstring.src msgctxt "" @@ -2757,7 +2757,7 @@ "RID_SVXSTR_HATCH5\n" "string.text" msgid "Red Crossed 0 Degrees" -msgstr "" +msgstr "Vermell encreuat 0 graus" #: sdstring.src msgctxt "" @@ -2765,7 +2765,7 @@ "RID_SVXSTR_HATCH6\n" "string.text" msgid "Blue Crossed 45 Degrees" -msgstr "" +msgstr "Blau encreuat 45 graus" #: sdstring.src msgctxt "" @@ -2773,7 +2773,7 @@ "RID_SVXSTR_HATCH7\n" "string.text" msgid "Blue Crossed 0 Degrees" -msgstr "" +msgstr "Blau encreuat 0 graus" #: sdstring.src msgctxt "" @@ -2781,7 +2781,7 @@ "RID_SVXSTR_HATCH8\n" "string.text" msgid "Blue Triple 90 Degrees" -msgstr "" +msgstr "Blau triple 90 graus" #: sdstring.src msgctxt "" @@ -2789,7 +2789,7 @@ "RID_SVXSTR_HATCH9\n" "string.text" msgid "Black 0 Degrees" -msgstr "" +msgstr "Negre 0 graus" #: sdstring.src msgctxt "" @@ -3644,7 +3644,7 @@ "Small Medium (1/4\")\n" "itemlist.text" msgid "Small Medium (1/4\")" -msgstr "" +msgstr "Mitjà petit (1/4\")" #: spacing.src msgctxt "" @@ -3653,7 +3653,7 @@ "Medium (3/8\")\n" "itemlist.text" msgid "Medium (3/8\")" -msgstr "" +msgstr "Mitjà (3/8\")" #: spacing.src msgctxt "" @@ -3662,7 +3662,7 @@ "Medium Large (1/2\")\n" "itemlist.text" msgid "Medium Large (1/2\")" -msgstr "" +msgstr "Mitjà gran (1/2\")" #: spacing.src msgctxt "" @@ -7454,7 +7454,7 @@ "RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n" "string.text" msgid "Mongolian Supplement" -msgstr "" +msgstr "Suplement mongol" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 08:18+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487837938.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-02-27 08:47+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-27 09:43+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488185238.000000\n" +"X-POOTLE-MTIME: 1493286196.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2972,7 +2972,7 @@ "label\n" "string.text" msgid "Find Pre_vious" -msgstr "" +msgstr "Cerca l'_anterior" #: findreplacedialog.ui msgctxt "" @@ -2981,7 +2981,7 @@ "label\n" "string.text" msgid "Find Ne_xt" -msgstr "" +msgstr "Cerca el _següent" #: findreplacedialog.ui msgctxt "" @@ -3386,7 +3386,7 @@ "title\n" "string.text" msgid "Contour Editor" -msgstr "Editor de la vora" +msgstr "Editor del contorn" #: floatingcontour.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Surt" +msgid "_Restart in Normal Mode" +msgstr "_Reinicia en mode normal" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 13:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ca-valencia\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476795996.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480597250.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 – 2016 col·laboradors del LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 16:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5720,22 +5720,20 @@ msgstr "Funcions" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 20:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:27+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-13 02:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467656831.000000\n" +"X-POOTLE-MTIME: 1479004359.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Jeràrquic" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 18:31+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 14:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ca-valencia\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467657092.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480601071.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,19 +795,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"El %PRODUCTNAME és disponible sota els termes de la Llicència Pública de Mozilla, versió 2.0. Podeu obtindre una còpia de la llicència MPL en http://mozilla.org/MPL/2.0/.\n" -"\n" -"Les notes de copyright i termes de llicència adicionals aplicables al codi de tercers són disponibles en el fitxer LICENSE.html; premeu Mostra la llicència per a consultar els detalls exactes en anglés.\n" -"\n" -"Totes ls marques comercials i registrades mencionades ací són propietat dels seus respectius propietaris.\n" -"\n" -"Copyright © 2000 – 2016 dels col·laboradors del LibreOffice. Tots els drets reservats.\n" -"\n" -"Este producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb copyright 2000 i 2011 d'Oracle o dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtindre més detalls." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-04-29 07:17+0000\n" "Last-Translator: Pau Iranzo \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1461914269.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:37+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-13 02:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657474.000000\n" +"X-POOTLE-MTIME: 1479005303.000000\n" #: imagemgr.src msgctxt "" @@ -3888,6 +3888,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 18:41+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-13 03:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ca-valencia\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467657718.000000\n" +"X-POOTLE-MTIME: 1479006535.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ca-valencia/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 14:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5073,16 +5073,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-07 12:46+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483793160.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 přispěvatelé do LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-09-16 17:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: NONE\n" @@ -5678,7 +5678,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5686,7 +5686,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-09-16 17:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: NONE\n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-30 08:30+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483086620.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchicky" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-30 08:43+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483087402.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME je k dispozici za podmínek licence Mozilla Public License, v. 2.0, jejíž kopii naleznete na stránce http://mozilla.org/MPL/2.0/.\n" -"\n" -"Doplňkové údaje o autorských právech a licenčních podmínkách třetích stran vztahujících se na části tohoto programu naleznete v souboru LICENSE.html. Pokud se chcete seznámit s detaily, zvolte možnost Zobrazit licenci (informace pouze v angličtině).\n" -"\n" -"Všechny ochranné známky a registrované ochranné známky, které jsou zde zmíněny, jsou majetkem jejich vlastníků.\n" -"\n" -"Copyright © 2000–2016 přispěvatelé do LibreOffice. Všechna práva vyhrazena.\n" -"\n" -"Tento produkt vytvořila %OOOVENDOR na základě OpenOffice.org, který je Copyright 2000, 2011 Oracle a/nebo jeho pobočky. %OOOVENDOR děkuje všem členům komunity, podrobnosti naleznete na stránce http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-04 22:01+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "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.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1457128879.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-11-17 10:56+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1479380203.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Maďarština (staromaďarské písmo)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-07 09:20+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483780838.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cs/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cs/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cs/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cs/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-08 11:03+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483873385.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "U_končit" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Použít změny a _restartovat" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-19 10:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:13+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484822543.000000\n" +"X-POOTLE-MTIME: 1493370835.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Hawlfraint © 2000 - 2016 cyfranwyr LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Hawlfraint © 2000 - 2017 cyfranwyr LibreOffice." #: aboutdialog.ui msgctxt "" @@ -9305,7 +9305,9 @@ msgid "" "Minimum space between\n" "numbering and text:" -msgstr "Lleiafswm bwlch rhwng/nrhifo a thestun:" +msgstr "" +"Lleiafswm bylchu rhwng\n" +"rhifo a'r testun:" #: numberingpositionpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-30 11:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483096840.000000\n" +"X-POOTLE-MTIME: 1493370848.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchaidd" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Modd Fformat Llanw" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Arddull Newydd o'r Dewis" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Diweddaru Arddull" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-19 10:51+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: none\n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484823107.000000\n" +"X-POOTLE-MTIME: 1493370861.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Eiddo eu perchnogion yw'r holl nodau masnach a nodau masnach cofrestredig nodir yma.\n" "\n" -"Hawlfraint © 2000, 2016 cyfranwyr LibreOffice a'u cysylltiadau. Diogelir pob hawl.\n" +"Hawlfraint © 2000–2017 cyfranwyr LibreOffice a'u cysylltiadau. Diogelir pob hawl.\n" "\n" "Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gweler http://www.libreoffice.org/ am wybodaeth bellach." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-01-19 10:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484823172.000000\n" +"X-POOTLE-MTIME: 1493370868.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Testun fformatiwyd [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 10:53+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484823180.000000\n" +"X-POOTLE-MTIME: 1493370877.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hwngareg (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Saesneg (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-01 15:41+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480606911.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370880.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Methu llwytho'r holl SmartArts. Bydd cadw yn Microsoft Office 2010 neu hwyrach yn osgoi'r mater yma." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/cy/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/cy/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/cy/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/cy/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-19 11:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 09:14+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484823848.000000\n" +"X-POOTLE-MTIME: 1493370889.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Gadael" +msgid "_Restart in Normal Mode" +msgstr "_Ail gychwyn yn y Modd Arferol" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/da/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-01 20:08+0000\n" -"Last-Translator: David Lamhauge \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:39+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480622883.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469583.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice bidragydere." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 LibreOffice bidragydere." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-12-30 20:16+0000\n" -"Last-Translator: Leif Lodahl \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-24 07:14+0000\n" +"Last-Translator: David Lamhauge \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483128993.000000\n" +"X-POOTLE-MTIME: 1493018093.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-01-10 18:32+0000\n" "Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484073163.000000\n" #: 01000000.xhp @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Vælg" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/da/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 20:01+0000\n" -"Last-Translator: David Lamhauge \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:39+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481572872.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469589.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkisk" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Fyldformattilstand" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Ny typografi fra markeringen" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Opdater typografi" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/da/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-12 20:04+0000\n" -"Last-Translator: David Lamhauge \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:40+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573048.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469601.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,19 +794,19 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME er gjort tilgængelig under betingelserne i Mozilla Public License, v. 2.0. En kopi af MPL-licensen fås på http://mozilla.org/MPL/2.0/.\n" +"%PRODUCTNAME er gjort tilgængelig under betingelserne i Mozilla Public License, v. 2.0. En kopi af MPL-licensen kan fås på http://mozilla.org/MPL/2.0/.\n" "\n" "Beskeder om ophavsret på kode fra tredjepart og licensbetingelser, der anvendes på dele af softwaren, fremgår af filen LICENSE.html; vælg Vis licens for at se de præcise detaljer på engelsk.\n" "\n" "Alle varemærker og registrerede varemærker som nævnes heri, tilhører de respektive ejere.\n" "\n" -"Ophavsret © 2000, 2016 LibreOffice-bidragydere. Alle rettigheder forbeholdes.\n" +"Ophavsret © 2000 - 2017 LibreOffice-bidragydere. Alle rettigheder forbeholdes.\n" "\n" -"Dette produkt blev skab af %OOOVENDOR, baseret på OpenOffice.org, der er underlagt ophavsret 2000, 2011 Oracle og/eller dets partnere. %OOOVENDOR vedkender sig alle medlemmer af fællesskabet, se venligst http://www.libreoffice.org/ for flere detaljer." +"Dette produkt blev skabt af %OOOVENDOR, baseret på OpenOffice.org, der er underlagt ophavsret 2000, 2011 af Oracle og/eller dets partnere. %OOOVENDOR takker alle medlemmer af fællesskabet, se venligst http://www.libreoffice.org/ for flere detaljer." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-01-06 21:29+0000\n" -"Last-Translator: Jeppe Bundsgaard \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-26 10:06+0000\n" +"Last-Translator: laugesen \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1452115748.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493201194.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ msgstr "Formateret tekst [RTF]" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Formateret tekst [RTF]" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/java.po libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/java.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/java.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/java.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 20:05+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573111.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469691.000000\n" #: javaerror.src msgctxt "" @@ -38,7 +38,7 @@ "STR_WARNING_INVALIDJAVASETTINGS_MAC\n" "string.text" msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME." -msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at benytte for %PRODUCTNAME under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." +msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at %PRODUCTNAME skal benytte under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." #: javaerror.src msgctxt "" @@ -54,7 +54,7 @@ "STR_ERROR_JVMCREATIONFAILED_MAC\n" "string.text" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced." -msgstr "%PRODUCTNAME forudsætter et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte Java-afviklingsmiljø er defekt. Vælg venligst en anden version, eller installer et nyt Java-afviklingsmiljø og vælg det under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." +msgstr "%PRODUCTNAME forudsætter et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte Java-afviklingsmiljø er defekt. Vælg venligst en anden version, eller installer et nyt Java-afviklingsmiljø og vælg det under %PRODUCTNAME - Indstillinger - %PRODUCTNAME - Avanceret." #: javaerror.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 20:05+0000\n" -"Last-Translator: David Lamhauge \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573122.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469700.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungarsk (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Engelsk (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/da/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-27 16:26+0000\n" -"Last-Translator: David Lamhauge \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480263982.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469714.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Kunne ikke indlæse SmartArts. At gemme i Microsoft Office 2010 eller senere vil omgå dette problem." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/da/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/da/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/da/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/da/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-15 20:35+0000\n" -"Last-Translator: scootergrisen \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-29 12:42+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489610128.000000\n" +"X-POOTLE-MTIME: 1493469720.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Afslut" +msgid "_Restart in Normal Mode" +msgstr "_Genstart i Normal Tilstand" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-23 05:18+0000\n" -"Last-Translator: Christian Kühl \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:34+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246312.000000\n" +"X-POOTLE-MTIME: 1491993240.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice Beitragende." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 LibreOffice-Beitragende." #: aboutdialog.ui msgctxt "" @@ -824,7 +824,7 @@ "label\n" "string.text" msgid "Apply spacing between Asian, Latin and complex text" -msgstr "Abstand zwischen asiatischem, lateinischem und komplexem Text verwenden" +msgstr "Abstand zwischen asiatischem, lateinischem und komplexem Text anwenden" #: asiantypography.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/editeng/source/items.po libreoffice-l10n-5.3.3~rc2/translations/source/de/editeng/source/items.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/editeng/source/items.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/editeng/source/items.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-02-23 20:05+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-29 14:48+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487880300.000000\n" +"X-POOTLE-MTIME: 1493477307.000000\n" #: page.src msgctxt "" @@ -1655,7 +1655,7 @@ "RID_SVXITEMS_FORBIDDEN_RULE_OFF\n" "string.text" msgid "Apply list of forbidden characters to beginning and end of lines" -msgstr "Verbotene Zeichen an Zeilenanfang und -ende berücksichtigen" +msgstr "Verbotene Zeichen am Zeilenanfang und -ende berücksichtigen" #: svxitems.src msgctxt "" @@ -1663,7 +1663,7 @@ "RID_SVXITEMS_FORBIDDEN_RULE_ON\n" "string.text" msgid "Don't apply list of forbidden characters to beginning and end of lines" -msgstr "Verbotene Zeichen an Zeilenanfang und -ende nicht berücksichtigen" +msgstr "Verbotene Zeichen am Zeilenanfang und -ende nicht berücksichtigen" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/filter/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/filter/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/filter/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/filter/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-20 06:16+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-02 12:57+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479622596.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491137838.000000\n" #: impswfdialog.ui msgctxt "" @@ -864,7 +864,7 @@ "label\n" "string.text" msgid "Use this certificate to digitally sign PDF documents:" -msgstr "Dies Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:" +msgstr "Dieses Zertifikat für die digitale Signatur von PDF-Dokumenten nutzen:" #: pdfsignpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/formula/source/core/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/de/formula/source/core/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/formula/source/core/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-18 19:51+0000\n" +"PO-Revision-Date: 2017-04-26 04:35+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479498686.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493181335.000000\n" #: core_resource.src msgctxt "" @@ -86,7 +86,7 @@ "SC_OPCODE_TABLE_REF_ITEM_TOTALS\n" "string.text" msgid "#Totals" -msgstr "#Summen" +msgstr "#Summe" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/auxiliary.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 20:01+0000\n" +"PO-Revision-Date: 2017-05-03 04:00+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385679.000000\n" +"X-POOTLE-MTIME: 1493784021.000000\n" #: sbasic.tree msgctxt "" @@ -342,7 +342,7 @@ "1009\n" "node.text" msgid "Drag & Drop" -msgstr "Ziehen & Ablegen" +msgstr "Ziehen und Ablegen" #: shared.tree msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-02 04:47+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-05-03 04:02+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483332450.000000\n" +"X-POOTLE-MTIME: 1493784129.000000\n" #: 06130000.xhp msgctxt "" @@ -219,7 +219,7 @@ "31\n" "help.text" msgid "You can drag-and-drop a module or a dialog between libraries." -msgstr "Module und Dialoge lassen sich per Ziehen & Ablegen zwischen Bibliotheken verschieben und kopieren." +msgstr "Module und Dialoge lassen sich per Ziehen und Ablegen zwischen Bibliotheken verschieben und kopieren." #: 06130000.xhp msgctxt "" @@ -228,7 +228,7 @@ "33\n" "help.text" msgid "To copy a dialog or a module, hold down the CommandCtrl key while you drag-and-drop." -msgstr "Zum Kopieren eines Dialogs oder Moduls halten Sie beim Ziehen & Ablegen die Taste BefehlStrg gedrückt." +msgstr "Zum Kopieren eines Dialogs oder Moduls halten Sie beim Ziehen-und- Ablegen die Taste BefehlStrg gedrückt." #: 06130000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 20:27+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-15 14:03+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490387279.000000\n" +"X-POOTLE-MTIME: 1492265017.000000\n" #: 00000002.xhp msgctxt "" @@ -1687,7 +1687,7 @@ "6\n" "help.text" msgid "A function is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:" -msgstr "Eine Funktion (Function) ist im wesentlichen eine Prozedur, die einen Wert zurückgibt. Sie können Funktionen auf der rechten Seite von Variablendeklarationen oder an anderen Stellen einsetzen, an denen normalerweise Werte verwendet würden, beispielsweise:" +msgstr "Eine Funktion ist im wesentlichen eine Prozedur, die einen Wert zurückgibt. Sie können Funktionen auf der rechten Seite von Variablendeklarationen oder an anderen Stellen einsetzen, an denen normalerweise Werte verwendet würden, beispielsweise:" #: 01010210.xhp msgctxt "" @@ -2200,7 +2200,7 @@ "par_id3145632\n" "help.text" msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE." -msgstr "Boolesche Variablen können nur zwei verschiedene Werte aufnehmen: WAHR (TRUE) oder FALSCH (FALSE). Boolesche Variablen werden zur Speicherung von Binärwerten (wie beispielsweise dem Ergebnis einer Vergleichsoperation) verwendet und intern durch einen 2-Byte-Integerwert dargestellt. Alle Werte, die Sie einer booleschen Variablen zuweisen, werden in \"TRUE\" konvertiert, sofern sie nicht genau \"0\" sind." +msgstr "Boolesche Variablen können nur zwei verschiedene Werte aufnehmen: WAHR (TRUE) oder FALSCH (FALSE). Boolesche Variablen werden zur Speicherung von Binärwerten, wie beispielsweise dem Ergebnis einer Vergleichsoperation, verwendet und intern durch einen 2-Byte-Integerwert dargestellt. Alle Werte, die Sie einer booleschen Variablen zuweisen, werden zu \"True\" konvertiert, sofern sie nicht genau \"0\" sind." #: 01020100.xhp msgctxt "" @@ -2993,7 +2993,7 @@ "3\n" "help.text" msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the Edit menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with CommandCtrl and the arrow keys)." -msgstr "Der Basic-Editor hält alle Standard-Bearbeitungsfunktionen bereit, die Sie auch von einem Textdokument her kennen. Er kennt im Menü Bearbeiten die Funktionen Ausschneiden, Löschen und Einfügen, die Auswahlmöglichkeiten mit der Umschalttaste sowie alle Cursor-Positionierungsfunktionen (beispielsweise wortweise springen mit BefehlStrg+Pfeiltaste)." +msgstr "Der Basic-Editor hält alle Standard-Bearbeitungsfunktionen bereit, die Sie auch von einem Textdokument her kennen. Er kennt die Funktionen im Menü Bearbeiten (Ausschneiden, Löschen, Einfügen), die Auswahlmöglichkeiten mit der Umschalttaste sowie alle Cursor-Positionierungsfunktionen (beispielsweise wortweise springen mit BefehlStrg und den Pfeiltasten)." #: 01030200.xhp msgctxt "" @@ -5843,7 +5843,7 @@ "45\n" "help.text" msgid "Specify the order in which the controls receive the focus when the Tab key is pressed in the dialog. On entering a dialog, the control with the lowest order (0) receives the focus. Pressing the Tab key the successively focusses the other controls as specified by their order number." -msgstr "Geben Sie die Reihenfolge an, in der die Steuerelemente den Fokus erhalten, wenn die Tabulatortaste im Dialog gedrückt wird. Beim Aufruf des Dialogs erhält zunächst das Steuerelement mit der niedrigsten Reihenfolgenposition (d. h. 0) den Fokus. Durch Betätigen der Tabulatortaste wird der Fokus dann nacheinander, entsprechend ihrer festgelegten Reihenfolgenposition, auf die anderen Steuerelemente gesetzt." +msgstr "Geben Sie die Reihenfolge an, in der die Steuerelemente den Fokus erhalten, wenn die Tabulatortaste im Dialog gedrückt wird. Beim Aufruf des Dialogs erhält zunächst das Steuerelement mit der niedrigsten Reihenfolgenposition (0) den Fokus. Durch Betätigen der Tabulatortaste wird der Fokus dann nacheinander, entsprechend ihrer festgelegten Reihenfolgenposition, auf die anderen Steuerelemente gesetzt." #: 01170101.xhp msgctxt "" @@ -10796,7 +10796,7 @@ "par_id3147348\n" "help.text" msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)" -msgstr "Wenn Sie nur Verzeichnisse ermitteln möchten, nehmen Sie den Attributparameter zu Hilfe. Das gleiche gilt, wenn Sie den Namen eines Volumes (beispielsweise eine Festplattenpartition) ermitteln möchten" +msgstr "Wenn Sie nur Verzeichnisse ermitteln möchten, nehmen Sie den Attributparameter zu Hilfe. Das gleiche gilt, wenn Sie den Namen eines Volumes ermitteln möchten (beispielsweise eine Festplattenpartition)" #: 03020404.xhp msgctxt "" @@ -13278,7 +13278,7 @@ "par_idN1055F\n" "help.text" msgid "DateAdd (Add, Count, Date)" -msgstr "DateAdd (Interv, Anz, Datum)" +msgstr "DateAdd (Interv, Anzahl, Datum)" #: 03030110.xhp msgctxt "" @@ -23503,7 +23503,7 @@ "par_id3125864\n" "help.text" msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the DateValue and TimeValue function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time." -msgstr "Beim Konvertieren eines Zeichenkettenausdrucks müssen Datum und Uhrzeit im Format MM.TT.JJJJ HH.MM.SS eingegeben werden (entsprechend den Funktionskonventionen von DateValue und TimeValue). In numerischen Ausdrücken stellt der Wert links vom Dezimalpunkt das Datum dar, beginnend mit dem 31. Dezember 1899. Der Wert rechts vom Dezimalpunkt stellt die Uhrzeit dar." +msgstr "Beim Konvertieren eines Zeichenkettenausdrucks müssen Datum und Uhrzeit im Format TT.MM.JJJJ HH.MM.SS eingegeben werden (entsprechend den Funktionskonventionen von DateValue und TimeValue); die Uhrzeit kann auch weggelassen werden. In numerischen Ausdrücken stellt der Wert links vom Dezimalzeichen das Datum dar, beginnend mit dem 31. Dezember 1899. Der Wert rechts vom Dezimalzeichen stellt die Uhrzeit dar." #: 03100300.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-24 20:34+0000\n" +"PO-Revision-Date: 2017-04-30 05:05+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490387654.000000\n" +"X-POOTLE-MTIME: 1493528741.000000\n" #: 00000004.xhp msgctxt "" @@ -47,7 +47,7 @@ "par_idN105AF\n" "help.text" msgid "In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. " -msgstr "In %PRODUCTNAME Calc Funktionen dürfen Parameter, die als \"optional\" gekennzeichnet sind, nur dann ausgelassen werden, wenn ihnen kein weiterer Parameter mehr folgt. So können Sie beispielsweise in einer Funktion mit vier Parametern, von denen die letzten beiden als \"optional\" gekennzeichnet sind, die Parameter 4 bzw. 3 und 4 auslassen, jedoch nicht Parameter 3 allein. " +msgstr "In %PRODUCTNAME Calc Funktionen dürfen Parameter, die als \"optional\" gekennzeichnet sind, nur dann ausgelassen werden, wenn ihnen kein weiterer Parameter mehr folgt. So können Sie beispielsweise in einer Funktion mit vier Parametern, von denen die letzten beiden als \"optional\" gekennzeichnet sind, den Parameter 4 oder die Parameter 3 und 4 auslassen, jedoch nicht den Parameter 3 allein. " #: 00000004.xhp msgctxt "" @@ -1103,7 +1103,7 @@ "20\n" "help.text" msgid "Choose Tools - Cell Contents - AutoInput" -msgstr "Menü Extras - Zellinhalte - AutoEingabe" +msgstr "Wählen Sie Extras - AutoEingabe" #: 00000407.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-24 20:58+0000\n" -"Last-Translator: Christian Kühl \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-03 09:09+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490389093.000000\n" +"X-POOTLE-MTIME: 1493802559.000000\n" #: 01120000.xhp msgctxt "" @@ -460,7 +460,7 @@ "30\n" "help.text" msgid "Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document. You can later click the created hyperlink to set the cursor and the view to the respective object." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Hyperlink ein. Anschließend können Sie auf den erzeugten Hyperlink klicken und Cursor und Ansicht auf das entsprechende Objekt setzen." +msgstr "Fügt ein per Ziehen-und-Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Hyperlink ein. Anschließend können Sie auf den erzeugten Hyperlink klicken und Cursor und Ansicht auf das entsprechende Objekt setzen." #: 02110000.xhp msgctxt "" @@ -486,7 +486,7 @@ "32\n" "help.text" msgid "Creates a link when you drag-and-drop an object from the Navigator into a document." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Verknüpfung ein." +msgstr "Fügt ein mittels Ziehen und Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Verknüpfung ein." #: 02110000.xhp msgctxt "" @@ -504,7 +504,7 @@ "34\n" "help.text" msgid "Generates a copy when you drag-and-drop an object from the Navigator into a document." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Kopie ein." +msgstr "Fügt ein mittels Ziehen und Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Kopie ein." #: 02110000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -7498,7 +7498,7 @@ "107\n" "help.text" msgid "Period states the period for which the value is to be calculated." -msgstr "Zeitraum steht für dieZeitraum, für die der Wert berechnet werden soll." +msgstr "Zeitraum steht für den Zeitraum, für den der Wert berechnet werden soll." #: 04060103.xhp msgctxt "" @@ -7756,7 +7756,7 @@ "135\n" "help.text" msgid "Under the assumption that cell contents are A1=-10000, A2=3500, A3=7600 and A4=1000, the formula =IRR(A1:A4) gives a result of 11,33%." -msgstr "Unter der Annahme, dass die Zellinhalt ist A1=-10000, A2=3500, A3=7600 and A4=1000, tergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33%." +msgstr "Unter der Annahme, dass die Zellinhalte A1=-10000, A2=3500, A3=7600 and A4=1000 sind, ergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33%." #: 04060103.xhp msgctxt "" @@ -7827,7 +7827,7 @@ "320\n" "help.text" msgid "TotalPeriods is the total number of installment periods." -msgstr "SummeZeiträumes iist die Summe der Tilgungszeiträume." +msgstr "SummeZeiträume ist die Summe der Tilgungszeiträume." #: 04060103.xhp msgctxt "" @@ -9065,7 +9065,7 @@ "par_id3155330\n" "help.text" msgid "Tests if the cell contents are text or numbers, and returns FALSE if the contents are text." -msgstr "Prüft, ob es sich beim Zellinhalt um Text oder Zahlen handelt, und ergibt FASLCH, wenn der Inhalt Text ist." +msgstr "Prüft, ob es sich beim Zellinhalt um Text oder Zahlen handelt, und ergibt FALSCH, wenn der Inhalt Text ist." #: 04060104.xhp msgctxt "" @@ -10217,7 +10217,7 @@ "par_id3151069\n" "help.text" msgid "TYPE" -msgstr "TYPE" +msgstr "TYP" #: 04060104.xhp msgctxt "" @@ -11391,7 +11391,7 @@ "par_id3157993\n" "help.text" msgid "Returns the inverse hyperbolic cosine of a number." -msgstr "Ergibt den Arkuskosinus Hyperbolikus (den inversen hyperbolischen Kosinus oder inversen Hyperbelkosinus) einer Zahl." +msgstr "Ergibt den Arkuskosinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11415,7 +11415,7 @@ "par_id3149000\n" "help.text" msgid "This function returns the inverse hyperbolic cosine of Number, that is the number whose hyperbolic cosine is Number." -msgstr "Diese Funktion ergibt den Arkuskosinus Hyperbolikus von Zahl, d.h. die Zahl, deren Kosinus Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkuskosinus Hyperbolicus von Zahl, das heißt die Zahl, deren Kosinus Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11551,7 +11551,7 @@ "par_id3147478\n" "help.text" msgid "Returns the inverse hyperbolic cotangent of the given number." -msgstr "Ergibt den Arkuskotangens Hyperbolikus (inversen hyperbolischen Kotangens oder inversen Hyperbelkotangens) einer Zahl." +msgstr "Ergibt den Arkuskotangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11575,7 +11575,7 @@ "par_id3146155\n" "help.text" msgid "This function returns the inverse hyperbolic cotangent of Number, that is the number whose hyperbolic cotangent is Number." -msgstr "Diese Funktion ergibt den Arkuskotangens Hyperbolikus von Zahl, d.h. die Zahl, deren Kotangens Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkuskotangens Hyperbolicus von Zahl, das heißt die Zahl, deren Kotangens Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11599,7 +11599,7 @@ "par_id3150608\n" "help.text" msgid "=ACOTH(1.1) returns inverse hyperbolic cotangent of 1.1, approximately 1.52226." -msgstr "=ARCCOTHYP(1,1) ergibt einen Arkuskotangens Hyperbolikus von 1,1, etwa 1,52226." +msgstr "=ARCCOTHYP(1,1) ergibt einen Arkuskotangens Hyperbolicus von 1,1, also etwa 1,52226." #: 04060106.xhp msgctxt "" @@ -11711,7 +11711,7 @@ "par_id3147077\n" "help.text" msgid "Returns the inverse hyperbolic sine of a number." -msgstr "Ergibt den Arkussinus Hyperbolikus (inversen hyperbolischen Sinus oder inversen Hyperbelsinus) einer Zahl." +msgstr "Ergibt den Arkussinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11735,7 +11735,7 @@ "par_id3147621\n" "help.text" msgid "This function returns the inverse hyperbolic sine of Number, that is the number whose hyperbolic sine is Number." -msgstr "Diese Funktion ergibt den Arkussinus Hyperbolikus von Zahl, d.h. die Zahl, deren Sinus Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkussinus Hyperbolicus von Zahl, das heißt die Zahl, deren Sinus Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11959,7 +11959,7 @@ "par_id3148829\n" "help.text" msgid "Returns the inverse hyperbolic tangent of a number." -msgstr "Ergibt den Arkustangens Hyperbolikus (inversen hyperbolischen Tangens oder inversen Hyperbeltangens) einer Zahl." +msgstr "Ergibt den Arkustangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11983,7 +11983,7 @@ "par_id3150521\n" "help.text" msgid "This function returns the inverse hyperbolic tangent of Number, that is the number whose hyperbolic tangent is Number." -msgstr "Diese Funktion ergibt den Arkustangens Hyperbolikus von Zahl, d.h. die Zahl, deren Tangens Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkustangens Hyperbolicus von Zahl, das heißt die Zahl, deren Tangens Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -12111,7 +12111,7 @@ "par_id3146946\n" "help.text" msgid "Returns the hyperbolic cosine of a number." -msgstr "Ergibt den Kosinus Hyperbolikus einer Zahl." +msgstr "Ergibt den Kosinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -12135,7 +12135,7 @@ "par_id3150710\n" "help.text" msgid "Returns the hyperbolic cosine of Number." -msgstr "Ergibt den Kosinus Hyperbolikus von Zahl." +msgstr "Ergibt den Kosinus Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -12151,7 +12151,7 @@ "par_id3154099\n" "help.text" msgid "=COSH(0) returns 1, the hyperbolic cosine of 0." -msgstr "=COSHYP(0) ergibt 1, den Kosinus Hyperbolikus von 0." +msgstr "=COSHYP(0) ergibt 1, den Kosinus Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -12263,7 +12263,7 @@ "par_id3149419\n" "help.text" msgid "Returns the hyperbolic cotangent of a given number (angle)." -msgstr "Ergibt den Kotangens Hyperbolikus einer Zahl (Winkel)." +msgstr "Ergibt den Kotangens Hyperbolicus einer Zahl (Winkel)." #: 04060106.xhp msgctxt "" @@ -12287,7 +12287,7 @@ "par_id3154799\n" "help.text" msgid "Returns the hyperbolic cotangent of Number." -msgstr "Ergibt den Kotangens Hyperbolikus von Zahl." +msgstr "Ergibt den Kotangens Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -12303,7 +12303,7 @@ "par_id3144754\n" "help.text" msgid "=COTH(1) returns the hyperbolic cotangent of 1, approximately 1.3130." -msgstr "=COTHYP(1) ergibt den Kotangens Hyperbolikus von 1, etwa 1,3130." +msgstr "=COTHYP(1) ergibt den Kotangens Hyperbolicus von 1, also etwa 1,3130." #: 04060106.xhp msgctxt "" @@ -12407,7 +12407,7 @@ "par_id579916\n" "help.text" msgid "Returns the hyperbolic cosecant of a number." -msgstr "Ergibt den Kosekans Hyperbolikus einer Zahl." +msgstr "Ergibt den Kosekans Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -12447,7 +12447,7 @@ "par_id5426085\n" "help.text" msgid "=CSCH(1) returns approximately 0.8509181282, the hyperbolic cosecant of 1." -msgstr "=COSECHYP(1) ergibt etwas 0,8509181282, den Kosekans Hyperbolikus von 1." +msgstr "=COSECHYP(1) ergibt etwa 0,8509181282, den Kosekans Hyperbolicus von 1." #: 04060106.xhp msgctxt "" @@ -14879,7 +14879,7 @@ "par_id408174\n" "help.text" msgid "Returns the hyperbolic secant of a number." -msgstr "Ergibt den Sekans Hyperbolikus einer Zahl." +msgstr "Ergibt den Sekans Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -14903,7 +14903,7 @@ "par_id1952124\n" "help.text" msgid "Returns the hyperbolic secant of Number." -msgstr "Ergibt den Sekans Hyperbolikus von Zahl." +msgstr "Ergibt den Sekans Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -14919,7 +14919,7 @@ "par_id1187764\n" "help.text" msgid "=SECH(0) returns 1, the hyperbolic secant of 0." -msgstr "=SECHYP(0) ergibt 1, den Sekans Hyperbolikus von 0." +msgstr "=SECHYP(0) ergibt 1, den Sekans Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -15023,7 +15023,7 @@ "par_id3163426\n" "help.text" msgid "Returns the hyperbolic sine of a number." -msgstr "Ergibt den Sinus Hyperbolikus einer Zahl." +msgstr "Ergibt den Sinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -15047,7 +15047,7 @@ "par_id3163471\n" "help.text" msgid "Returns the hyperbolic sine of Number." -msgstr "Ergibt den Sinus Hyperbolikus von Zahl." +msgstr "Ergibt den Sinus Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -15063,7 +15063,7 @@ "par_id3163504\n" "help.text" msgid "=SINH(0) returns 0, the hyperbolic sine of 0." -msgstr "=SINHYP(0) ergibt 0, den Sinus Hyperbolikus von 0." +msgstr "=SINHYP(0) ergibt 0, den Sinus Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -15399,7 +15399,7 @@ "par_id3165462\n" "help.text" msgid "Returns the hyperbolic tangent of a number." -msgstr "Ergibt den Tangens Hyperbolikus einer Zahl." +msgstr "Ergibt den Tangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -15423,7 +15423,7 @@ "par_id3165508\n" "help.text" msgid "Returns the hyperbolic tangent of Number." -msgstr "Ergibt den Tangens Hyperbolikus von Zahl." +msgstr "Ergibt den Tangens Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -15439,7 +15439,7 @@ "par_id3165541\n" "help.text" msgid "=TANH(0) returns 0, the hyperbolic tangent of 0." -msgstr "=TANHYP(0) ergibt 0, den Tangens Hyperbolikus von 0." +msgstr "=TANHYP(0) ergibt 0, den Tangens Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -16503,7 +16503,7 @@ "par_id2855616\n" "help.text" msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+CommandCtrl+F9." -msgstr "Diese Funktion erzeugt jedes mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie Umschalt+BefehlStrg+F9." +msgstr "Diese Funktion erzeugt jedes Mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie Umschalt+BefehlStrg+F9." #: 04060106.xhp msgctxt "" @@ -16575,7 +16575,7 @@ "par_id5092318\n" "help.text" msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press F9." -msgstr "Diese Funktion erzeugt jedes mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie die Taste F9." +msgstr "Diese Funktion erzeugt jedes Mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie die Taste F9." #: 04060106.xhp msgctxt "" @@ -16847,7 +16847,7 @@ "par_id3149798\n" "help.text" msgid "Array formulas are also a space saving option when several values must be calculated, since they are not very memory-intensive. In addition, arrays are an essential tool for carrying out complex calculations, because you can have several cell ranges included in your calculations. $[officename] has different math functions for arrays, such as the MMULT function for multiplying two arrays or the SUMPRODUCT function for calculating the scalar products of two arrays." -msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als Platz sparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie z.B. MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen." +msgstr "Da Matrixformeln den Arbeitsspeicher nicht sonderlich belasten, können sie auch als Platz sparende Alternative eingesetzt werden, wenn mehrere Werte zu berechnen sind. Darüber hinaus stellen Matrizen ein unverzichtbares Hilfsmittel für komplexe Berechnungen dar, denn sie erlauben es, mehrere Zellbereiche einzubeziehen. $[officename] bietet verschiedene mathematische Funktionen für Matrizen wie beispielsweise MMULT zur Multiplikation zweier Matrizen oder SUMMENPRODUKT zur Ermittlung des skalaren Produkts zweier Matrizen." #: 04060107.xhp msgctxt "" @@ -16863,7 +16863,7 @@ "par_id3152876\n" "help.text" msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:" -msgstr "Außerdem besteht die Möglichkeit, \"normale\" Formeln zu erstellen, deren Bezugsbereiche (z.B. Parameter) auf eine Matrixformel verweist. Das Ergebnis wird am Schnittpunkt zwischen dem Bezugsbereich und den Zeilen oder Spalten ermittelt, in welchen sich die Formel befindet. Wenn es keinen Schnittpunkt gibt oder der Bereich am Schnittpunkt mehrere Zeilen oder Spalten abdeckt, so wird der Fehler #WERT! ausgegeben. Das folgende Beispiel verdeutlicht dieses Prinzip:" +msgstr "Außerdem besteht die Möglichkeit, \"normale\" Formeln zu erstellen, deren Bezugsbereiche, wie beispielsweise Parameter, auf eine Matrixformel verweist. Das Ergebnis wird am Schnittpunkt zwischen dem Bezugsbereich und den Zeilen oder Spalten ermittelt, in welchen sich die Formel befindet. Wenn es keinen Schnittpunkt gibt oder der Bereich am Schnittpunkt mehrere Zeilen oder Spalten abdeckt, so wird der Fehler #WERT! ausgegeben. Das folgende Beispiel verdeutlicht dieses Prinzip:" #: 04060107.xhp msgctxt "" @@ -17551,7 +17551,7 @@ "par_id3150949\n" "help.text" msgid "Select a square range within the spreadsheet, for example, from A1 to E5." -msgstr "Ziehen Sie in der Tabelle einen quadratischen Bereich auf, z. B. von A1 bis E5." +msgstr "Ziehen Sie in der Tabelle einen quadratischen Bereich auf, beispielsweise von A1 bis E5." #: 04060107.xhp msgctxt "" @@ -18335,7 +18335,7 @@ "par_id0811200804502261\n" "help.text" msgid "LINEST returns a table (array) of statistics as below and must be entered as an array formula (for example by using CommandCtrl+Shift+Return rather than just Return)." -msgstr "RGP ergibt eine Tabelle (Matrix) mit Statistikwerten wie unten und muss als Matrixformel eingegeben werden (z.B. mit BefehlStrg+Umschalt+Eingabetaste anstatt einfach Eingabetaste)." +msgstr "RGP ergibt eine Tabelle (Matrix) mit Statistikwerten wie unten und muss als Matrixformel eingegeben werden (beispielsweise mit BefehlStrg+Umschalt+Eingabetaste anstatt einfach Eingabetaste)." #: 04060107.xhp msgctxt "" @@ -20001,7 +20001,7 @@ "4\n" "help.text" msgid "Returns a cell address (reference) as text, according to the specified row and column numbers. You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet." -msgstr "Ergibt für die angegebene Zeilen- und Spaltennummer eine Zelladresse (Bezug auf die Zelle) in Textform. Sie können auch bestimmen, ob die Adresse als absolute (z.B. $A$1) oder relative Adresse (z.B. A1) oder als Mischform (z.B. A$1 oder $A1) interpretiert wird. Außerdem können Sie den Namen der Tabelle angeben." +msgstr "Ergibt für die angegebene Zeilen- und Spaltennummer eine Zelladresse (Bezug auf die Zelle) in Textform. Sie können auch bestimmen, ob die Adresse als absolute (beispielsweise $A$1) oder relative Adresse (beispielsweise A1) oder als Mischform (beispielsweise A$1 oder $A1) interpretiert wird. Außerdem können Sie den Namen der Tabelle angeben." #: 04060109.xhp msgctxt "" @@ -20491,7 +20491,7 @@ "39\n" "help.text" msgid "Returns the number corresponding to an error value occurring in a different cell. With the aid of this number, you can generate an error message text." -msgstr "Ergibt die Nummer eines in einer anderen Zelle aufgetretenen Fehlercodes. Sie können dann z.B. mithilfe dieser Nummer einen eigenen Fehlertext ausgeben lassen." +msgstr "Ergibt die Nummer eines in einer anderen Zelle aufgetretenen Fehlercodes. Sie können dann beispielsweise mithilfe dieser Nummer einen eigenen Fehlertext ausgeben lassen." #: 04060109.xhp msgctxt "" @@ -21673,7 +21673,7 @@ "134\n" "help.text" msgid "Applies a style to the cell containing the formula. After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand." -msgstr "Weist der Formelzelle eine Formatvorlage zu. Nach einstellbarer Zeit wird optional eine andere Vorlage zugewiesen. Diese Funktion ergibt immer den Wert 0, so dass Sie die Funktion per Addition zu einer anderen Funktion hinzufügen können, ohne deren Wert zu verändern. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, z.B. =...+VORLAGE(WENN(AKTUELL()>3;\"rot\";\"grün\")) färbt die Zelle mit der Vorlage \"rot\", wenn der Wert größer 3 ist, sonst mit der Vorlage \"grün\". Beide Zellformate \"rot\" und \"grün\" müssen vorher definiert sein." +msgstr "Weist der Formelzelle eine Formatvorlage zu. Nach einstellbarer Zeit wird optional eine andere Vorlage zugewiesen. Diese Funktion ergibt immer den Wert 0, so dass Sie die Funktion per Addition zu einer anderen Funktion hinzufügen können, ohne deren Wert zu verändern. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, beispielsweise =...+VORLAGE(WENN(AKTUELL()>3;\"rot\";\"grün\")) färbt die Zelle mit der Vorlage \"rot\", wenn der Wert größer 3 ist, sonst mit der Vorlage \"grün\". Beide Zellformate \"rot\" und \"grün\" müssen vorher definiert sein." #: 04060109.xhp msgctxt "" @@ -22243,7 +22243,7 @@ "par_id2958769\n" "help.text" msgid "=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"." -msgstr "=HYPERLINK(\"Datei:///C:/writer.odt#Specification\";\"Gehe zu Writer-Lesenzeichen\") zeigt den Text \"Gehe zu Writer-Lesezeichen\" an, lädt das angegebene Textdokument und springt zum Lesezeichen \"Spezifikation\"." +msgstr "=HYPERLINK(\"file:///C:/writer.odt#Spezifikation\";\"Gehe zu Writer-Lesenzeichen\") zeigt den Text \"Gehe zu Writer-Lesezeichen\" an, lädt das angegebene Textdokument und springt zum Lesezeichen \"Spezifikation\"." #: 04060109.xhp msgctxt "" @@ -26761,7 +26761,7 @@ "54\n" "help.text" msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16." -msgstr "Output: Anzahl der Parameter der AddIn-Funktion. Diese Anzahl muss größer 0 sein, da es immer einen Ergebniswert gibt, der Maximalwert ist16." +msgstr "Output: Anzahl der Parameter der AddIn-Funktion. Diese Anzahl muss größer 0 sein, da es immer einen Ergebniswert gibt, der Maximalwert ist 16." #: 04060112.xhp msgctxt "" @@ -26905,7 +26905,7 @@ "70\n" "help.text" msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]." -msgstr "Output: Nimmt den Namen bzw. die Art des Parameters auf, z. B. das Wort \"Zahl\" oder \"Zeichenkette\" oder \"Datum\" o. ä. In $[officename] Calc implementiert als char[256]." +msgstr "Output: Nimmt den Namen oder die Art des Parameters auf, beispielsweise das Wort \"Zahl\" oder \"Zeichenkette\" oder \"Datum\" o. ä. In $[officename] Calc implementiert als char[256]." #: 04060112.xhp msgctxt "" @@ -26923,7 +26923,7 @@ "72\n" "help.text" msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]." -msgstr "Output: Nimmt die Beschreibung des Parameters auf, z. B. \"Wert, zu dem das Universum berechnet werden soll\". In $[officename] Calc implementiert als char[256]." +msgstr "Output: Nimmt die Beschreibung des Parameters auf, beispielsweise \"Wert, zu dem das Universum berechnet werden soll\". In $[officename] Calc implementiert als char[256]." #: 04060112.xhp msgctxt "" @@ -29018,7 +29018,7 @@ "bm_id3083446\n" "help.text" msgid "ERF functionGaussian error integral" -msgstr "GAUSSFEHLER (Funktion) Gauss'sche Fehlerfunktion" +msgstr "GAUSSFEHLER (Funktion) Gauß'sche Fehlerfunktion" #: 04060115.xhp msgctxt "" @@ -29036,7 +29036,7 @@ "136\n" "help.text" msgid "Returns values of the Gaussian error integral." -msgstr "Ergibt Werte der Gauss'schen Fehlerfunktion." +msgstr "Ergibt Werte der Gauß'schen Fehlerfunktion." #: 04060115.xhp msgctxt "" @@ -29115,7 +29115,7 @@ "par_id2950381\n" "help.text" msgid "Returns values of the Gaussian error integral between 0 and the given limit." -msgstr "Liefert die Werte zur Gauss'schen Fehlerfunktion zwischen 0 und gegebener Grenze." +msgstr "Liefert die Werte zur Gauß'schen Fehlerfunktion zwischen 0 und gegebener Grenze." #: 04060115.xhp msgctxt "" @@ -29326,7 +29326,7 @@ "151\n" "help.text" msgid "The result is 1 if Number is greater than or equal to Step." -msgstr "Das Ergebnis ist 1, wenn Zahl größer als Schwellenwert oder gleichgroß ist." +msgstr "Das Ergebnis ist 1, wenn Zahl größer als oder gleich groß wie Schwellenwert." #: 04060115.xhp msgctxt "" @@ -35684,7 +35684,7 @@ "211\n" "help.text" msgid "DOLLARFR(DecimalDollar; Fraction)" -msgstr "NOTIERUNGSBRU(Dollardezimalzahl; Bruch)" +msgstr "NOTIERUNGBRU(Dollardezimalzahl; Bruch)" #: 04060119.xhp msgctxt "" @@ -35720,7 +35720,7 @@ "215\n" "help.text" msgid "=DOLLARFR(1.125;16) converts into sixteenths. The result is 1.02 for 1 plus 2/16." -msgstr "=NOTIERUNGSBRU(1,125;16) wandelt in Sechzehntel um. Das Ergebnis ist 1,02 für 1 plus 2/16." +msgstr "=NOTIERUNGBRU(1,125;16) wandelt in Sechzehntel um. Das Ergebnis ist 1,02 für 1 plus 2/16." #: 04060119.xhp msgctxt "" @@ -35729,7 +35729,7 @@ "216\n" "help.text" msgid "=DOLLARFR(1.125;8) converts into eighths. The result is 1.1 for 1 plus 1/8." -msgstr "=NOTIERUNGSBRU(1,125;8) wandelt in Achtel um. Das Ergebnis ist 1,1 für 1 plus 1/8." +msgstr "=NOTIERUNGBRU(1,125;8) wandelt in Achtel um. Das Ergebnis ist 1,1 für 1 plus 1/8." #: 04060119.xhp msgctxt "" @@ -35773,7 +35773,7 @@ "202\n" "help.text" msgid "DOLLARDE(FractionalDollar; Fraction)" -msgstr "NOTIERUNGSDEZ(Dollarbruchzahl; Bruch)" +msgstr "NOTIERUNGDEZ(Dollarbruchzahl; Bruch)" #: 04060119.xhp msgctxt "" @@ -35809,7 +35809,7 @@ "206\n" "help.text" msgid "=DOLLARDE(1.02;16) stands for 1 and 2/16. This returns 1.125." -msgstr "=NOTIERUNGSDEZ(1,02;16) steht für 1 und 2/16. Dies ergibt 1,125." +msgstr "=NOTIERUNGDEZ(1,02;16) steht für 1 und 2/16. Dies ergibt 1,125." #: 04060119.xhp msgctxt "" @@ -35818,7 +35818,7 @@ "207\n" "help.text" msgid "=DOLLARDE(1.1;8) stands for 1 and 1/8. This returns 1.125." -msgstr "=NOTIERUNGSDEZ(1,1;8) steht für 1 und 1/8. Dies ergibt 1,125." +msgstr "=NOTIERUNGDEZ(1,1;8) steht für 1 und 1/8. Dies ergibt 1,125." #: 04060119.xhp msgctxt "" @@ -37243,7 +37243,7 @@ "par_id3155827\n" "help.text" msgid "Value1; Value2, ... are 1 to 30 values or ranges representing the values to be counted." -msgstr "Wet1; Wert2, ... sind 1 bis 30 Werte oder Bereiche, die die Werte darstellen, die gezählt werden sollen." +msgstr "Wert1; Wert2; ... sind 1 bis 30 Werte oder Bereiche, die die Werte darstellen, die gezählt werden sollen." #: 04060181.xhp msgctxt "" @@ -37315,7 +37315,7 @@ "par_id3150001\n" "help.text" msgid "Value1; Value2, ... are 1 to 30 arguments representing the values to be counted." -msgstr "Wet1; Wert2, ... sind 1 bis 30 Argumente, die die Werte darstellen, die gezählt werden sollen." +msgstr "Wert1; Wert2; ... sind 1 bis 30 Argumente, die die Werte darstellen, die gezählt werden sollen." #: 04060181.xhp msgctxt "" @@ -37459,7 +37459,7 @@ "par_id3165000\n" "help.text" msgid "Criteria indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. If regular expressions are enabled in calculation options you may also enter a search text in the form of a regular expression, e.g. b.* for all cells that begin with b. If wildcards are enabled in calculation options you may enter a search text with wildcards, e.g. b* for all cells that begin with b. You may also indicate a cell address that contains the search criterion. If you search for literal text, enclose the text in double quotes." -msgstr "Bedingungen legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenfolge fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, z.B. b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie z.B. b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenfolgen suchen, müssen Sie diese in doppelte Anführungszeichen einschließen." +msgstr "Bedingungen legt die Bedingungen in Form einer Zahl, eines Ausdrucks oder einer Zeichenfolge fest. Diese Bedingungen legen fest, welche Zellen gezählt werden. Wenn reguläre Ausdrücke in den Optionen aktiviert sind, können Sie sogar einen Suchtext mit regulären Ausdrücken verwenden, beispielsweise b.* für alle Zellen, die mit b beginnen. Wenn Platzhalter in den Optionen aktiviert sind, können Sie auch einen Suchtext mit Platzhaltern verwenden, wie beispielsweise b* für alle Zellen, die mit b beginnen. Sie können auch einen Bezug zu einer Zelle angeben, die das Suchkriterium enthält. Wenn Sie nach Zeichenfolgen suchen, müssen Sie diese in doppelte Anführungszeichen einschließen." #: 04060181.xhp msgctxt "" @@ -43179,7 +43179,7 @@ "par_id9282509\n" "help.text" msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error." -msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, z. B. MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler." +msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, beispielsweise MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler." #: 04060184.xhp msgctxt "" @@ -43435,7 +43435,7 @@ "par_id2301400\n" "help.text" msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error." -msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, z. B. MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler." +msgstr "Ergibt 0, wenn kein numerischer Wert und kein Fehler im Zellbereich bzw. in den Zellbereichen gefunden wurde, der/die als Zellbezug/Zellbezüge weitergegeben wurden. Textzellen werden von MIN() und MAX() ignoriert. Die Funktionen MINA() und MAXA() geben 0 zurück, wenn kein Wert (numerisch oder Text) und kein Fehler gefunden wurde. Wenn ein Zeichenkettenargument, beispielsweise MIN(\"Zeichenkette\"), an MIN() oder MAX() weitergegeben wird, führt dies zu einem Fehler." #: 04060184.xhp msgctxt "" @@ -52189,7 +52189,7 @@ "11\n" "help.text" msgid "Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\". The list box then displays -user defined-. You can also select -none- to remove a defined repeating column." -msgstr "Wählen Sie eine oder mehrere Spalten, die auf jeder Seite gedruckt werden sollen. In das rechte Textfeld geben Sie den Spaltenbezug ein, z.B. \"A\", \"AB\" oder \"$C:$E\". Im Listenfeld wird dann -benutzerdefiniert- angezeigt. Mit -keine- können Sie eine definierte Wiederholungsspalte entfernen." +msgstr "Wählen Sie eine oder mehrere Spalten, die auf jeder Seite gedruckt werden sollen. In das rechte Textfeld geben Sie den Spaltenbezug ein, beispielsweise \"A\", \"AB\" oder \"$C:$E\". Im Listenfeld wird dann -benutzerdefiniert- angezeigt. Mit -keine- können Sie eine definierte Wiederholungsspalte entfernen." #: 05080300.xhp msgctxt "" @@ -53407,7 +53407,7 @@ "3\n" "help.text" msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell." -msgstr "Diese Funktion arbeitet ebenenweise. Wenn z. B. die Spur von einer Formel zu ihren Vorgängern schon angezeigt wird, werden mit einem erneuten Aufruf die Spuren zu deren Vorgängern erzeugt." +msgstr "Diese Funktion arbeitet ebenenweise. Wenn beispielsweise die Spur von einer Formel zu ihren Vorgängern schon angezeigt wird, werden mit einem erneuten Aufruf die Spuren zu deren Vorgängern erzeugt." #: 06030200.xhp msgctxt "" @@ -53742,7 +53742,7 @@ "5\n" "help.text" msgid "If Tools - Detective - Update Automatically is turned on, every time formulas are changed in the document." -msgstr "Wenn Extras -Detektiv - Automatisch aktualisieren eingeschaltet ist, bei jeder Änderung von Formeln im Dokument." +msgstr "Wenn Extras - Detektiv - Automatisch aktualisieren eingeschaltet ist, bei jeder Änderung von Formeln im Dokument." #: 06031000.xhp msgctxt "" @@ -57348,7 +57348,7 @@ "34\n" "help.text" msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table." -msgstr "Die Pivot-Tabelle zeigt die Datenfelder in Form von Schaltflächen an, über welche Sie per Ziehen & Ablegen die Pivot-Tabelle gestalten können." +msgstr "Die Pivot-Tabelle zeigt die Datenfelder in Form von Schaltflächen an, über welche Sie mittels Ziehen und Ablegen die Pivot-Tabelle gestalten können." #: 12090102.xhp msgctxt "" @@ -60516,7 +60516,7 @@ "par_id2209201514174378\n" "help.text" msgid "Function – obligatory argument. A function index or a reference to a cell with value from 1 to 19, in accordance with the following table." -msgstr "Funktion (erforderlich). Ein Funktionsindex oder ein Zellbezug mit Werten zwischen 1 und 19, übereinstimmend mit folgender Tabelle." +msgstr "Funktion – erforderliches Argument. Ein Funktionsindex oder ein Zellbezug mit Werten zwischen 1 und 19, übereinstimmend mit folgender Tabelle." #: func_aggregate.xhp msgctxt "" @@ -60900,7 +60900,7 @@ "par_id2309201520064118\n" "help.text" msgid "=AGGREGATE(9;5;B2:B9)
Returns sum of the column B = 115. If any row is hidden, the function omit its value, for example if the 7th row is hidden, the function returns 95." -msgstr "=AGGREGAT(9;5;B2:B9)
Ergibt die Summe der Spalte B = 115. Wenn einige Zeilen versteckt sind, lässt die Funktion diese aus, beispielsweise ergibt die Funktion 95, wenn die 7. Zeile versteckt ist." +msgstr "=AGGREGAT(9;5;B2:B9)
Ergibt die Summe der Spalte B = 115. Falls irgendeine Zeile ausgeblendet ist, wird deren Wert nicht berücksichtigt, falls beispielsweise die 7. Zeile ausgeblendet ist, ergibt die Funktion 95." #: func_aggregate.xhp msgctxt "" @@ -60932,7 +60932,7 @@ "par_id2309201520395380\n" "help.text" msgid "=AGGREGATE(E3;E5;'ColumnOne')
If E3 = 13 and E5 = 5, the function returns mode of the first column = 10." -msgstr "=AGGREGAT(E3;E5;'SpalteEins')
Wenn E3 = 13 und E5 = 5, ergibt die Funktion den Modalwert der ersten Saplte = 10." +msgstr "=AGGREGAT(E3;E5;'SpalteEins')
Wenn E3 = 13 und E5 = 5, ergibt die Funktion den Modalwert der ersten Spalte = 10." #: func_aggregate.xhp msgctxt "" @@ -61476,7 +61476,7 @@ "par_id316794795433\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIFS function. For example, the above function can be rewritten as follows:" -msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion MITTELWERTWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:" +msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion MITTELWERTWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:" #: func_averageifs.xhp msgctxt "" @@ -61796,7 +61796,7 @@ "par_id3245551524846\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the COUNTIFS function. For example, the above function can be rewritten as follows:" -msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion ZÄHLENWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:" +msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion ZÄHLENWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:" #: func_countifs.xhp msgctxt "" @@ -63084,7 +63084,7 @@ "par_id12475201719494\n" "help.text" msgid "The ISERROR function returns TRUE or FALSE depending on whether there is an error or not. If the error takes place, the function IF addresses to the second argument, if there is no error, it returns the result of the division. The second argument checks the index number representing the specific Error type, and if it is equal to 2, it returns the specified text \"the denominator can't be zero\" or 0 otherwise. Thus, clear text would signify the division by zero, the result of the division would appear when the division is successful, or if there is, for example, an error of another type, zero would be returned." -msgstr "Die Funktion ISTFEHLER ergibt WAHR oder FALSCH, abhängig davon, ob ein Fehler vorliegt oder nicht. Wenn ein Fehler vorliegt, leitet die Funktion WENN zum zweiten Argument weiter, wenn kein Fehler vorliegt, ergibt sie das Ergebnis der Division. Das zweite Argument überprüft den Index, der den Fehlertyp darstellt, und ergibt, wenn dieser gleich 2 ist, den Text \"Der Divisor darf nicht Null sein\" oder andernfalls 0. Somit wird durch Text auf die Division durch Null hingewiesen, das Ergebnis der Division, wenn diese möglich ist, ausgegeben oder Null zurückgegeben, wenn z.B. ein anderer Fehlertyp vorliegt." +msgstr "Die Funktion ISTFEHLER ergibt WAHR oder FALSCH, abhängig davon, ob ein Fehler vorliegt oder nicht. Wenn ein Fehler vorliegt, leitet die Funktion WENN zum zweiten Argument weiter, wenn kein Fehler vorliegt, ergibt sie das Ergebnis der Division. Das zweite Argument überprüft den Index, der den Fehlertyp darstellt, und ergibt, wenn dieser gleich 2 ist, den Text \"Der Divisor darf nicht Null sein\" oder andernfalls 0. Somit wird durch Text auf die Division durch Null hingewiesen, das Ergebnis der Division, wenn diese möglich ist, ausgegeben oder Null zurückgegeben, wenn beispielsweise ein anderer Fehlertyp vorliegt." #: func_error_type.xhp msgctxt "" @@ -63364,7 +63364,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "Z.B. wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." +msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." #: func_forecastetspiadd.xhp msgctxt "" @@ -63484,7 +63484,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "Z.B. wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." +msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." #: func_forecastetspimult.xhp msgctxt "" @@ -65542,7 +65542,7 @@ "par_id242131304315587\n" "help.text" msgid "Calculates the skewness of a distribution using the population, i.e. the possible outcomes, of a random variable. The sequence shall contain three numbers at least." -msgstr "Berechnet die Schiefe einer Verteilung aus der Population, z.B. die möglichen Ergebnisse einer Zufallsvariablen. Die Reihe sollte mindestens drei Zahlen enthalten." +msgstr "Berechnet die Schiefe einer Verteilung aus der Population, beispielsweise die möglichen Ergebnisse einer Zufallsvariablen. Die Reihe sollte mindestens drei Zahlen enthalten." #: func_skewp.xhp msgctxt "" @@ -65614,7 +65614,7 @@ "par_id659756597565975\n" "help.text" msgid "Returns the sum of the values of cells in a range that meets multiple criteria in multiple ranges." -msgstr "Ergibt die Summe der Werte der Zellen in einem Bereich, die mehreren Bedingungen in mehreren Bereichen entsprechen." +msgstr "Ergibt die Summe der Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen erfüllen." #: func_sumifs.xhp msgctxt "" @@ -65798,7 +65798,7 @@ "par_id50762995519951\n" "help.text" msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of the SUMIFS function. For example, the above function can be rewritten as follows:" -msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion SUMMEWENNS einen Bezug zur Zelle anzugeben. Z.B. kann obige Funktion geschrieben werden als:" +msgstr "Wenn Sie eine Bedingung einfach ändern möchten, bietet es sich an, diese in einer separaten Zelle festzulegen und für die Bedingung der Funktion SUMMEWENNS einen Bezug zur Zelle anzugeben. Beispielsweise kann obige Funktion geschrieben werden als:" #: func_sumifs.xhp msgctxt "" @@ -68790,7 +68790,7 @@ "par_id1002140\n" "help.text" msgid "Exponential smoothing is a filtering technique that when applied to a data set, produces smoothed results. It is employed in many domains such as stock market, economics and in sampled measurements." -msgstr "Exponentielle Glättung ist eine Filtertechnik, welche, angewandt auf einen Datensatz, geglättete Ergebnisse erzielt. Es wird auf vielen Gebieten verwendet, wie z.B. an der Börse oder in der Wirtschaft." +msgstr "Exponentielle Glättung ist eine Filtertechnik, welche, angewandt auf einen Datensatz, geglättete Ergebnisse erzielt. Es wird auf vielen Gebieten verwendet, wie beispielsweise an der Börse oder in der Wirtschaft." #: statistics.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2016-05-19 18:28+0000\n" +"PO-Revision-Date: 2017-04-14 12:47+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1463682539.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492174026.000000\n" #: 02130000.xhp msgctxt "" @@ -360,7 +360,7 @@ "6\n" "help.text" msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4." -msgstr "Um zu einer bestimmten Zelle zu springen oder einen Zellbereich auszuwählen, geben Sie den Zellbereich oder den entsprechenden Bezug in dieses Feld ein, z. B. F1 oder A1:C4." +msgstr "Um zu einer bestimmten Zelle zu springen oder einen Zellbereich auszuwählen, geben Sie den Zellbereich oder den entsprechenden Bezug in dieses Feld ein, beispielsweise F1 oder A1:C4." #: 06030000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 20:58+0000\n" +"PO-Revision-Date: 2017-04-14 12:47+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490389119.000000\n" +"X-POOTLE-MTIME: 1492174068.000000\n" #: 01020000.xhp msgctxt "" @@ -766,7 +766,7 @@ "20\n" "help.text" msgid "Rearranges the relative or absolute references (for example, A1, $A$1, $A1, A$1) in the input field." -msgstr "Ordnet die relativen oder absoluten Bezüge (z. B. A1, $A$1, $A1, A$1) im Eingabefeld um." +msgstr "Ordnet die relativen oder absoluten Bezüge (beispielsweise A1, $A$1, $A1, A$1) im Eingabefeld um." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 21:00+0000\n" +"PO-Revision-Date: 2017-04-14 12:54+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490389204.000000\n" +"X-POOTLE-MTIME: 1492174483.000000\n" #: 02140000.xhp msgctxt "" @@ -233,7 +233,7 @@ "17\n" "help.text" msgid "Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference." -msgstr "Der Funktionsparameter ist nicht gültig; z. B. Text anstelle einer Zahl oder ein Domänenbezug anstelle eines Zellbezugs." +msgstr "Der Funktionsparameter ist nicht gültig; beispielsweise Text anstelle einer Zahl oder ein Domänenbezug anstelle eines Zellbezugs." #: 02140000.xhp msgctxt "" @@ -287,7 +287,7 @@ "32\n" "help.text" msgid "Operator is missing, for example, \"=2(3+4) * \", where the operator between \"2\" and \"(\" is missing." -msgstr "Der Operator fehlt; z. B. \"=2(3+4) * \", wo der Operator zwischen \"2\" und \"(\" fehlt." +msgstr "Der Operator fehlt; beispielsweise \"=2(3+4) * \", wo der Operator zwischen \"2\" und \"(\" fehlt." #: 02140000.xhp msgctxt "" @@ -314,7 +314,7 @@ "35\n" "help.text" msgid "Variable is missing, for example when two operators are together \"=1+*2\"." -msgstr "Eine Variable fehlt; z. B. \"=1+*2\", wo zwei Operatoren nebeneinander stehen." +msgstr "Eine Variable fehlt; beispielsweise \"=1+*2\", wo zwei Operatoren nebeneinander stehen." #: 02140000.xhp msgctxt "" @@ -341,7 +341,7 @@ "38\n" "help.text" msgid "Function requires more variables than are provided, for example, AND() and OR()." -msgstr "Die Funktion erfordert mehr Variablen; z. B. UND() und ODER()." +msgstr "Die Funktion erfordert mehr Variablen; beispielsweise UND() und ODER()." #: 02140000.xhp msgctxt "" @@ -476,7 +476,7 @@ "56\n" "help.text" msgid "Unknown code, for example, a document with a newer function is loaded in an older version that does not contain the function." -msgstr "Unbekannter Code; es wurde z. B. ein Dokument mit einer neueren Funktion in eine ältere Version eingeladen, die nicht über diese Funktion verfügt." +msgstr "Unbekannter Code; es wurde beispielsweise ein Dokument mit einer neueren Funktion in eine ältere Version eingeladen, die nicht über diese Funktion verfügt." #: 02140000.xhp msgctxt "" @@ -692,7 +692,7 @@ "80\n" "help.text" msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found." -msgstr "Ein Bezeichner konnte nicht aufgelöst werden; z.B. kein gültiger Bezug, kein gültiger Domänenname, keine Spalten-/Zeilenbeschriftung, kein Makro, falscher Dezimalseparator oder Add-in nicht gefunden." +msgstr "Ein Bezeichner konnte nicht aufgelöst werden; beispielsweise kein gültiger Bezug, kein gültiger Domänenname, keine Spalten-/Zeilenbeschriftung, kein Makro, falscher Dezimalseparator oder AddIn nicht gefunden." #: 02140000.xhp msgctxt "" @@ -746,7 +746,7 @@ "86\n" "help.text" msgid "Interpreter: References, such as when a cell references a cell, are too encapsulated." -msgstr "Interpreter: Bezüge, z. B. zwischen zwei Zellen, sind zu stark verschachtelt." +msgstr "Interpreter: Bezüge, beispielsweise zwischen zwei Zellen, sind zu stark verschachtelt." #: 02140000.xhp msgctxt "" @@ -1203,7 +1203,7 @@ "par_id4217047\n" "help.text" msgid "Note that Microsoft Excel behaves different and always returns a number as the result of a reference to an empty cell or a formula cell with the result of an empty cell. For example:" -msgstr "Beachten Sie, dass sich MS Excel anders verhält, und immer eine Zahl als Bezug zu einer leeren Zelle oder einer Formel, die eine leere Zelle zurückgibt, ergibt. Beispielsweise:" +msgstr "Beachten Sie, dass sich MS Excel anders verhält und immer eine Zahl als Bezug zu einer leeren Zelle oder einer Formel, die eine leere Zelle zurückgibt, ergibt. Beispielsweise:" #: empty_cells.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-24 21:11+0000\n" +"PO-Revision-Date: 2017-05-03 04:18+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490389908.000000\n" +"X-POOTLE-MTIME: 1493785085.000000\n" #: address_auto.xhp msgctxt "" @@ -148,7 +148,7 @@ "6\n" "help.text" msgid "To turn the AutoInput on and off, set or remove the check mark in front of Tools - Cell Contents - AutoInput." -msgstr "Zum Ein- und Ausschalten der AutoEingabe setzen oder entfernen Sie das Häkchen vor dem Befehl Extras - Zellinhalte - AutoEingabe." +msgstr "Zum Ein- und Ausschalten der AutoEingabe setzen oder entfernen Sie das Häkchen vor dem Befehl Extras - AutoEingabe." #: auto_off.xhp msgctxt "" @@ -235,7 +235,7 @@ "19\n" "help.text" msgid "Tools - Cell Contents - AutoInput" -msgstr "Extras - Zellinhalte - AutoEingabe" +msgstr "Extras - AutoEingabe" #: auto_off.xhp msgctxt "" @@ -1460,7 +1460,7 @@ "54\n" "help.text" msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:" -msgstr "Möchten Sie Zeitdifferenzen berechnen, z.B. wie viel Zeit zwischen den Uhrzeiten 23:30 und 01:10 in derselben Nacht liegt, verwenden Sie am besten folgende Formel:" +msgstr "Möchten Sie Zeitdifferenzen berechnen, beispielsweise wie viel Zeit zwischen den Uhrzeiten 23:30 und 01:10 in derselben Nacht liegt, verwenden Sie am besten folgende Formel:" #: calc_timevalues.xhp msgctxt "" @@ -1695,7 +1695,7 @@ "par_id2011780\n" "help.text" msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area." -msgstr "Verwenden Sie Ziehen & Ablegen, um den Bereich zu markieren, in den Sie Werte eingeben möchten. Beginnen Sie die Auswahl bei der letzten Zelle des Bereichs und lassen die Maustaste los, sobald Sie bis zur ersten Zelle markiert haben. Nun können Sie mit der Eingabe der Werte beginnen. Drücken Sie jeweils die Tab-Taste, um zur nächsten Zelle zu gelangen. Sie werden den markierten Bereich nicht verlassen." +msgstr "Verwenden Sie Ziehen-und-Ablegen, um den Bereich zu markieren, in den Sie Werte eingeben möchten. Beginnen Sie die Auswahl bei der letzten Zelle des Bereichs und lassen die Maustaste los, sobald Sie bis zur ersten Zelle markiert haben. Nun können Sie mit der Eingabe der Werte beginnen. Drücken Sie jeweils die Tab-Taste, um zur nächsten Zelle zu gelangen. Sie werden den markierten Bereich nicht verlassen." #: cell_enter.xhp msgctxt "" @@ -1761,7 +1761,7 @@ "17\n" "help.text" msgid "In %PRODUCTNAME Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed." -msgstr "In %PRODUCTNAME Calc können Sie einzelne Tabellen und ganze Dokumente. Sie können wählen, ob die Zellen gegen versehentliche Änderungen geschützt werden sollen, ob die Formeln in Calc angesehen werden können, ob die Zellen sichtbar sind oder ob die Zellen gedruckt werden können." +msgstr "In %PRODUCTNAME Calc können Sie einzelne Tabellen und ganze Dokumente schützen. Sie können wählen, ob die Zellen gegen versehentliche Änderungen geschützt werden sollen, ob die Formeln in Calc angesehen werden können, ob die Zellen sichtbar sind oder ob die Zellen gedruckt werden können." #: cell_protect.xhp msgctxt "" @@ -2044,7 +2044,7 @@ "7\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "Kopieren Sie die sichtbaren Zellen entweder per „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder per Ziehen&Ablegen bei gedrückter Strg-Taste." +msgstr "Kopieren Sie die sichtbaren Zellen entweder mittels „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder mittels Ziehen und Ablegen bei gedrückter Strg-Taste." #: cellcopy.xhp msgctxt "" @@ -2071,7 +2071,7 @@ "13\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "Kopieren Sie die sichtbaren Zellen entweder per „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder per Ziehen&Ablegen bei gedrückter Strg-Taste." +msgstr "Kopieren Sie die sichtbaren Zellen entweder mittels „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder mittela Ziehen und Ablegen bei gedrückter Strg-Taste." #: cellcopy.xhp msgctxt "" @@ -2088,7 +2088,7 @@ "tit\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referenzieren von Zellen durch Ziehen & Ablegen" +msgstr "Zellbezüge beim Ziehen und Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -2096,7 +2096,7 @@ "bm_id3154686\n" "help.text" msgid "drag and drop; referencing cells cells; referencing by drag and drop references;inserting by drag and drop inserting;references, by drag and drop" -msgstr "Ziehen & Ablegen;Zellen referenzieren Zellen;durch Ziehen & Ablegen referenzieren Bezüge;durch Ziehen & Ablegen einfügen Einfügen;Bezüge (durch Ziehen & Ablegen)" +msgstr "Ziehen und Ablegen;Zellbezüge Zellen;Bezüge beim Ziehen und Ablegen Bezüge;beim Ziehen und Ablegen Einfügen;Bezüge beim Ziehen und Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -2105,7 +2105,7 @@ "16\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referenzieren von Zellen durch Ziehen & Ablegen" +msgstr "Referenzieren von Zellen durch Ziehen-und-Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -2484,7 +2484,7 @@ "par_id3150275\n" "help.text" msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied." -msgstr "Die Funktion VORLAGE() kann einer bestehenden Formel in einer Zelle hinzugefügt werden. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, z. B. versieht =...+VORLAGE(WENN(AKTUELL()>3;\"Rot\";\"Grün\")) die Zelle mit der Zellvorlage \"Rot\", wenn der Wert größer 3 ist, anderenfalls mit der Zellvorlage mit dem Namen \"Grün\"." +msgstr "Die Funktion VORLAGE() kann einer bestehenden Formel in einer Zelle hinzugefügt werden. Zusammen mit der Funktion AKTUELL können Sie damit eine Zelle in Abhängigkeit vom Wert einfärben, beispielsweise versieht =...+VORLAGE(WENN(AKTUELL()>3;\"Rot\";\"Grün\")) die Zelle mit der Zellvorlage \"Rot\", wenn der Wert größer 3 ist, anderenfalls mit der Zellvorlage mit dem Namen \"Grün\"." #: cellstyle_by_formula.xhp msgctxt "" @@ -2988,7 +2988,7 @@ "36\n" "help.text" msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under Format code. For example, instead of RED, enter YELLOW. If the new code appears in the list after clicking the Add icon, this is a valid entry." -msgstr "Die Definition des Zahlenformats für Zellen besteht aus zwei Teilen. Das Format für positive Zahlen und die Zahl Null wird durch den Teil vor dem Semikolon bestimmt, das Format für negative Zahlen durch den Teil dahinter. Unter Format-Code können Sie den Code (ROT) ändern. Geben Sie z.B. anstelle von \"ROT\" die Farbe GELB ein. Wenn der neue Code durch Klicken auf das Symbol Hinzufügen in die Liste übernommen wird, ist der Eintrag gültig." +msgstr "Die Definition des Zahlenformats für Zellen besteht aus zwei Teilen. Das Format für positive Zahlen und die Zahl Null wird durch den Teil vor dem Semikolon bestimmt, das Format für negative Zahlen durch den Teil dahinter. Unter Format-Code können Sie den Code (ROT) ändern. Geben Sie beispielsweise anstelle von \"ROT\" die Farbe GELB ein. Wenn der neue Code durch Klicken auf das Symbol Hinzufügen in die Liste übernommen wird, ist der Eintrag gültig." #: consolidate.xhp msgctxt "" @@ -3232,7 +3232,7 @@ "par_idN10880\n" "help.text" msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character." -msgstr "Comma Separated Values (CSV) ist ein Textdateiformat, mit dem Sie Daten aus einem Datenbank- oder Tabellendokument anwendungsübergreifend austauschen können. Jede Zeile in einer Text CSV-Datei steht für einen Datensatz in einer Datenbank oder einer Zeile in einem Tabellendokument. Jedes Feld in einem Datenbankeintrag bzw. jede Zelle in einer Tabellenzeile wird in der Regel durch ein Komma getrennt. Sie können jedoch auch andere Zeichen als Feldtrennzeichen verwenden, z.B. das Tabulator-Zeichen." +msgstr "Comma Separated Values (CSV) ist ein Textdateiformat, mit dem Sie Daten aus einem Datenbank- oder Tabellendokument anwendungsübergreifend austauschen können. Jede Zeile in einer Text CSV-Datei steht für einen Datensatz in einer Datenbank oder einer Zeile in einem Tabellendokument. Jedes Feld in einem Datenbankeintrag bzw. jede Zelle in einer Tabellenzeile wird in der Regel durch ein Komma getrennt. Sie können jedoch auch andere Zeichen als Feldtrennzeichen verwenden, beispielsweise das Tabulator-Zeichen." #: csv_files.xhp msgctxt "" @@ -3565,7 +3565,7 @@ "5\n" "help.text" msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:" -msgstr "Wenn Sie die Formeln als Formeln exportieren möchten, z.B. in der Form =SUMME(A1:B5), gehen Sie wie folgt vor:" +msgstr "Wenn Sie die Formeln als Formeln exportieren möchten, beispielsweise in der Form =SUMME(A1:B5), gehen Sie wie folgt vor:" #: csv_formula.xhp msgctxt "" @@ -3725,7 +3725,7 @@ "49\n" "help.text" msgid "You can change the currency format in the Format Cells dialog (choose Format - Cells - Numbers tab) by two country settings. In the Language combo box select the basic setting for decimal and thousands separators. In the Format list box you can select the currency symbol and its position." -msgstr "Sie können das Währungsformat im Dialog Zellen formatierenändern (wählen Sie Format - Zellen... - Zahlen). Im Listenfeld Sprache können Sie die Grundeinstellung für das Dezimalzeichen und den Tausendertrenner festlegen. Im Feld Format können Sie das Währungsymbol und dessen Position wählen." +msgstr "Sie können das Währungsformat im Dialog Zellen formatieren ändern (wählen Sie Format - Zellen... - Zahlen). Im Listenfeld Sprache können Sie die Grundeinstellung für das Dezimalzeichen und den Tausendertrenner festlegen. Im Feld Format können Sie das Währungsymbol und dessen Position wählen." #: currency_format.xhp msgctxt "" @@ -4207,7 +4207,7 @@ "9\n" "help.text" msgid "Choose Insert - Pivot Table. The Select Source dialog appears. Choose Current selection and confirm with OK. The table headings are shown as buttons in the Pivot Table dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." -msgstr "Wählen Sie Einfügen - Pivot-Tabelle.... Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabelle werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie per Ziehen & Ablegen frei in den Layoutbereichen \"Seitenfelder\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." +msgstr "Wählen Sie Einfügen - Pivot-Tabelle.... Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabelle werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie mittels Ziehen und Ablegen frei in den Layoutbereichen \"Seitenfelder\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." #: datapilot_createtable.xhp msgctxt "" @@ -4224,7 +4224,7 @@ "par_id7599414\n" "help.text" msgid "Drag a button to the Page Fields area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter." -msgstr "Ziehen Sie eine Schaltfläche in den Bereich Seitenfelder, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen & Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." +msgstr "Ziehen Sie eine Schaltfläche in den Bereich Seitenfelder, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." #: datapilot_createtable.xhp msgctxt "" @@ -4372,7 +4372,7 @@ "par_id1648915\n" "help.text" msgid "In the Pivot Table dialog, you can drag a button to the Page Fields area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." -msgstr "Im Dialog Pivot-Tabelle können Sie eine Schaltfläche in den Bereich Seitenfelder ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen & Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." +msgstr "Im Dialog Pivot-Tabelle können Sie eine Schaltfläche in den Bereich Seitenfelder ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." #: datapilot_edittable.xhp msgctxt "" @@ -4398,7 +4398,7 @@ "par_id2666096\n" "help.text" msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields." -msgstr "Verwenden Sie in der Pivot-Tabelle Ziehen & Ablegen oder Ausschneiden und Einfügen, um die Reihenfolge der Datenfelder festzulegen." +msgstr "Verwenden Sie in der Pivot-Tabelle Ziehen-und-Ablegen oder Ausschneiden und Einfügen, um die Reihenfolge der Datenfelder festzulegen." #: datapilot_edittable.xhp msgctxt "" @@ -5101,7 +5101,7 @@ "7\n" "help.text" msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet." -msgstr "Wenn Sie nun Werte, Texte oder Formeln in der aktiven Tabelle eingeben, werden diese auch auf der gleichen Position in den anderen, ausgewählten Tabellen erscheinen. Z.B. werden Daten, die in die Zelle A1 eingegeben werden, automatisch in die Zellen A1 aller ausgewählten Tabellen übernommen." +msgstr "Wenn Sie nun Werte, Texte oder Formeln in der aktiven Tabelle eingeben, werden diese auch auf der gleichen Position in den anderen, ausgewählten Tabellen erscheinen. Beispielsweise werden Daten, die in die Zelle A1 eingegeben werden, automatisch in die Zellen A1 aller ausgewählten Tabellen übernommen." #: filters.xhp msgctxt "" @@ -5700,7 +5700,7 @@ "8\n" "help.text" msgid "Click OK." -msgstr "Klicken Sie auf OK." +msgstr "Klicken Sie auf OK." #: format_value_userdef.xhp msgctxt "" @@ -6781,7 +6781,7 @@ "par_id3153158\n" "help.text" msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:" -msgstr "Gehen Sie wie folgt vor, wenn Sie einer Zahlenspalte in Textformat ein numerisches Format zuweisen möchten (z. B. den Text \"000123\" in die Zahl \"123\" umwandeln):" +msgstr "Gehen Sie wie folgt vor, wenn Sie einer Zahlenspalte in Textformat ein numerisches Format zuweisen möchten (beispielsweise den Text \"000123\" in die Zahl \"123\" umwandeln):" #: integer_leading_zero.xhp msgctxt "" @@ -7320,7 +7320,7 @@ "5\n" "help.text" msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop." -msgstr "Ziehen Sie mit ständig gedrückter Maustaste über einen Bereich von zwei Zellen und wieder zurück. Lassen Sie die Maustaste wieder los. Nun können Sie die einzelne Zelle durch Ziehen & Ablegen verschieben." +msgstr "Ziehen Sie mit ständig gedrückter Maustaste über einen Bereich von zwei Zellen und wieder zurück. Lassen Sie die Maustaste wieder los. Nun können Sie die einzelne Zelle durch Ziehen-und-Ablegen verschieben." #: mark_cells.xhp msgctxt "" @@ -7568,7 +7568,7 @@ "23\n" "help.text" msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background." -msgstr "Der Matrixbereich wird automatisch vor Änderungen wie beispielsweise dem Löschen von Zeilen oder Spalten geschützt. Die Formatierung, z. B. der Zellenhintergrund, kann jedoch weiterhin bearbeitet werden." +msgstr "Der Matrixbereich wird automatisch vor Änderungen wie dem Löschen von Zeilen oder Spalten geschützt. Die Formatierung, beispielsweise der Zellenhintergrund, kann jedoch weiterhin bearbeitet werden." #: move_dragdrop.xhp msgctxt "" @@ -7576,7 +7576,7 @@ "tit\n" "help.text" msgid "Moving Cells by Drag-and-Drop" -msgstr "Zellen per Ziehen & Ablegen verschieben" +msgstr "Zellen per Ziehen-und-Ablegen verschieben" #: move_dragdrop.xhp msgctxt "" @@ -7912,7 +7912,7 @@ "8\n" "help.text" msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?" -msgstr "Sie erzeugen Artikel mit einem Verkaufspreis von je 10 €. Die Produktionskosten pro Stück belaufen sich auf 2 €, hinzu kommen FixkKosten von 10.000 € pro Jahr. Wie hoch ist Ihr Jahresgewinn bei einer bestimmten Anzahl verkaufter Artikel?" +msgstr "Sie produzieren Spielzeug mit einem Verkaufspreis von je 10 €. Die Produktionskosten pro Stück belaufen sich auf 2 €, hinzu kommen Fixkosten von 10.000 € pro Jahr. Wie hoch ist Ihr Jahresgewinn bei einer bestimmten Anzahl verkaufter Artikel?" #: multioperation.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/scalc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-02-23 05:21+0000\n" +"PO-Revision-Date: 2017-05-03 04:02+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487827260.000000\n" +"X-POOTLE-MTIME: 1493784146.000000\n" #: main0000.xhp msgctxt "" @@ -1536,7 +1536,7 @@ "25\n" "help.text" msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer." -msgstr "$[officename] Calc erlaubt es, Tabellen durch Ziehen & Ablegen aus Datenbanken zu übernehmen und Tabellendokumente als Datenquelle zum Erstellen von Serienbriefen in $[officename] Writer einzusetzen." +msgstr "$[officename] Calc erlaubt es, Tabellen durch Ziehen-und-Ablegen aus Datenbanken zu übernehmen und Tabellendokumente als Datenquelle zum Erstellen von Serienbriefen in $[officename] Writer einzusetzen." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 04:55+0000\n" +"PO-Revision-Date: 2017-04-30 05:50+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488084903.000000\n" +"X-POOTLE-MTIME: 1493531446.000000\n" #: 03010000.xhp msgctxt "" @@ -888,7 +888,7 @@ "37\n" "help.text" msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis." -msgstr "In diesem Bereich können Sie Ihrem Diagramm eine zweite Achse zuweisen. Ist bereits eine Datenreihe dieser Achse zugeordnet, zeigt $[officename] automatisch Achse und Beschriftung an. Sie können diese Standardeinstellung nachträglich abschalten. Wenn Sie diesen Bereich aktivieren und der Achse keine Daten zugeordnet sind, werden für die sekundäre die Werte der primären Y-Achse übernommen." +msgstr "In diesem Bereich können Sie Ihrem Diagramm eine zweite Achse zuweisen. Ist bereits eine Datenreihe dieser Achse zugeordnet, zeigt $[officename] automatisch Achse und Beschriftung an. Sie können diese Standardeinstellung nachträglich abschalten. Wenn Sie diesen Bereich aktivieren und der Achse keine Daten zugeordnet sind, werden für die sekundäre Achse die Werte der primären Y-Achse übernommen." #: 04040000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-17 19:41+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 07:27+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489779718.000000\n" +"X-POOTLE-MTIME: 1493796441.000000\n" #: 00000001.xhp msgctxt "" @@ -216,7 +216,7 @@ "7\n" "help.text" msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value." -msgstr "In die Eingabefelder können Werte in verschiedenen Maßeinheiten eingegeben werden. Die Standardeinheit ist hier Zentimeter. Möchten Sie einen Abstand von genau 1 Zoll erzielen, so geben Sie 1'' ein. Je nach Kontext stehen weitere Einheiten wie z. B. 12 pt für einen Abstand von 12 Point zur Verfügung. Wenn der Wert in der neuen Einheit nicht realistisch ist, wird automatisch ein vordefinierter Höchst- oder Mindestwert eingesetzt." +msgstr "In die Eingabefelder können Werte in verschiedenen Maßeinheiten eingegeben werden. Die Standardeinheit ist hier Zentimeter. Möchten Sie einen Abstand von genau 1 Zoll erzielen, so geben Sie 1'' ein. Je nach Kontext stehen weitere Einheiten wie beispielsweise 12 pt für einen Abstand von 12 Punkten zur Verfügung. Wenn der Wert in der neuen Einheit nicht realistisch ist, wird automatisch ein vordefinierter Höchst- oder Mindestwert eingesetzt." #: 00000001.xhp msgctxt "" @@ -1963,7 +1963,7 @@ "7\n" "help.text" msgid "Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows." -msgstr "Einige Fenster in $[officename], zum Beispiel das Formatvorlagenfenster und der Navigator, sind \"andockbare\" Fenster. Sie können diese Fenster verschieben, vergrößern oder sie an eine Kante des Arbeitsbereichs andocken. An jeder Kante können Sie mehrere Fenster über, oder nebeneinander andocken. Sie können dann durch das Verschieben der Umrandungslinien die relativen Proportionen der Fenster verändern." +msgstr "Einige Fenster in $[officename], zum Beispiel das Formatvorlagenfenster und der Navigator, sind \"andockbare\" Fenster. Sie können diese Fenster verschieben, vergrößern oder sie an eine Kante des Arbeitsbereichs andocken. An jeder Kante können Sie mehrere Fenster über- oder nebeneinander andocken. Sie können dann durch das Verschieben der Umrandungslinien die relativen Proportionen der Fenster verändern." #: 00000005.xhp msgctxt "" @@ -1972,7 +1972,7 @@ "127\n" "help.text" msgid "To undock and re-dock, holding down the CommandCtrl key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the CommandCtrl key." -msgstr "Zum Ab- und wieder andocken halten Sie die BefehlStrg-Taste gedrückt und klicken doppelt in einem freien Fensterbereich. Im Formatvorlagenfenster können Sie auch doppelt in einem grauen Teil des Fensters nahe der Symbole klicken, während Sie die BefehlStrg-Taste gedrückt halten." +msgstr "Zum Ab- und wieder Andocken halten Sie die BefehlStrg-Taste gedrückt und klicken doppelt in einem freien Fensterbereich. Im Formatvorlagenfenster können Sie auch doppelt in einem grauen Teil des Fensters nahe der Symbole klicken, während Sie die BefehlStrg-Taste gedrückt halten." #: 00000005.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-27 03:45+0000\n" -"Last-Translator: Gilward_Kukel \n" +"PO-Revision-Date: 2017-05-01 12:34+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490586319.000000\n" +"X-POOTLE-MTIME: 1493642077.000000\n" #: 01010000.xhp msgctxt "" @@ -6692,7 +6692,7 @@ "3\n" "help.text" msgid " To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet. " -msgstr " Um alle Zellen einer Tabelle auszuwählen, klicken Sie auf die Schaltfläche an der Schnittstelle zwischen Spalten- und Zeilenkopf in der linken oberen Ecke der Tabelle. " +msgstr "Um alle Zellen einer Tabelle auszuwählen, klicken Sie auf die Schaltfläche an der Schnittstelle zwischen Spalten- und Zeilenkopf in der linken oberen Ecke der Tabelle." #: 02090000.xhp msgctxt "" @@ -8244,7 +8244,7 @@ "par_id3149551\n" "help.text" msgid "For example, a similarity search can find words that differ from the Find text by two characters." -msgstr "So kann eine Ähnlichkeitssuche beispielsweise Wörter suchen, die sich von dem Suchbegriff im Texteld Suchen um zwei Zeichen unterscheidet." +msgstr "So kann eine Ähnlichkeitssuche beispielsweise Wörter suchen, die sich von dem Suchbegriff im Textfeld Suchen um zwei Zeichen unterscheiden." #: 02100100.xhp msgctxt "" @@ -11309,7 +11309,7 @@ "6\n" "help.text" msgid "When you rest the mouse pointer over a change markup in the document, a Tip displays the author and the date and time that the change was made. If the Extended Tips are activated, the type of change and any attached comments are also displayed." -msgstr "Wenn Sie den Mauszeiger über eine Änderungsmarkierung im Dokument setzen, wird ein Tipp angezeigt, aus dem Autor, Datum und Uhrzeit der Änderung hervorgehen. Ist die Funktion Aktive Hilfe eingeschaltet, so werden auch Art der Änderung und etwaige Kommentare angezeigt." +msgstr "Wenn Sie den Mauszeiger über eine Änderungsmarkierung im Dokument setzen, wird ein Tipp angezeigt, aus dem Autor, Datum und Uhrzeit der Änderung hervorgehen. Ist die Funktion Erweiterte Tipps eingeschaltet, so werden auch Art der Änderung und etwaige Kommentare angezeigt." #: 02230200.xhp msgctxt "" @@ -11818,7 +11818,7 @@ "42\n" "help.text" msgid "If you made changes by choosing Format - AutoCorrect - Apply and Edit Changes, the Undo button appears in the dialog. Reverse the last Accept or Reject command." -msgstr "Bei Änderungen, die mit Format - AutoKorrektur - Anwenden und Änderungen bearbeiten vorgenommen wurden, ist der Befehl Rückgängig als Schaltfläche in diesem Dialog enthalten. Macht den letzten Annahme- oder Verwerfungsbefehl rückgängig." +msgstr "Bei Änderungen, die mit Extras - AutoKorrektur - Anwenden und Änderungen bearbeiten vorgenommen wurden, ist der Befehl Rückgängig als Schaltfläche in diesem Dialog enthalten. Macht den letzten Annahme- oder Verwerfungsbefehl rückgängig." #: 02230401.xhp msgctxt "" @@ -15321,7 +15321,7 @@ "bm_id3153514\n" "help.text" msgid "format codes; numbers conditions; in number formats number formats; codes currency formats formats;of currencies/date/time numbers; date, time and currency formats Euro; currency formats date formats times, formats percentages, formats scientific notation, formats engineering notation, formats fraction, formats" -msgstr "Formatcodes;Zahlen Bedingungen;in Zahlenformaten Zahlenformate;Codes Währungsformate Formats;Währungen/Daten/Zeiten Zahlen;Datums-/Zeit-/Währungsformate Euro;Währungsformate Datem;Formate Zeiten:Formate Prozente;Formate Wissenschaftliche Schreibweise;Formate Technische Schreibweise;Formate Brüche;Formate" +msgstr "Formatcodes;Zahlen Bedingungen;in Zahlenformaten Zahlenformate;Codes Währungsformate Formate;Währungen/Daten/Zeiten Zahlen;Datums-/Zeit-/Währungsformate Euro;Währungsformate Datum;Formate Zeiten;Formate Prozente;Formate Wissenschaftliche Schreibweise;Formate Technische Schreibweise;Formate Brüche;Formate" #: 05020301.xhp msgctxt "" @@ -19366,7 +19366,7 @@ "9\n" "help.text" msgid "Apply list of forbidden characters to the beginning and end of line" -msgstr "Liste der verbotenen Zeichen an Zeilenanfang und -ende berücksichtigen" +msgstr "Liste der verbotenen Zeichen am Zeilenanfang und -ende berücksichtigen" #: 05020700.xhp msgctxt "" @@ -33721,7 +33721,7 @@ "par_id3153394\n" "help.text" msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose Tools - Cell Contents - AutoInput, and in $[officename] Writer choose Format - AutoCorrect - While Typing. To apply the AutoCorrect settings to an entire text document, choose Format - AutoCorrect - Apply." -msgstr "Zum Ein- oder Ausschalten der AutoKorrektur-Funktion wählen Sie in $[officename] Calc Extras - Zellinhalte - AutoEingabe und in $[officename] Writer Format - AutoKorrektur - Während der Eingabe. Wenn Sie die AutoKorrektur-Einstellungen auf ein gesamtes Textdokument anwenden möchten, wählen Sie Format - AutoKorrektur - Anwenden." +msgstr "Zum Ein- oder Ausschalten der AutoKorrektur-Funktion wählen Sie in $[officename] Calc Extras - AutoEingabe und in $[officename] Writer Extras - AutoKorrektur - Während der Eingabe. Wenn Sie die AutoKorrektur-Einstellungen auf ein gesamtes Textdokument anwenden möchten, wählen Sie Extras - AutoKorrektur - Anwenden." #: 06040000.xhp msgctxt "" @@ -33772,7 +33772,7 @@ "32\n" "help.text" msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with Format - AutoCorrect - Apply." -msgstr "In Textdokumenten können Sie wählen, ob die AutoKorrektur während der Eingabe [E] oder nur bei der Nachbearbeitung [N] eines Texts mit Format - AutoKorrektur - Anwenden angewendet wird." +msgstr "In Textdokumenten können Sie wählen, ob die AutoKorrektur während der Eingabe [E] oder nur bei der Nachbearbeitung [N] eines Texts mit Extras - AutoKorrektur - Anwenden angewendet wird." #: 06040100.xhp msgctxt "" @@ -34033,7 +34033,7 @@ "par_id1416974\n" "help.text" msgid "If the hyphens are there between digits or the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash." -msgstr "Falls die Trennstriche zwischen Ziffern sind oder der Text ungarische bzw. finnische Sprachattribute hat, dann werden zwei Trennstriche in der Sequenz A--B durch einen Halbgeviertstrich statt einen Geviertstrich ersetzt." +msgstr "Falls die Trennstriche zwischen Ziffern sind oder der Text ungarische bzw. finnische Sprachattribute hat, dann werden zwei Trennstriche in der Sequenz A--B durch einen Halbgeviertstrich statt einen Geviertstrich ersetzt." #: 06040100.xhp msgctxt "" @@ -34850,7 +34850,7 @@ "12\n" "help.text" msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Format - AutoCorrect - Apply." -msgstr "Wählen Sie das Sonderzeichen, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von Format - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." +msgstr "Wählen Sie das Sonderzeichen, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." #: 06040400.xhp msgctxt "" @@ -34868,7 +34868,7 @@ "14\n" "help.text" msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Format - AutoCorrect - Apply." -msgstr "Wählen Sie das Sonderzeichen, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von Format - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." +msgstr "Wählen Sie das Sonderzeichen, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." #: 06040400.xhp msgctxt "" @@ -36476,7 +36476,7 @@ "8\n" "help.text" msgid "Minimum space between numbering and text" -msgstr "Mindestabstand zwischen Nummer und Text" +msgstr "Mindestabstand zwischen Nummerierung und Text" #: 06050600.xhp msgctxt "" @@ -43656,7 +43656,7 @@ "par_idN10734\n" "help.text" msgid "Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced." -msgstr "Hiermt legen Sie eine JPEG-Komprimierung für Grafiken fest. Bei einer hohen Qualitätsstufe bleiben nahezu alle Pixel erhalten. Bei einer niedrigen Qualitätsstufe gehen einige Pixel verloren und es werden Artefakte eingeführt, doch die Dateigröße wird verringert." +msgstr "Hiermit legen Sie eine JPEG-Komprimierung für Grafiken fest. Bei einer hohen Qualitätsstufe bleiben nahezu alle Pixel erhalten. Bei einer niedrigen Qualitätsstufe gehen einige Pixel verloren und es werden Artefakte eingeführt, doch die Dateigröße wird verringert." #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-18 05:31+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-04 15:37+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489815079.000000\n" +"X-POOTLE-MTIME: 1491320252.000000\n" #: 01110000.xhp msgctxt "" @@ -18676,7 +18676,7 @@ "par_idN10567\n" "help.text" msgid "Opens the Fontwork dialog from which you can insert styled text not possible through standard font formatting into your document." -msgstr "Öffnet den Dialog Fontwork, über dem Sie formatierten Text in Ihr Dokument einfügen können, der so nicht mittels Standardschriftformatierung möglich ist." +msgstr "Öffnet den Dialog Fontwork, über den Sie formatierten Text in Ihr Dokument einfügen können, der so nicht mittels Standardschriftformatierung möglich ist." #: fontwork.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 20:02+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-16 15:03+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385738.000000\n" +"X-POOTLE-MTIME: 1492354980.000000\n" #: 01000000.xhp msgctxt "" @@ -4978,7 +4978,7 @@ "50\n" "help.text" msgid "You have saved the files that have been created during the Export process in the c:\\Inet\\wwwroot\\presentation\\ directory. In this directory, the Export creates an HTML file that can be named, for example, as \"secret.htm\". You entered this name in the Save dialog (see above). The presenter can now browse to the HTML Export files by entering the http://myserver.com/presentation/secret.htm URL in any HTTP Browser having JavaScript support. The presenter is now able to modify the page using some form controls." -msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die z.B. den Dateinamen geheim.htm erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern." +msgstr "Die vom Export erstellten Dateien haben Sie im Verzeichnis c:\\Inet\\wwwroot\\vortrag\\ gespeichert. In diesem Verzeichnis erstellt der Export eine HTML-Datei, die z.B. den Dateinamen \"geheim.htm\" erhalten kann. Sie haben diesen Namen im Dialog Speichern (vergleichen Sie oben) eingegeben. Der Vortragende kann jetzt durch Eingabe der URL http://meinserver.com/vortrag/geheim.htm in einen beliebigen HTTP-Browser mit JavaScript-Unterstützung den HTML-Export laden. Über eine Reihe von Formularfeldern kann er die angezeigte Seite ändern." #: 01110200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-24 20:03+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 07:33+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385780.000000\n" +"X-POOTLE-MTIME: 1493796826.000000\n" #: 02000000.xhp msgctxt "" @@ -13481,7 +13481,7 @@ "par_id3479415\n" "help.text" msgid "Select to show the page numbers in the Page Header area or in the Page Footer area." -msgstr "Wählen Sie, ob die Seitenzahlen im Seitenkopf-oder Seitenfußbereich angezeigt werden." +msgstr "Wählen Sie, ob die Seitenzahlen im Seitenkopf- oder im Seitenfußbereich angezeigt werden." #: rep_pagenumbers.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-24 20:03+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 06:50+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385812.000000\n" +"X-POOTLE-MTIME: 1493794217.000000\n" #: aaa_start.xhp msgctxt "" @@ -672,7 +672,7 @@ "2\n" "help.text" msgid "If you do not want $[officename] to automatically recognize URLs as you are typing, there are several ways of turning off this feature." -msgstr "Wenn Sie die automatische Erkennung von URLs beim Schreiben nicht wünschen, haben Sie mehrere Möglichkeiten, dieses Merkmal abzustellen:" +msgstr "Wenn Sie die automatische URL-Erkennung beim Schreiben in $[officename] nicht wünschen, haben Sie mehrere Möglichkeiten, diese Funktion abzustellen." #: autocorr_url.xhp msgctxt "" @@ -831,7 +831,7 @@ "68\n" "help.text" msgid "Double-click inside a vacant area of the window while holding down the CommandCtrl key. In the Styles and Formatting window, double-click a gray part of the window next to the icons while holding down the CommandCtrl key. Alternatively, press CommandCtrl+Shift+F10." -msgstr "Doppelklicken Sie auf eine freie Stelle des Fensters, während Sie die Taste BefehlStrg gedrückt halten. Im Fenster Formatvorlagen doppelklicken Sie auf einen grauen Teil des Fensters neben den Symbolen, während Sie die Taste BefehlStrg gedrückt halten. Alternativ drücken Sie die die Taste BefehlStrg+Umschalt+F10." +msgstr "Doppelklicken Sie auf eine freie Stelle des Fensters, während Sie die Taste BefehlStrg gedrückt halten. Im Fenster Formatvorlagen doppelklicken Sie auf einen grauen Teil des Fensters neben den Symbolen, während Sie die Taste BefehlStrg gedrückt halten. Alternativ drücken Sie die Tasten BefehlStrg+Umschalt+F10." #: autohide.xhp msgctxt "" @@ -1935,7 +1935,7 @@ "2\n" "help.text" msgid "To edit a chart title that you have inserted into a $[officename] document:" -msgstr "Titel in einem Diagramm bearbeiten" +msgstr "Um einen Diagrammtitel zu bearbeiten, den Sie in ein $[officename]-Dokument eingefügt haben:" #: chart_title.xhp msgctxt "" @@ -5952,7 +5952,7 @@ "par_idN1066D\n" "help.text" msgid "Save and sign the document" -msgstr "Speichern und signieren des Dokuments" +msgstr "Speichern und Signieren des Dokuments" #: digital_signatures.xhp msgctxt "" @@ -8283,7 +8283,7 @@ "tit\n" "help.text" msgid "Sending Faxes and Configuring $[officename] for Faxing" -msgstr "Fax versenden und $[officename] zum Faxen konfigurieren" +msgstr "Faxe versenden und $[officename] zum Faxen konfigurieren" #: fax.xhp msgctxt "" @@ -8300,7 +8300,7 @@ "5\n" "help.text" msgid "Sending Faxes and Configuring $[officename] for Faxing" -msgstr "Fax versenden und $[officename] zum Faxen konfigurieren" +msgstr "Faxe versenden und $[officename] zum Faxen konfigurieren" #: fax.xhp msgctxt "" @@ -8957,7 +8957,7 @@ "par_idN1069C\n" "help.text" msgid "On the Drawing toolbar or on the Fontwork toolbar, click the Fontwork Gallery icon.Icon" -msgstr "In der Symbolleiste Zeichnung oder in de Symbolleiste Fontwork, klicken Sie auf das Symbol Fontwork Gallery.Symbol" +msgstr "In der Symbolleiste Zeichnung oder in der Symbolleiste Fontwork, klicken Sie auf das Symbol Fontwork Gallery.Symbol" #: fontwork.xhp msgctxt "" @@ -9998,7 +9998,7 @@ "49\n" "help.text" msgid "An absolute path such as \"C:\\homepage\\graphics\\picture.gif\" would no longer function on the provider server. Neither a server nor the computer of a reader needs to have a C hard drive: operating systems such as Unix or MacOS do not recognize drive letters, and even if the folder homepage\\graphics existed, your picture would not be available. It is better to use relative addressing for file links." -msgstr "Ein absoluter Pfad wie z.B. \"C:\\Homepage\\Bilder\\Bild.gif\" würde auf diesem Server nicht mehr funktionieren. Das Laufwerk C muss dabei weder auf dem Server noch auf den Rechnern der Leser Ihrer Homepage existieren. Selbst wenn es dort ein Verzeichnis Homepage\\Bilder gäbe, so wäre Ihr Bild dort nicht vorhanden. Für Links zu Dateien ist also die relative Adressierung vorzuziehen." +msgstr "Ein absoluter Pfad wie \"C:\\Homepage\\Bilder\\Bild.gif\" würde auf dem Server des Providers nicht mehr funktionieren. Weder der Server noch der Rechner eines Lesers brauchen ein Laufwerk C: Betriebssysteme wie Unix oder MacOS haben keine Laufwerksbuchstaben, und selbst wenn es dort ein Verzeichnis Homepage\\Bilder gäbe, so wäre Ihr Bild dort nicht verfügbar. Für Verweise auf Dateien ist also die relative Adressierung vorzuziehen." #: hyperlink_rel_abs.xhp msgctxt "" @@ -10107,7 +10107,7 @@ "par_idN10682\n" "help.text" msgid "Choose Insert - Image, select and insert a bitmap image." -msgstr "Wählen Sie Einfügen - Bildbzw. eine Bitmap-Grafik aus und fügen Sie diese ein." +msgstr "Wählen Sie Einfügen - Bild bzw. eine Bitmap-Grafik aus und fügen Sie diese ein." #: imagemap.xhp msgctxt "" @@ -13233,7 +13233,7 @@ "par_idN107CC\n" "help.text" msgid "If you start a new line in a Writer text document by typing three or more hyphen characters and press the Enter key, the characters are removed and the previous paragraph gets a line as a bottom border." -msgstr "Wenn Sie eine neue Zeile in einem Writer-Textdokument mit der Eingabe von drei aufeinander folgenden Minuszeichen oder Unterstrichen beginnen und dann die Eingabetaste drücken, werden die eingegebenen Zeichen entfernt und der vorangehende Absatz erhält als untere Umrandung eine Linie." +msgstr "Wenn Sie eine neue Zeile in einem Writer-Textdokument mit der Eingabe von drei aufeinander folgenden Minuszeichen oder Unterstrichen beginnen und dann die Eingabetaste drücken, werden die eingegebenen Zeichen entfernt und der vorangehende Absatz erhält als untere Umrandung eine Linie." #: line_intext.xhp msgctxt "" @@ -13370,7 +13370,7 @@ "20\n" "help.text" msgid "Click OK to close the dialog." -msgstr "Klicken Sie auf OK." +msgstr "Klicken Sie auf OK um den Dialog zu schließen." #: linestyle_define.xhp msgctxt "" @@ -15601,7 +15601,7 @@ "42\n" "help.text" msgid "Click OK to close the dialog." -msgstr "Klicken Sie auf OK." +msgstr "Klicken Sie auf OK um den Dialog zu schließen." #: pageformat_max.xhp msgctxt "" @@ -16335,7 +16335,7 @@ "par_idN106EC\n" "help.text" msgid "Select any combination of the four options, then click OK." -msgstr "Wählen Sie eine beliebige Kombination der vier Optionen aus und klicken Sie auf OK." +msgstr "Wählen Sie eine beliebige Kombination der vier Optionen aus und klicken Sie auf OK." #: print_faster.xhp msgctxt "" @@ -17109,7 +17109,7 @@ "11\n" "help.text" msgid "If you move to a marked change with the mouse pointer, you will see a reference to the type of change, the author, date and time of day for the change in the Help Tip. If the Extended Tips are also enabled, you will also see any available comments on this change." -msgstr "Führen Sie den Mauszeiger auf eine markierte Änderung, sehen Sie in der Tipphilfe einen Hinweis auf Art, Autor, Datum und Uhrzeit der Änderung. Wenn zusätzlich die Aktive Hilfe eingeschaltet ist (im Menü Hilfe), dann sehen Sie auch einen eventuellen Kommentar zu dieser Änderung." +msgstr "Wenn Sie den Mauszeiger zu einer markierten Änderung bewegen, sehen Sie in der Tipphilfe einen Hinweis auf Art, Autor, Datum und Uhrzeit der Änderung. Wenn zusätzlich die Direkthilfe im Menü Hilfe eingeschaltet ist, sehen Sie auch eventuell vorhandene Kommentare zu dieser Änderung." #: redlining_enter.xhp msgctxt "" @@ -17269,7 +17269,7 @@ "3\n" "help.text" msgid "Choose Protect Changes. This opens the Password dialog." -msgstr "Wählen Sie Vor Änderungen schützen.... Es öffnet sich der Dialog Kennwort." +msgstr "Wählen Sie Vor Änderungen schützen.... Es öffnet sich der Dialog Kennwort." #: redlining_protect.xhp msgctxt "" @@ -18180,7 +18180,7 @@ "2\n" "help.text" msgid "When you open a new document with File - New, a blank document appears based on a $[officename] template. You can edit, modify, or replace this template so that the new document contains your customized Styles or other contents." -msgstr "Wenn Sie über das Menü Datei - Neu ein neues Dokument öffnen, erhalten Sie jeweils ein leeres Dokument angezeigt, welches auf einer $[officename]-Standardvorlage beruht, also z. B. ein leeres Text- oder Tabellendokument. Sie können dieses Dokument bearbeiten und verändern oder durch ein bereits existierendes Dokument ersetzen, so dass Sie beim Öffnen eines neues Dokuments direkt Ihr ganz persönliches Dokument erhalten." +msgstr "Wenn Sie über das Menü Datei - Neu ein neues Dokument erstellen, erhalten Sie ein leeres Dokument angezeigt, welches auf einer $[officename]-Vorlage beruht. Sie können diese Vorlage bearbeiten, verändern oder sie ersetzen, so dass das neue Dokument Ihre angepassten Stile oder anderen Inhalt enthält." #: standard_template.xhp msgctxt "" @@ -19263,7 +19263,7 @@ "18\n" "help.text" msgid "Selection" -msgstr "Auswahl" +msgstr "Auswahl" #: tabs.xhp msgctxt "" @@ -19837,7 +19837,7 @@ "3\n" "help.text" msgid "See lists of code and Wiki contributors on the LibreOffice website." -msgstr "Schauen Sie sich die Liste der zum Code und Wiki Beitragenden auf der LibreOffice-Webseite an." +msgstr "Schauen Sie sich die Liste der zum Code und zum Wiki Beitragenden auf der LibreOffice-Webseite an." #: viewing_file_properties.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-24 20:07+0000\n" -"Last-Translator: Christian Kühl \n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-05-03 07:34+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490386051.000000\n" +"X-POOTLE-MTIME: 1493796840.000000\n" #: 01000000.xhp msgctxt "" @@ -1195,7 +1195,7 @@ "16\n" "help.text" msgid "Description" -msgstr "Bedeutung" +msgstr "Beschreibung" #: 01010300.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Auswählen..." +msgid "Pick" +msgstr "Übernehmen" #: 01010501.xhp msgctxt "" @@ -7236,7 +7236,7 @@ "36\n" "help.text" msgid "Specifies that non-breaking spaces are shown as gray boxes. Non-breaking spaces are not broken at the end of a line and are entered with the Command+Shift+Spacebar Ctrl+Shift+Spacebar shortcut keys." -msgstr "Geschützte Zeichen werden grau hinterlegt dargestellt und am Zeilenende nicht umgebrochen. Geschützte Leereichen bzw. geschützte Bindestriche werden mit Umschalt+BefehlStrg+Leertaste bzw. +Minus (-) eingegeben." +msgstr "Geschützte Zeichen werden grau hinterlegt dargestellt und am Zeilenende nicht umgebrochen. Geschützte Leerzeichen bzw. geschützte Bindestriche werden mit Umschalt+BefehlStrg+Leertaste bzw. +Minus (-) eingegeben." #: 01040600.xhp msgctxt "" @@ -9271,7 +9271,7 @@ "15\n" "help.text" msgid "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected." -msgstr "Legt fest, ob beim auswählen eines eingefügten Objekts, z.B. einer Grafik, das Ankersymbol angezeigt wird." +msgstr "Legt fest, ob beim Auswählen eines eingefügten Objekts, z.B. einer Grafik, das Ankersymbol angezeigt wird." #: 01060100.xhp msgctxt "" @@ -10080,7 +10080,7 @@ "63\n" "help.text" msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the Status Bar." -msgstr "Schalten Sie die Iterationen ein, und die Formeln werden korrekt berechnet. Sind die Iterationen abgeschaltet, erhalten Sie eine Fehlermeldung, deren Text in der Statusleiste lautet: \"Zirkuläre Referenz\"." +msgstr "Schalten Sie die Iterationen ein, um die Formeln korrekt zu berechnen, da sonst eine Fehlermeldung 'Zirkuläre Referenz' in der Statusleiste erscheint." #: 01060500.xhp msgctxt "" @@ -10376,7 +10376,7 @@ "34\n" "help.text" msgid "* in following position:" -msgstr ".* an folgender Stelle:" +msgstr "* an folgender Stelle:" #: 01060500.xhp msgctxt "" @@ -14545,7 +14545,7 @@ "par_id2507201516150454\n" "help.text" msgid "When a variable is a UNO interface or structure, a list box appears when pressing the dot after a variable's name (like aVar. [list box appears] ). Its methods and variables are listed in the list box, displayed just below. You can navigate between the suggested methods and variables with the arrow keys. To insert the selected entry, press the Enter key or double click on it with the mouse. To cancel the list box, press the Esc key." -msgstr "Wenn eine Variable eine UNO-Schnittstelle oder -Struktur ist, erscheint bei Eingabe des Punktes nach einem Variablennamen ein Kästchen (z.B. bei aVar. erscheint ein Kästchen). Dessen Methoden und Variablen sind dann in dem Kästchen aufgelistet, das knapp unterhalb angezeigt wird. Sie können mit den Pfeiltasten zwischen den vorgeschlagenen Methoden und Variablen wechseln. Um den markierten Eintrag einzufügen, drücken Sie die Eingabetaste oder klicken Sie doppelt mit der linken Maustaste auf diesen. Um das Kästchen auszublenden, drücken Sie die Taste Esc." +msgstr "Wenn eine Variable eine UNO-Schnittstelle oder -Struktur ist, erscheint bei Eingabe des Punktes nach einem Variablennamen ein Kästchen (beispielsweise bei aVar.). Dessen Methoden und Variablen sind dann in dem Kästchen aufgelistet, das knapp unterhalb angezeigt wird. Sie können mit den Pfeiltasten zwischen den vorgeschlagenen Methoden und Variablen wechseln. Um den markierten Eintrag einzufügen, drücken Sie die Eingabetaste oder klicken Sie doppelt mit der linken Maustaste auf diesen. Um das Kästchen auszublenden, drücken Sie die Taste Esc." #: BasicIDE.xhp msgctxt "" @@ -14553,7 +14553,7 @@ "par_id2507201516150494\n" "help.text" msgid "When typing the method's name, and pressing the Tab key once, it will complete the selected entry, pressing the Tab key again will cycle through the matches with the longest prefix. For example, when aVar.aMeth is typed, it will cycle through aMeth1, aMethod2, aMethod3 entries, and other entries are not hidden." -msgstr "Wenn Sie den Namen einer Methode eingeben und dann einmal die Taste Tabulator drücken, wird der ausgewählte Eintrag vervollständigt, durch wiederholtes Drücken der Taste Tabulator wird zyklisch zwischen den Treffern gewechselt. Wenn Sie z.B. aVar.aMeth eingegeben haben, wird zwischen den Einträgen aMeth1, aMethod2, aMethod3 gewechselt, während die anderen Einträge jeweils sichtbar bleiben." +msgstr "Wenn Sie den Namen einer Methode eingeben und dann einmal die Taste Tabulator drücken, wird der ausgewählte Eintrag vervollständigt, durch wiederholtes Drücken der Taste Tabulator wird zyklisch zwischen den Treffern gewechselt. Wenn Sie beispielsweise aVar.aMeth eingegeben haben, wird zwischen den Einträgen aMeth1, aMethod2, aMethod3 gewechselt, während die anderen Einträge jeweils sichtbar bleiben." #: BasicIDE.xhp msgctxt "" @@ -15569,7 +15569,7 @@ "par_idN105D9\n" "help.text" msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors." -msgstr "Ein Makro kann zum automatischen Starten eingerichtet werden, und es kann potentiell schädliche Aktionen wie z. B. das Löschen oder Umbenennen von Dateien ausführen. Diese Einstellung wird nicht empfohlen, wenn Sie Dokumente von anderen Autoren öffnen." +msgstr "Ein Makro kann zum automatischen Starten eingerichtet werden, und es kann potentiell schädliche Aktionen wie beispielsweise das Löschen oder Umbenennen von Dateien ausführen. Diese Einstellung wird nicht empfohlen, wenn Sie Dokumente von anderen Autoren öffnen." #: macrosecurity_ts.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-10 20:22+0000\n" +"PO-Revision-Date: 2017-04-16 04:31+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489177350.000000\n" +"X-POOTLE-MTIME: 1492317064.000000\n" #: 01170000.xhp msgctxt "" @@ -171,7 +171,7 @@ "2\n" "help.text" msgid "Sets page orientation, page margins, background and other layout options." -msgstr "Hier können Sie die Formatierung der Seiten bestimmen. Sie können diverse Vorgaben z. B. über das verwendete Papierformat, die Nummerierung, sowie die Randbreite treffen. In der Vorgabe haben neue Seiten ein für den Bildschirm passendes Format ohne Ränder." +msgstr "Hier können Sie die Formatierung der Seiten bestimmen. Sie können diverse Vorgaben beispielsweise für das verwendete Papierformat, die Nummerierung sowie die Randbreite treffen. In der Vorgabe haben neue Seiten ein für den Bildschirm passendes Format ohne Ränder." #: 01180001.xhp msgctxt "" @@ -7882,7 +7882,7 @@ "2\n" "help.text" msgid "Converts the selected object to a polygon, or a group of polygons. If the conversion creates a group of polygons (for example, when you convert a text object), then press F3 to enter the group before you can select an individual polygon." -msgstr "Konvertiert das ausgewählte Objekt in ein Polygon oder eine Polygongruppe. Wenn bei der Konvertierung eine Polygongruppe entsteht (z. B. bei der Konvertierung eines Textobjekts) und Sie ein einzelnes Polygon auswählen möchten, dann drücken Sie zum Betreten der Gruppe die Taste F3." +msgstr "Konvertiert das ausgewählte Objekt in ein Polygon oder eine Polygongruppe. Wenn bei der Konvertierung eine Polygongruppe entsteht (beispielsweise bei der Konvertierung eines Textobjekts) und Sie ein einzelnes Polygon auswählen möchten, dann drücken Sie zum Betreten der Gruppe die Taste F3." #: 13050700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-08 13:42+0100\n" -"PO-Revision-Date: 2017-03-15 05:10+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-09 09:58+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489554628.000000\n" +"X-POOTLE-MTIME: 1491731914.000000\n" #: 01020000.xhp msgctxt "" @@ -75,7 +75,7 @@ "4\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" @@ -316,7 +316,7 @@ "36\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" @@ -557,7 +557,7 @@ "61\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" @@ -818,7 +818,7 @@ "88\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" @@ -1421,7 +1421,7 @@ "88\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" @@ -1740,7 +1740,7 @@ "par_idN110AA\n" "help.text" msgid "Shortcut Keys" -msgstr "Tastenkombination" +msgstr "Tastenkombinationen" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-17 20:25+0000\n" +"PO-Revision-Date: 2017-04-16 04:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489782300.000000\n" +"X-POOTLE-MTIME: 1492317659.000000\n" #: 3d_create.xhp msgctxt "" @@ -215,7 +215,7 @@ "41\n" "help.text" msgid "To edit the properties of the 3D object, use the Line and Filling toolbar and the 3D Settings toolbar." -msgstr "Zum Ändern der Eigenschaften des 3D-Objekts verwenden Sie die Symbolleisten \"Linie und Füllung\" und \"3D-Einstellungen\"." +msgstr "Zum Ändern der Eigenschaften des 3D-Objekts verwenden Sie die Symbolleisten Linie und Füllung und 3D-Einstellungen." #: 3d_create.xhp msgctxt "" @@ -498,7 +498,7 @@ "79\n" "help.text" msgid "Select GIF - Graphics Interchange Format (.gif) in the File type list." -msgstr "Wählen Sie als Dateityp \"GIF - Graphics Interchange Format (.gif)\" im Feld Dateityp." +msgstr "Wählen Sie GIF - Graphics Interchange Format (.gif) in der Liste Dateityp aus." #: animated_gif_save.xhp msgctxt "" @@ -2123,7 +2123,7 @@ "10\n" "help.text" msgid "$[officename] Impress AutoLayouts use placeholders for slide titles, text, and objects. To select a placeholder, press Ctrl+Enter. To move to the next placeholder, press Ctrl+Enter again." -msgstr "Die $[officename] Impress Auto-Layouts verwenden Platzhalter für Folientitel, Text und Objekte. Mit den Tasten Strg+Eingabetaste wählen Sie einen Platzhalter oder wechseln Sie von einem Platzhalter zum nächsten." +msgstr "Die $[officename] Impress Auto-Layouts verwenden Platzhalter für Folientitel, Text und Objekte. Mit der Tastenkombination Strg+Eingabetaste wählen Sie einen Platzhalter aus. Um zum nächsten Platzhalter zu wechseln, drücken Sie die Tastenkombination Strg+Eingabetaste erneut." #: keyboard.xhp msgctxt "" @@ -5292,7 +5292,7 @@ "par_id8270210\n" "help.text" msgid "Select some cell contents and right-click to open the context menu. Choose commands to change the cell's contents, like font size and line spacing." -msgstr "Wählen Sie einige Zellinhalte aus und rechtsklicken Sie, um das Kontextmenü aufzurufen. Wählen Sie jetzt eine Funktion zum Ändern der Zellinhalte, z. B. Ändern der Zeichengröße oder des Zeilenabstands." +msgstr "Wählen Sie einige Zellinhalte aus und rechtsklicken Sie, um das Kontextmenü aufzurufen. Wählen Sie jetzt eine Funktion zum Ändern der Zellinhalte, wie Ändern der Zeichengröße oder des Zeilenabstands." #: table_insert.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-03-10 05:45+0000\n" +"PO-Revision-Date: 2017-04-16 04:27+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489124710.000000\n" +"X-POOTLE-MTIME: 1492316834.000000\n" #: main0000.xhp msgctxt "" @@ -322,7 +322,7 @@ "par_id3146971\n" "help.text" msgid "This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files." -msgstr "In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie z.B. Grafiken, Objekte, Symbole und andere Dateien." +msgstr "In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie beispielsweise Grafiken, Objekte, Symbole und andere Dateien." #: main0104.xhp msgctxt "" @@ -1655,7 +1655,7 @@ "16\n" "help.text" msgid "Several views or pages are available when you design a slide show. For example, the Slide Sorter displays an overview of your slides in thumbnail form, while the Handout page contains both the slide and the text you want to distribute to the audience." -msgstr "Beim Erstellen einer Präsentation stehen Ihnen mehrere Ansichten zur Verfügung. Die Foliensortierungsansicht zeigt Ihnen z.B. die Folien im Überblick, während die Handzettelansicht Ihnen zusätzlich zur Folie begleitenden Text für die Zuschauer anzeigt." +msgstr "Beim Erstellen einer Präsentation stehen Ihnen mehrere Ansichten zur Verfügung. Die Foliensortierungsansicht zeigt Ihnen beispielsweise die Folien im Überblick, während die Handzettelansicht Ihnen zusätzlich zur Folie begleitenden Text für die Zuschauer anzeigt." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-10 20:44+0000\n" +"PO-Revision-Date: 2017-04-30 05:23+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489178650.000000\n" +"X-POOTLE-MTIME: 1493529821.000000\n" #: 02080000.xhp msgctxt "" @@ -883,7 +883,7 @@ "27\n" "help.text" msgid "You can also insert user-defined unary operators by typing uoper in the Commands window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command uoper %theta x produces a small Greek letter theta (a component of the $[officename] Math character set). You can also insert characters not in the $[officename] character set by choosing Tools - Symbols - Edit." -msgstr "Mit uoper können Sie selbstdefinierte unäre Operatoren im Fenster Kommandos einfügen, gefolgt von der Syntax eines Zeichens. Dies ist u.a. nützlich, um Sonderzeichen in eine Formel einzubauen. Z.B. erzeugt uoper %theta x ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von $[officename] Math ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü Extras - Symbole - Katalog... definieren." +msgstr "Mit uoper können Sie selbstdefinierte unäre Operatoren im Fenster Kommandos einfügen, gefolgt von der Syntax eines Zeichens. Dies ist unter anderem nützlich, um Sonderzeichen in eine Formel einzubauen. Beispielsweise erzeugt uoper %theta x ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von $[officename] Math ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü Extras - Symbole - Katalog... definieren." #: 03090100.xhp msgctxt "" @@ -892,7 +892,7 @@ "31\n" "help.text" msgid "You can also insert user-defined binary commands by typing boper into the Commands window. For example, the command y boper %theta x produces the small Greek letter theta preceded by a y and followed by an x. You can also insert characters not in the $[officename] character set by choosing Tools - Symbols - Edit." -msgstr "Mit boper können sie selbstdefinierte binäre Operatoren im Fenster Kommandos einfügen. Z.B. erzeugt x boper %theta y ein kleines griechisches Theta mit einem vorangestellten x und gefolgt von einem y. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü Extras - Symbole - Katalog... definieren." +msgstr "Mit boper können sie selbstdefinierte binäre Operatoren im Fenster Kommandos einfügen. Beispielsweise erzeugt x boper %theta y ein kleines griechisches Theta mit einem vorangestellten x und gefolgt von einem y. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über das Menü Extras - Symbole - Katalog... definieren." #: 03090100.xhp msgctxt "" @@ -955,7 +955,7 @@ "36\n" "help.text" msgid "Type sub or sup in the Commands window to add indexes and powers to the characters in your formula; for example, a sub 2." -msgstr "Geben Sie sub oder sup direkt in das Fenster Kommandos ein, um Indizes und Potenzen an die Zeichen Ihrer Formel anzufügen; z.B. a sub 2." +msgstr "Geben Sie sub oder sup direkt in das Fenster Kommandos ein, um Indizes und Potenzen an die Zeichen Ihrer Formel anzufügen; beispielsweise a sub 2." #: 03090100.xhp msgctxt "" @@ -964,7 +964,7 @@ "41\n" "help.text" msgid "If you want to use a colon ':' as division sign, choose Tools - Symbols or click the Symbols icon on the Tools bar. Click the Edit button in the dialog that appears, then select the Special symbol set. Enter a meaningful name next to Symbol, for example, \"divide\" and then click the colon in the set of symbols. Click Add and then OK. Click OK to close the Symbols dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, a %divide b = c." -msgstr "Wenn Sie lieber den Doppelpunkt ':' als Divisionszeichen verwenden möchten, wählen Sie Extras - Katalog... oder klicken auf das Symbol Katalog in der Symbolleiste Extras. Ein Klick auf die Schaltfläche Bearbeiten... öffnet den Dialog Symbole bearbeiten, wo Sie einen Symbolsatz, sinnvoller Weise den Symbolsatz Spezial, auswählen. Geben Sie im Kombinationsfeld Symbol einen möglichst einprägsamen Namen, beispielsweise \"geteilt\", ein und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen Hinzufügen und OK. Schließen Sie ebenfalls den Katalog mit einem Klick auf OK. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster a %geteilt b = c verwenden." +msgstr "Wenn Sie lieber den Doppelpunkt ':' als Divisionszeichen verwenden möchten, wählen Sie Extras - Katalog... oder klicken auf das Symbol Katalog in der Symbolleiste Extras. Ein Klick auf die Schaltfläche Bearbeiten... öffnet den Dialog Symbole bearbeiten, wo Sie einen Symbolsatz, sinnvoller Weise den Symbolsatz Spezial, auswählen. Geben Sie im Kombinationsfeld Symbol einen möglichst einprägsamen Namen, beispielsweise \"geteilt\", ein und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen Hinzufügen und anschließend OK. Schließen Sie ebenfalls den Katalog mit einem Klick auf OK. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster a %geteilt b = c verwenden." #: 03090100.xhp msgctxt "" @@ -2586,7 +2586,7 @@ "53\n" "help.text" msgid "Inserts a hyperbolic sine with one placeholder. You can also type sinh() in the Commands window." -msgstr "Fügt eine Sinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch sinh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Sinus Hyperbolicus mit einem Platzhalter ein. Sie können auch sinh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2638,7 +2638,7 @@ "54\n" "help.text" msgid "Inserts a hyperbolic cosine symbol with one placeholder. You can also type cosh() in the Commands window." -msgstr "Fügt eine Kosinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch cosh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kosinus Hyperbolicus mit einem Platzhalter ein. Sie können auch cosh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2664,7 +2664,7 @@ "55\n" "help.text" msgid "Inserts a hyperbolic tangent symbol with one placeholder. You can also type tanh() in the Commands window." -msgstr "Fügt eine Tangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch tanh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Tangens Hyperbolicus mit einem Platzhalter ein. Sie können auch tanh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2690,7 +2690,7 @@ "56\n" "help.text" msgid "Inserts a hyperbolic cotangent symbol with one placeholder. You can directly type coth() in the Commands window." -msgstr "Fügt eine Kotangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch coth() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kotangens Hyperbolicus mit einem Platzhalter ein. Sie können auch coth() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2872,7 +2872,7 @@ "61\n" "help.text" msgid "Inserts an area hyperbolic sine function with one placeholder. You can also type arsinh() in the Commands window." -msgstr "Fügt eine Sinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arsinh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Sinus Hyperbolicus mit einem Platzhalter ein. Sie können auch arsinh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2898,7 +2898,7 @@ "63\n" "help.text" msgid "Inserts an area hyperbolic cosine function with one placeholder. You can also type arcosh() in the Commands window." -msgstr "Fügt eine Kosinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arcosh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kosinus Hyperbolicus mit einem Platzhalter ein. Sie können auch arcosh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2924,7 +2924,7 @@ "65\n" "help.text" msgid "Inserts an area hyperbolic tangent function with one placeholder. You can also type artanh() in the Commands window." -msgstr "Fügt eine Tangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch artanh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Tangens Hyperbolicus mit einem Platzhalter ein. Sie können auch artanh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2950,7 +2950,7 @@ "67\n" "help.text" msgid "Inserts an area hyperbolic cotangent function with one placeholder. You can also type arcoth() in the Commands window." -msgstr "Fügt eine Kotangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arcoth() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kotangens Hyperbolicus mit einem Platzhalter ein. Sie können auch arcoth() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -3863,7 +3863,7 @@ "15\n" "help.text" msgid "Inserts a placeholder with a circle over it. You can also type circle in the Commands window." -msgstr "Fügt einen Platzhalter mit einme Überkreis (Kroužek) ein. Sie können auch circle direkt in das Fenster Kommandos eingeben." +msgstr "Fügt einen Platzhalter mit einem Überkreis (Kroužek) ein. Sie können auch circle direkt in das Kommandofenster eingeben." #: 03090600.xhp msgctxt "" @@ -10656,7 +10656,7 @@ "498\n" "help.text" msgid "Meaning" -msgstr "Bedeutung (in Klammern: Befehl im Kommandos-Fenster)" +msgstr "Bedeutung" #: 03091509.xhp msgctxt "" @@ -13018,7 +13018,7 @@ "par_id3149126\n" "help.text" msgid "To insert a symbol, select it from the list and click Insert. The corresponding command name appears in the Commands window." -msgstr "Zum Einfügen eines Symbols wählen Sie es aus der Liste klicken auf Übernehmen. Das entsprechende Symbol wird in das Fenster Kommandos eingefügt." +msgstr "Zum Einfügen eines Symbols wählen Sie es aus der Liste und klicken auf Einfügen. Das entsprechende Symbol wird in das Fenster Kommandos eingefügt." #: 06010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath/02.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-31 05:52+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-04-01 08:47+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485841940.000000\n" +"X-POOTLE-MTIME: 1491036447.000000\n" #: 03010000.xhp msgctxt "" @@ -48,7 +48,7 @@ "2\n" "help.text" msgid "Use this icon on the Tools bar to turn the Formula Cursor on or off. The part of the formula where the cursor is positioned in the Commands window is marked with a thin border when the formula cursor is active." -msgstr "Mit diesem Symbol in der Hauptsymbolleiste schalten Sie den Formel-Cursor ein oder aus. Der Teil der Formel, in dem sich der Cursor im Fenster Kommandos befindet, durch einen dünnen Rand gekennzeichnet." +msgstr "Mit diesem Symbol in der Hauptsymbolleiste schalten Sie den Formel-Cursor ein oder aus. Der Teil der Formel, in dem sich der Cursor im Fenster Kommandos befindet, wird durch einen dünnen Rand gekennzeichnet." #: 03010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/smath.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-10 20:27+0000\n" +"PO-Revision-Date: 2017-04-16 04: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489177651.000000\n" +"X-POOTLE-MTIME: 1492318108.000000\n" #: main0000.xhp msgctxt "" @@ -154,7 +154,7 @@ "11\n" "help.text" msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas." -msgstr "Mit dem Assistenten gestalten Sie interaktiv Dokumente wie z.B. Geschäftsbriefe, Faxe usw., in die Sie Ihre gespeicherten Formeln einfügen können." +msgstr "Mit dem Assistenten gestalten Sie interaktiv Dokumente wie Geschäftsbriefe und Faxe, in die Sie Ihre gespeicherten Formeln einfügen können." #: main0101.xhp msgctxt "" @@ -225,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 "Hier stehen die Befehle zum Bearbeiten von Formeln. Neben allgemeinen Befehlen, z.B. um Inhalte zu kopieren, finden Sie speziell für $[officename] Math konzipierte wie das Suchen von Platzhaltern oder die Unterstützung bei der Fehlersuche." +msgstr "Hier stehen die Befehle zum Bearbeiten von Formeln. Neben allgemeinen Befehlen (beispielsweise Inhalte kopieren) finden Sie spezielle Funktionen für $[officename] Math, wie das Suchen von Platzhaltern oder die Unterstützung bei der Fehlersuche." #: main0103.xhp msgctxt "" @@ -598,7 +598,7 @@ "6\n" "help.text" msgid "You can create your own symbols and import characters from other fonts. You can add new symbols to the basic catalog of $[officename] Math symbols, or create your own special catalogs. Numerous special characters are also available." -msgstr "Sie können eigene Symbole erstellen und Zeichen aus fremden Zeichensätzen übernehmen. Dem Grundkatalog von $[officename] Math an verfügbaren Zeichen können Sie beliebig viele neue hinzufügen und auch eigene, spezielle Kataloge zusammenstellen. Zahlreiche Sonderzeichen (z.B. halbe geschweifte Klammern) stehen Ihnen zur Verfügung." +msgstr "Sie können eigene Symbole erstellen und Zeichen aus fremden Zeichensätzen übernehmen. Dem Grundkatalog von $[officename] Math an verfügbaren Zeichen können Sie beliebig viele neue hinzufügen und auch eigene, spezielle Kataloge zusammenstellen. Zahlreiche Sonderzeichen (beispielsweise halbe geschweifte Klammern) stehen Ihnen zur Verfügung." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-17 20:47+0000\n" +"PO-Revision-Date: 2017-04-01 08:04+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489783666.000000\n" +"X-POOTLE-MTIME: 1491033863.000000\n" #: 00000004.xhp msgctxt "" @@ -1549,7 +1549,7 @@ "37\n" "help.text" msgid "Choose Format - AutoCorrect - While Typing" -msgstr "Menü Format - AutoKorrektur - Während der Eingabe" +msgstr "Wählen Sie Extras - AutoKorrektur - Während der Eingabe" #: 00000405.xhp msgctxt "" @@ -1558,7 +1558,7 @@ "42\n" "help.text" msgid "Choose Format - AutoCorrect" -msgstr "Menü Format - AutoKorrektur" +msgstr "Wählen Sie Extras - AutoKorrektur" #: 00000405.xhp msgctxt "" @@ -1567,7 +1567,7 @@ "43\n" "help.text" msgid "Choose Format - AutoCorrect - Apply" -msgstr "Menü Format - AutoKorrektur - Anwenden" +msgstr "Wählen Sie Extras - AutoKorrektur - Anwenden" #: 00000405.xhp msgctxt "" @@ -1576,7 +1576,7 @@ "153\n" "help.text" msgid "Choose Format - AutoCorrect - Apply and Edit Changes" -msgstr "Menü Format - AutoKorrektur - Anwenden und Änderungen bearbeiten" +msgstr "Wählen Sie Extras - AutoKorrektur - Anwenden und Änderungen bearbeiten" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-24 20:07+0000\n" +"PO-Revision-Date: 2017-04-17 03:07+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490386077.000000\n" +"X-POOTLE-MTIME: 1492398472.000000\n" #: 01120000.xhp msgctxt "" @@ -2240,7 +2240,7 @@ "61\n" "help.text" msgid "To add a new path to an AutoText directory, click the Path button in the AutoText dialog." -msgstr "Um einen neuen Pfad hinzuzufügen, klicken Sie auf die Schaltfläche Pfad im AutoText-Dialog." +msgstr "Um einen neuen Pfad hinzuzufügen, klicken Sie auf die Schaltfläche Pfad im Dialog AutoText." #: 02120000.xhp msgctxt "" @@ -6104,7 +6104,7 @@ "26\n" "help.text" msgid "The following fields can only be inserted if the corresponding field type is selected in the Type list." -msgstr "Die nachfolgenden Textfelder sind nur sichtbar oder aktivierbar, wenn jeweils der dazugehörige Feldtyp gewählt wurde." +msgstr "Die folgenden Felder können nur eingefügt werden, falls der entsprechende Feldtyp in der Liste Typ ausgewählt wurde." #: 04090001.xhp msgctxt "" @@ -6149,7 +6149,7 @@ "31\n" "help.text" msgid "Function" -msgstr "Funktion" +msgstr "Funktion" #: 04090001.xhp msgctxt "" @@ -6486,7 +6486,7 @@ "4\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090002.xhp msgctxt "" @@ -6714,7 +6714,7 @@ "par_id641193\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090002.xhp msgctxt "" @@ -7035,7 +7035,7 @@ "4\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090003.xhp msgctxt "" @@ -7662,7 +7662,7 @@ "5\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090004.xhp msgctxt "" @@ -8413,7 +8413,7 @@ "3\n" "help.text" msgid "Field type" -msgstr "Feldtyp" +msgstr "Feldtyp" #: 04090006.xhp msgctxt "" @@ -8422,7 +8422,7 @@ "4\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090006.xhp msgctxt "" @@ -8809,7 +8809,7 @@ "10\n" "help.text" msgid "$[officename] Tag" -msgstr "$[officename] Tag" +msgstr "$[officename] Tag" #: 04090007.xhp msgctxt "" @@ -8935,7 +8935,7 @@ "28\n" "help.text" msgid "$[officename] Tag" -msgstr "$[officename] Tag" +msgstr "$[officename] Tag" #: 04090007.xhp msgctxt "" @@ -9454,7 +9454,7 @@ "130\n" "help.text" msgid "Variable" -msgstr "Variable" +msgstr "Variable" #: 04090200.xhp msgctxt "" @@ -9463,7 +9463,7 @@ "131\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090200.xhp msgctxt "" @@ -9778,7 +9778,7 @@ "133\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 04090200.xhp msgctxt "" @@ -10339,7 +10339,7 @@ "par_idN105AC\n" "help.text" msgid "Opens a menu to insert an index or bibliography entry, as well as inserting a table of contents, index, and or bibliography." -msgstr "Öffnet eine Untermenü, um ein Verzeichnis bzw. ein Verzeichnis- oder Literaturverzeichniseintrag einzufügen." +msgstr "Öffnet eine Untermenü, um ein Verzeichnis bzw. einen Verzeichnis- oder Literaturverzeichniseintrag einzufügen." #: 04120000.xhp msgctxt "" @@ -11579,7 +11579,7 @@ "12\n" "help.text" msgid "Entry in the Index" -msgstr "Eintrag im Verzeichnis" +msgstr "Verzeichniseintrag" #: 04120213.xhp msgctxt "" @@ -12291,7 +12291,7 @@ "17\n" "help.text" msgid "Page number (#)" -msgstr "Seitennr." +msgstr "Seitenzahl (#)" #: 04120221.xhp msgctxt "" @@ -18161,7 +18161,7 @@ "26\n" "help.text" msgid "OLE object" -msgstr "OLE-Objekt" +msgstr "OLE-Objekt" #: 05060700.xhp msgctxt "" @@ -18197,7 +18197,7 @@ "30\n" "help.text" msgid "ImageMap area" -msgstr "Verweissensitive Grafik-Area" +msgstr "Verweissensitiver Grafikbereich" #: 05060700.xhp msgctxt "" @@ -18206,7 +18206,7 @@ "31\n" "help.text" msgid "Hyperlink" -msgstr "Hyperlink" +msgstr "Hyperlink" #: 05060700.xhp msgctxt "" @@ -18790,7 +18790,7 @@ "tit\n" "help.text" msgid "Hyperlink" -msgstr "Hyperlink" +msgstr "Hyperlink" #: 05060800.xhp msgctxt "" @@ -21143,7 +21143,7 @@ "68\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 05130000.xhp msgctxt "" @@ -21420,7 +21420,7 @@ "3\n" "help.text" msgid "When a Numbering Style is created, a name is assigned to the numbering. This is why such templates are also called \"named\" numberings. Unnamed numberings, which are used for direct formatting, can be created in the Bullets and Numbering dialog or with the icons of the object bar." -msgstr "Beim Erstellen einer Listenvorlage wird der Liste ein Name zugewiesen, daher nennt man solche Vorlagen auch benannte Listen. Unbenannte Listen, welche zur direkten Formatierung verwendet werden, können Sie mit dem Dialog Nummerierung und Aufzählungszeichen... oder mit den Symbolen der Symbolleiste Nummerierung und Aufzählungszeichen erstellen." +msgstr "Beim Erstellen einer Listenvorlage wird der Liste ein Name zugewiesen, daher nennt man solche Vorlagen auch benannte Listen. Unbenannte Listen, welche zur direkten Formatierung verwendet werden, können Sie mit dem Dialog Nummerierung und Aufzählungszeichen... oder mit den Symbolen der Symbolleiste Formatierungen erstellen." #: 05130100.xhp msgctxt "" @@ -22468,7 +22468,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options." -msgstr "Formatiert die Datei automatisch entsprechend der von Ihnen unter Extras - AutoKorrektur-Optionen... eingestellten Vorgaben." +msgstr "Formatiert die Datei automatisch entsprechend der von Ihnen unter Extras - AutoKorrektur - AutoKorrektur-Optionen... eingestellten Vorgaben." #: 05150200.xhp msgctxt "" @@ -22629,7 +22629,7 @@ "2\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options. In a dialog, you are asked to accept or reject the changes." -msgstr "Formatiert die Datei automatisch gemäß den unter Extras - AutoKorrektur-Optionen... festgelegten Einstellungen. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten." +msgstr "Formatiert die Datei automatisch gemäß den unter Extras - AutoKorrektur - AutoKorrektur-Optionen... festgelegten Einstellungen. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten." #: 05150300.xhp msgctxt "" @@ -23569,7 +23569,7 @@ "15\n" "help.text" msgid "Description" -msgstr "Funktion" +msgstr "Beschreibung" #: 06060100.xhp msgctxt "" @@ -24071,7 +24071,7 @@ "66\n" "help.text" msgid "Meaning" -msgstr "Bedeutung" +msgstr "Bedeutung" #: 06080100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-23 05:24+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-16 15:52+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246666.000000\n" +"X-POOTLE-MTIME: 1492357976.000000\n" #: anchor_object.xhp msgctxt "" @@ -370,7 +370,7 @@ "30\n" "help.text" msgid "Choose Format - AutoCorrect, and ensure that While Typing is selected." -msgstr "Wählen Sie Format - AutoKorrektur und stellen Sie sicher, dass Während der Eingabe aktiviert ist." +msgstr "Wählen Sie Extras - AutoKorrektur und stellen Sie sicher, dass Während der Eingabe aktiviert ist." #: auto_numbering.xhp msgctxt "" @@ -482,7 +482,7 @@ "par_idN10846\n" "help.text" msgid "To turn off most AutoCorrect features, remove the check mark from the menu Format - AutoCorrect - While Typing." -msgstr "Entfernen Sie das Häkchen aus dem Kontrollkästchen Format - AutoKorrektur - Bei Eingabe, um die meisten AutoKorrektur-Funktionen zu deaktivieren." +msgstr "Entfernen Sie das Häkchen aus dem Kontrollkästchen Extras - AutoKorrektur - Während der Eingabe, um die meisten AutoKorrektur-Funktionen zu deaktivieren." #: auto_off.xhp msgctxt "" @@ -1324,7 +1324,7 @@ "par_id3148413\n" "help.text" msgid "If two adjacent text ranges' all border properties are identical (same style, width, color, padding and shadow), then those two ranges will be considered to be part of the same border group and rendered within the same border in the document." -msgstr "Wenn für zwei benachbarte Textbereiche alle Rahmeneigenschaften gleich sind (Stil, Breite, Farbe, Abstände und Schatten), dann werden diese zwei Bereiche als ein Teil derselben Rahmengruppe angesehen und mit einem gemeinsamen Rahmen im Dokument dargestellt." +msgstr "Wenn für zwei benachbarte Textbereiche alle Rahmeneigenschaften gleich sind (Stil, Breite, Farbe, Innenabstände und Schatten), dann werden diese zwei Bereiche als ein Teil derselben Rahmengruppe angesehen und mit einem gemeinsamen Rahmen im Dokument dargestellt." #: border_character.xhp msgctxt "" @@ -2378,7 +2378,7 @@ "15\n" "help.text" msgid "Click in the first cell of the series you want to sum up, drag to the final cell, and then release.
$[officename] inserts a formula for calculating the sum of the values in the current column." -msgstr "Klicken Sie in die erste Zelle der Reihe, ziehen Sie den Mauszeiger über die letzte Zelle und lassen Sie ihn los." +msgstr "Klicken Sie in die erste Zelle der zu addierenden Reihe, ziehen den Mauszeiger über die letzte Zelle und lassen dann los.
$[officename] fügt eine Formel für die Summenberechnung der Werte in der aktuellen Spalte ein." #: calculate_intable.xhp msgctxt "" @@ -2905,7 +2905,7 @@ "par_id3145567\n" "help.text" msgid "AutoCaption dialog" -msgstr "Beschriftungsdialog" +msgstr "Beschriftungsdialog" #: captions_numbers.xhp msgctxt "" @@ -3917,7 +3917,7 @@ "183\n" "help.text" msgid "Field Type" -msgstr "Feldtyp" +msgstr "Feldtyp" #: fields.xhp msgctxt "" @@ -3926,7 +3926,7 @@ "184\n" "help.text" msgid "Property" -msgstr "Eigenschaft" +msgstr "Eigenschaft" #: fields.xhp msgctxt "" @@ -5333,7 +5333,7 @@ "par_id3145808\n" "help.text" msgid "If you want to increase the spacing between footnote or endnote texts, you can add a top and bottom border to the corresponding paragraph style." -msgstr "Wenn Sie den Abstand zwischen Fuß-Endnotentexten vergrößern möchten, können Sie der entsprechenden Absatzvorlage oben und unten eine Umrandung hinzufügen." +msgstr "Wenn Sie den Abstand zwischen Fuß- oder Endnotentexten vergrößern möchten, können Sie der entsprechenden Absatzvorlage oben und unten eine Umrandung hinzufügen." #: footnote_with_line.xhp msgctxt "" @@ -11287,7 +11287,7 @@ "34\n" "help.text" msgid "Choose File - Print Preview." -msgstr "Wählen Sie aus dem Menü Datei - Druckvorschau." +msgstr "Wählen Sie aus dem Menü Datei - Druckvorschau." #: print_preview.xhp msgctxt "" @@ -12456,7 +12456,7 @@ "9\n" "help.text" msgid "Choose Format - AutoCorrect - Apply." -msgstr "Wählen Sie Format - AutoKorrektur - Anwenden." +msgstr "Wählen Sie Extras - AutoKorrektur - Anwenden." #: reset_format.xhp msgctxt "" @@ -12793,7 +12793,7 @@ "49\n" "help.text" msgid "A search using a regular expression will work only within one paragraph. To search using a regular expression in more than one paragraph, do a separate search in each paragraph." -msgstr "Eine Suche in der Sie einen Regulären Ausdruck verwenden, funktioniert nur innerhalb eines Absatzes. Um mit einem Regulären Ausdruck in mehr als einem Absatz suchen, starten Sie eine getrennte Suche in jedem Absatz." +msgstr "Eine Suche, in der Sie einen Regulären Ausdruck verwenden, funktioniert nur innerhalb eines Absatzes. Um mit einem Regulären Ausdruck in mehr als einem Absatz suchen, starten Sie eine getrennte Suche in jedem Absatz." #: search_regexp.xhp msgctxt "" @@ -14293,7 +14293,7 @@ "5\n" "help.text" msgid "To delete a whole table, click in the table, and then choose Table - Delete - Table." -msgstr "Um eine Tabelle zu löschen, führen Sie einen der folgenden Schritte aus:" +msgstr "Um eine ganze Tabelle zu löschen, klicken Sie in sie und wählen Sie Tabelle - Löschen - Tabelle." #: table_delete.xhp msgctxt "" @@ -14498,7 +14498,7 @@ "49\n" "help.text" msgid "Options" -msgstr "Auswahl" +msgstr "Optionen" #: table_insert.xhp msgctxt "" @@ -14507,7 +14507,7 @@ "50\n" "help.text" msgid "Is inserted as..." -msgstr "Wird eingefügt als..." +msgstr "Wird eingefügt als..." #: table_insert.xhp msgctxt "" @@ -16094,7 +16094,7 @@ "23\n" "help.text" msgid "Key" -msgstr "Taste" +msgstr "Taste" #: text_nav_keyb.xhp msgctxt "" @@ -16103,7 +16103,7 @@ "24\n" "help.text" msgid "Function" -msgstr "Funktion" +msgstr "Funktion" #: text_nav_keyb.xhp msgctxt "" @@ -16920,7 +16920,7 @@ "par_id3153390\n" "help.text" msgid "For example, to change the bulleting symbol, click the Options tab, click the Select button next to Character, and then select a special character. You can also click the Image tab, and then click a symbol style in the Selection area." -msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register Optionen, klicken Sie neben Zeichen auf die Schaltfläche Durchsuchen... und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register Bild und dann auf auf eine Symbolvorlage im Bereich Auswahl klicken." +msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register Optionen, dann neben Zeichen auf die Schaltfläche Durchsuchen... und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register Bild und dann auf eine Symbolvorlage im Bereich Auswahl klicken." #: using_numbered_lists2.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2017-03-24 20:08+0000\n" +"PO-Revision-Date: 2017-04-01 08:51+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490386097.000000\n" +"X-POOTLE-MTIME: 1491036662.000000\n" #: LibreLogo.xhp msgctxt "" @@ -62,7 +62,7 @@ "par_230\n" "help.text" msgid "The LibreLogo toolbar (View » Toolbars » Logo) contains turtle moving, program start, stop, home, clear screen, program editor/syntax highlighting/translating icons and an input bar (command line)." -msgstr "Die Symbolleiste LibreLogo (Ansicht » Symbolleisten » Logo) enthält Schaltflächen für Turtle-Bewegungen, Programmstart und -stopp, Anfang, Bildschirm säubern, Programmeditor sowie zum hervorheben/übersetzen der Syntax und eine Eingabezeile (Befehlszeile)." +msgstr "Die Symbolleiste LibreLogo (Ansicht » Symbolleisten » Logo) enthält Schaltflächen für Turtle-Bewegungen, Programmstart und -stopp, Anfang, Bildschirm säubern, Programmeditor sowie zum Hervorheben/Übersetzen der Syntax und eine Eingabezeile (Befehlszeile)." #: LibreLogo.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_345\n" "help.text" msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (Tools » Options » Language Settings » Languages » Western) and click on this icon to translate the Logo program to the selected language." -msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras » Optionen... » Spracheinstellungen » Sprache » Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten." +msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (Extras » Optionen... » Spracheinstellungen » Sprache » Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzten." #: LibreLogo.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_415\n" "help.text" msgid "Turtle shape of LibreLogo is a normal fixed size drawing object. You can positionate and rotate it on standard way, too, using the mouse and the Rotate icon of the Drawing Object Properties toolbar. Modify Line Width, Line Color and Area Color settings of the turtle shape to set PENSIZE, PENCOLOR and FILLCOLOR attributes of LibreLogo." -msgstr "Der Turtle in LibreLogo ist eine normales Zeichnungsobjekt mit fester Größe. Sie können dieses auf dem Standardweg positionieren und drehen, aber auch, indem Sie die Maus und das Symbol Drehen der Symbolleiste Zeichnungsobjekt-Eigenschaften verwenden. Ändern Sie die Eigenschaften Linienbreite, Linienfarbe und Flächenfarbe des Turtles, so werden auch die Attribute STIFTBREITE, STIFTFARBE und FÜLLFARBE von LibreLogo gesetzt." +msgstr "Der Turtle in LibreLogo ist ein normales Zeichnungsobjekt mit fester Größe. Sie können dieses auf dem Standardweg positionieren und drehen, aber auch, indem Sie die Maus und das Symbol Drehen der Symbolleiste Zeichnungsobjekt-Eigenschaften verwenden. Ändern Sie die Eigenschaften Linienbreite, Linienfarbe und Flächenfarbe des Turtles, so werden auch die Attribute STIFTBREITE, STIFTFARBE und FÜLLFARBE von LibreLogo gesetzt." #: LibreLogo.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_450\n" "help.text" msgid "LibreLogo is an easily localizable, Logo-like programming language, localized in several languages by LibreOffice native language communities. It is back-compatible with the older Logo systems in the case of the simple Logo programs used in education, eg." -msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatbel zum älteren Logo-System, z.B. um es in der Bildung als einfache Programmiersprache zu verwenden." +msgstr "LibreLogo ist eine leicht zu lokalisierende, Logo-artige Programmiersprache und durch die LibreOffice-Community bereits in diverse Sprachen übersetzt. Es ist abwärtskompatibel zum älteren Logo-System, z.B. um es in der Bildung als einfache Programmiersprache zu verwenden." #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-23 05:13+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-30 09:55+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246010.000000\n" +"X-POOTLE-MTIME: 1493546123.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -17836,7 +17836,7 @@ "Label\n" "value.text" msgid "Borders (Shift to overwrite)" -msgstr "Rahmen (Umschalt zum Überschreiben)" +msgstr "Umrandung (Umschalt zum Überschreiben)" #: GenericCommands.xcu msgctxt "" @@ -18025,7 +18025,7 @@ "Label\n" "value.text" msgid "Border Style" -msgstr "Rahmenstil" +msgstr "Umrandungsstil" #: GenericCommands.xcu msgctxt "" @@ -18034,7 +18034,7 @@ "Label\n" "value.text" msgid "Border Color" -msgstr "Rahmenfarbe" +msgstr "Umrandungsfarbe" #: GenericCommands.xcu msgctxt "" @@ -25351,7 +25351,7 @@ "Label\n" "value.text" msgid "~Track Changes" -msgstr "Änderungen v~erfolgen" +msgstr "Änd~erungen" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-23 05:15+0000\n" +"PO-Revision-Date: 2017-05-03 03:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246121.000000\n" +"X-POOTLE-MTIME: 1493782464.000000\n" #: filter.src msgctxt "" @@ -99,7 +99,7 @@ "STR_UNDO_DRAGDROP\n" "string.text" msgid "Drag and Drop" -msgstr "Ziehen&Ablegen" +msgstr "Ziehen und Ablegen" #: globstr.src msgctxt "" @@ -9796,7 +9796,7 @@ "1\n" "string.text" msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges." -msgstr "Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen umfasst." +msgstr "Summiert die Werte der Zellen in einem Bereich, die mehrere Bedingungen in mehreren Bereichen erfüllen." #: scfuncs.src msgctxt "" @@ -11056,7 +11056,7 @@ "1\n" "string.text" msgid "Calculates subtotals in a spreadsheet." -msgstr "Berechnet Zwischenergebnisse in einem Tabellendokumenten." +msgstr "Berechnet Zwischenergebnisse in einem Tabellendokument." #: scfuncs.src msgctxt "" @@ -15942,7 +15942,7 @@ "1\n" "string.text" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "Berechnet die Werte Wahrscheinlichkeitsdichtefunktion oder der kumulativen Verteilungsfunktion der Gammaverteilung." +msgstr "Berechnet die Werte der Wahrscheinlichkeitsdichtefunktion oder der kumulativen Verteilungsfunktion der Gammaverteilung." #: scfuncs.src msgctxt "" @@ -19830,7 +19830,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standartdwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" @@ -19965,7 +19965,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standartdwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" @@ -21740,7 +21740,7 @@ "1\n" "string.text" msgid "Removes all nonprintable characters from text." -msgstr "Löscht Nicht druckbare Zeichen aus dem Text." +msgstr "Löscht nicht druckbare Zeichen aus dem Text." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/de/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2017-01-18 10:39+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-04-01 08:37+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484735983.000000\n" +"X-POOTLE-MTIME: 1491035853.000000\n" #: analysis.src msgctxt "" @@ -634,7 +634,7 @@ "1\n" "string.text" msgid "Returns a random integer between the numbers you specify" -msgstr "Liefert eine zufällige ganz Zahl aus dem angegebenen Bereich" +msgstr "Liefert eine zufällige ganze Zahl aus dem angegebenen Bereich" #: analysis.src msgctxt "" @@ -1929,7 +1929,7 @@ "1\n" "string.text" msgid "Returns the product of several complex numbers" -msgstr "Liefert das Produkt mehrer komplexer Zahlen" +msgstr "Liefert das Produkt mehrerer komplexer Zahlen" #: analysis.src msgctxt "" @@ -2127,7 +2127,7 @@ "1\n" "string.text" msgid "Returns the tangent of a complex number" -msgstr "Liefert den Tangenz einer komplexen Zahl" +msgstr "Liefert den Tangens einer komplexen Zahl" #: analysis.src msgctxt "" @@ -3702,7 +3702,7 @@ "1\n" "string.text" msgid "Returns the price per 100 currency units face value of a discounted security" -msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen Werpapiers" +msgstr "Liefert den Kurs pro 100 Währungseinheiten Nennwert eines unverzinslichen Wertpapiers" #: analysis.src msgctxt "" @@ -4080,7 +4080,7 @@ "1\n" "string.text" msgid "Converts a price expressed as a decimal into a price expressed as a fraction" -msgstr "Konvertiert eine Notierung in dezimaler Schreibweise in eine gemischten Dezimalbruch" +msgstr "Konvertiert eine Notierung in dezimaler Schreibweise in einen gemischten Dezimalbruch" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/scp2/source/ooo.po libreoffice-l10n-5.3.3~rc2/translations/source/de/scp2/source/ooo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/scp2/source/ooo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-14 11:16+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-04-01 08:38+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484392615.000000\n" +"X-POOTLE-MTIME: 1491035916.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -254,7 +254,7 @@ "STR_NAME_MODULE_HELPPACK_NL\n" "LngText.text" msgid "Dutch" -msgstr "Holländisch" +msgstr "Niederländisch" #: module_helppack.ulf msgctxt "" @@ -2030,7 +2030,7 @@ "STR_NAME_MODULE_LANGPACK_NL\n" "LngText.text" msgid "Dutch" -msgstr "Holländisch" +msgstr "Niederländisch" #: module_langpack.ulf msgctxt "" @@ -4222,7 +4222,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_NL\n" "LngText.text" msgid "Dutch" -msgstr "Holländisch" +msgstr "Niederländisch" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sd/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sd/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sd/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-23 05:16+0000\n" +"PO-Revision-Date: 2017-05-03 03:36+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246187.000000\n" +"X-POOTLE-MTIME: 1493782595.000000\n" #: popup.src msgctxt "" @@ -392,7 +392,7 @@ "STR_UNDO_DRAGDROP\n" "string.text" msgid "Drag and Drop" -msgstr "Ziehen&Ablegen" +msgstr "Ziehen und Ablegen" #: strings.src msgctxt "" @@ -2554,7 +2554,7 @@ "STRING_DRAG_AND_DROP_PAGES\n" "string.text" msgid "Drag and Drop Pages" -msgstr "Seiten Ziehen&Ablegen" +msgstr "Seiten Ziehen und Ablegen" #: strings.src msgctxt "" @@ -2562,7 +2562,7 @@ "STRING_DRAG_AND_DROP_SLIDES\n" "string.text" msgid "Drag and Drop Slides" -msgstr "Folien Ziehen&Ablegen" +msgstr "Folien Ziehen und Ablegen" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 04:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 11:39+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487649618.000000\n" +"X-POOTLE-MTIME: 1492083567.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchisch" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Gießkannenmodus" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Neue Vorlage aus Auswahl" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Vorlage aktualisieren" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-21 04:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 11:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487651428.000000\n" +"X-POOTLE-MTIME: 1492083648.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Alle Warenzeichen und eingetragenen Warenzeichen, die hier erwähnt werden, sind Eigentum ihrer jeweiligen Eigentümer.\n" "\n" -"Copyright © 2000–2016 LibreOffice-Beitragende. Alle Rechte vorbehalten.\n" +"Copyright © 2000–2017 LibreOffice-Beitragende. Alle Rechte vorbehalten.\n" "\n" "Dieses Produkt wurde durch %OOOVENDOR erstellt, basierend auf OpenOffice.org, welches dem Copyright 2000, 2011 Oracle und/oder seinen Tochtergesellschaften unterliegt. %OOOVENDOR erkennt alle Gemeinschaftsmitglieder an, bitte sehen Sie unter http://de.libreoffice.org/about-us/credits/ für weitere Details nach." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/de/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-01-14 10:10+0000\n" -"Last-Translator: kuehl \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 11:43+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484388648.000000\n" +"X-POOTLE-MTIME: 1492083838.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ msgstr "Formatierter Text [RTF]" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Formatierter Text [RTF]" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/de/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-31 04:58+0000\n" -"Last-Translator: kuehl \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 11:14+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485838726.000000\n" +"X-POOTLE-MTIME: 1491995652.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungarisch (Szekler Kerbschrift - Rovásírás)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Englisch (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/source/items.po libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/source/items.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/source/items.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/source/items.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 04:01+0000\n" +"PO-Revision-Date: 2017-04-06 04:17+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487649703.000000\n" +"X-POOTLE-MTIME: 1491452254.000000\n" #: svxerr.src msgctxt "" @@ -550,7 +550,7 @@ "Paragraph indent\n" "itemlist.text" msgid "Paragraph indent" -msgstr "Einzug Absatz" +msgstr "Absatzeinzug" #: svxitems.src msgctxt "" @@ -640,7 +640,7 @@ "Size of Asian font\n" "itemlist.text" msgid "Size of Asian font" -msgstr "Schriftgrad asiatische Schrift" +msgstr "Schriftgrad asiatischer Schrift" #: svxitems.src msgctxt "" @@ -649,7 +649,7 @@ "Language of Asian font\n" "itemlist.text" msgid "Language of Asian font" -msgstr "Sprache asiatische Schrift" +msgstr "Sprache asiatischer Schrift" #: svxitems.src msgctxt "" @@ -658,7 +658,7 @@ "Posture of Asian font\n" "itemlist.text" msgid "Posture of Asian font" -msgstr "Schriftstellung asiatische Schrift" +msgstr "Schriftstellung asiatischer Schrift" #: svxitems.src msgctxt "" @@ -667,7 +667,7 @@ "Weight of Asian font\n" "itemlist.text" msgid "Weight of Asian font" -msgstr "Schriftstärke asiatische Schrift" +msgstr "Schriftstärke asiatischer Schrift" #: svxitems.src msgctxt "" @@ -685,7 +685,7 @@ "Size of complex scripts\n" "itemlist.text" msgid "Size of complex scripts" -msgstr "Schriftgrad komplexe Skripte" +msgstr "Schriftgrad komplexer Skripte" #: svxitems.src msgctxt "" @@ -694,7 +694,7 @@ "Language of complex scripts\n" "itemlist.text" msgid "Language of complex scripts" -msgstr "Sprache komplexe Skripte" +msgstr "Sprache komplexer Skripte" #: svxitems.src msgctxt "" @@ -703,7 +703,7 @@ "Posture of complex scripts\n" "itemlist.text" msgid "Posture of complex scripts" -msgstr "Schriftstellung komplexe Skripte" +msgstr "Schriftstellung komplexer Skripte" #: svxitems.src msgctxt "" @@ -712,7 +712,7 @@ "Weight of complex scripts\n" "itemlist.text" msgid "Weight of complex scripts" -msgstr "Schriftstärke komplexe Skripte" +msgstr "Schriftstärke komplexer Skripte" #: svxitems.src msgctxt "" @@ -739,7 +739,7 @@ "Text spacing\n" "itemlist.text" msgid "Text spacing" -msgstr "Text Abstand" +msgstr "Textabstand" #: svxitems.src msgctxt "" @@ -961,7 +961,7 @@ "RID_SVXITEMS_ORI_STANDARD\n" "string.text" msgid "Default orientation" -msgstr "Schreibrichtung Standard" +msgstr "Standard-Schreibrichtung" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 04:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 11:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487650516.000000\n" +"X-POOTLE-MTIME: 1492083294.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Kann nicht alle SmartArts laden. Das Speichern in Microsoft Office 2010 oder später würde dieses Problem vermeiden." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-02-24 04:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 11:44+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487910207.000000\n" +"X-POOTLE-MTIME: 1492083863.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Beenden" +msgid "_Restart in Normal Mode" +msgstr "Im _normalen Modus neu starten" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sw/source/ui/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sw/source/ui/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sw/source/ui/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-03-29 20:56+0200\n" +"POT-Creation-Date: 2017-05-03 12:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1962,7 +1962,7 @@ "STR_CONTENT_TYPE_REFERENCE\n" "string.text" msgid "References" -msgstr "Bezüge" +msgstr "Verweise" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-23 04:56+0000\n" +"PO-Revision-Date: 2017-05-03 03:45+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490244990.000000\n" +"X-POOTLE-MTIME: 1493783104.000000\n" #: abstractdialog.ui msgctxt "" @@ -17081,7 +17081,7 @@ "0\n" "stringlist.text" msgid "References" -msgstr "Bezüge" +msgstr "Verweise" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/swext/mediawiki/help.po libreoffice-l10n-5.3.3~rc2/translations/source/de/swext/mediawiki/help.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/swext/mediawiki/help.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/swext/mediawiki/help.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-14 11:23+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-04-26 04:38+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484392992.000000\n" +"X-POOTLE-MTIME: 1493181535.000000\n" #: help.tree msgctxt "" @@ -646,7 +646,7 @@ "par_id664082\n" "help.text" msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." -msgstr "Wählen Sie den MediaWiki-Server aus, auf dem Sie Ihr Dokument bereitstellen möchten. Klicken Sie auf HInzufügen, um einen neuen Server hinzuzufügen." +msgstr "Wählen Sie den MediaWiki-Server aus, auf dem Sie Ihr Dokument veröffentlichen möchten. Klicken Sie auf Hinzufügen, um einen neuen Server zur Liste hinzuzufügen." #: wikisend.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/uui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/de/uui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/uui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/uui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-18 21:14+0000\n" +"PO-Revision-Date: 2017-04-06 04:18+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479503651.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491452293.000000\n" #: authfallback.ui msgctxt "" @@ -399,7 +399,7 @@ "label\n" "string.text" msgid "Accept this certificate temporarily for this session" -msgstr "Dieses Zertifikat für die aktuelle Sitzung akzeptieren" +msgstr "Dieses Zertifikat vorübergehend für diese Sitzung akzeptieren" #: unknownauthdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/de/vcl/source/src.po libreoffice-l10n-5.3.3~rc2/translations/source/de/vcl/source/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/de/vcl/source/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/de/vcl/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-27 23:56+0000\n" -"Last-Translator: Gilward_Kukel \n" +"PO-Revision-Date: 2017-04-30 08:17+0000\n" +"Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490658997.000000\n" +"X-POOTLE-MTIME: 1493540268.000000\n" #: app.src msgctxt "" @@ -466,7 +466,7 @@ "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY\n" "string.text" msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents." -msgstr "Die Datei existiert bereits in \"$dirname$\". Beim Ersetzen wird ihr Inhalt überschreiben." +msgstr "Die Datei existiert bereits in \"$dirname$\". Beim Ersetzen wird ihr Inhalt überschrieben." #: fpicker.src msgctxt "" @@ -626,7 +626,7 @@ "SV_SHORTCUT_ACTIVEHELP\n" "string.text" msgid "Extended Tips" -msgstr "Aktive Hilfe" +msgstr "Erweiterte Tipps" #: helptext.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 13:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476796192.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480599209.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 09:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467661569.000000\n" +"X-POOTLE-MTIME: 1479114463.000000\n" #: dialog.src msgctxt "" @@ -726,6 +726,30 @@ msgid "Hierarchical" msgstr "हाइरार्किकल " +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 19:48+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 14:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467661703.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480601707.000000\n" #: alienwarndialog.ui msgctxt "" @@ -800,7 +800,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,16 +3,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 20:14+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440533693.000000\n" #: addresstemplate.src @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 09:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467661968.000000\n" +"X-POOTLE-MTIME: 1479115452.000000\n" #: imagemgr.src msgctxt "" @@ -3917,6 +3917,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:56+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 09:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dgo\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467662191.000000\n" +"X-POOTLE-MTIME: 1479116975.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dgo/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dgo/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 14:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5093,16 +5093,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 13:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: dz\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476796175.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480600177.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 21:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5719,7 +5719,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5727,7 +5727,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 21:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2457,7 +2457,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 12:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dz\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467661568.000000\n" +"X-POOTLE-MTIME: 1479125911.000000\n" #: dialog.src msgctxt "" @@ -719,6 +719,30 @@ msgid "Hierarchical" msgstr "སྡེ་རིམ་བཞིན།" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 19:47+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 14:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: dz\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467661649.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480602091.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 20:33+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440534790.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 09:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 12:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dz\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462700755.000000\n" +"X-POOTLE-MTIME: 1479126681.000000\n" #: imagemgr.src msgctxt "" @@ -3930,6 +3930,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-14 12:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: dz\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467662083.000000\n" +"X-POOTLE-MTIME: 1479127978.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/dz/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/dz/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/dz/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/dz/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 14:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/el/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-21 16:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:48+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: www.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1485016977.000000\n" +"X-POOTLE-MTIME: 1491994134.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,8 +185,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Πνευματικά δικαιώματα © 2000 - 2016 συντελεστών LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Πνευματικά δικαιώματα © 2000 - 2017 συντελεστών LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/el/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-12 05:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:54+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1484200324.000000\n" +"X-POOTLE-MTIME: 1491994466.000000\n" #: 01120000.xhp msgctxt "" @@ -5678,16 +5678,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/el/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-21 17:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-12 10:54+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: www.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1485020746.000000\n" +"X-POOTLE-MTIME: 1491994480.000000\n" #: 01000000.xhp msgctxt "" @@ -2454,8 +2454,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Επιλέξτε" +msgid "Pick" +msgstr "Επιλογή" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/el/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 21:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:49+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" "Language: el\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481579948.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491994173.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Ιεραρχικά" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Λειτουργία μορφοποίησης γεμίσματος" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Νέα τεχνοτροπία από επιλογή" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Ενημέρωση τεχνοτροπίας" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/el/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-10 09:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:50+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1484041357.000000\n" +"X-POOTLE-MTIME: 1491994252.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,17 +795,17 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"Το %PRODUCTNAME υπόκειται στους όρους της γενικής δημόσιας άδειας Mozilla, έκδοσης 2.0. Ένα αντίγραφο της MPL μπορεί να ληφθεί στο http://mozilla.org/MPL/2.0/.\n" +"Το %PRODUCTNAME υπόκειται στους όρους της γενικής δημόσιας άδειας Mozilla, έκδοσης 2.0. Ένα αντίγραφο της MPL μπορεί να ληφθεί στο http://mozilla.org/MPL/2.0/.\n" "\n" "Πρόσθετες σημειώσεις πνευματικών δικαιωμάτων και όροι άδειας τρίτων που εφαρμόζονται σε μέρη του λογισμικού ορίζονται στο αρχείο LICENSE.html· επιλέξτε την άδεια εμφάνισης για να δείτε ακριβείς λεπτομέρειες στα αγγλικά.\n" "\n" "Όλα τα καταθέντα σήματα που αναφέρονται είναι ιδιοκτησία των αντίστοιχων κατόχων τους.\n" "\n" -"Πνευματικά δικαιώματα © 2000–2016 συντελεστών του LibreOffice. Όλα τα δικαιώματα διατηρούνται.\n" +"Πνευματικά δικαιώματα © 2000–2017 συντελεστών του LibreOffice. Όλα τα δικαιώματα διατηρούνται.\n" "\n" "Αυτό το προϊόν δημιουργήθηκε από τον %OOOVENDOR, με βάση το OpenOffice.org, που είναι πνευματικά δικαιώματα 2000, 2011 της Oracle και/ή των θυγατρικών της. Ο %OOOVENDOR αναγνωρίζει όλα τα μέλη της κοινότητας, παρακαλούμε δείτε http://www.libreoffice.org/ για περισσότερες λεπτομέρειες." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/el/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-15 21:21+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:51+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -12,10 +12,10 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1450214474.000000\n" +"X-POOTLE-MTIME: 1491994280.000000\n" #: addresstemplate.src msgctxt "" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Μορφοποιημένο κείμενο [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/el/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-13 07:31+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:51+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1481614313.000000\n" +"X-POOTLE-MTIME: 1491994286.000000\n" #: imagemgr.src msgctxt "" @@ -3888,6 +3888,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ουγγρικά (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Αγγλικά (Μαλαισία)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/el/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-06 09:49+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:52+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" "Language: el\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481017762.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491994361.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Αδυναμία φόρτωσης όλων των SmartArts. Η αποθήκευση στο Microsoft Office 2010 ή μεταγενέστερα θα απέφευγε αυτό το πρόβλημα." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/el/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/el/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/el/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/el/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2016-12-22 23:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 10:53+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1482449434.000000\n" +"X-POOTLE-MTIME: 1491994414.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5076,16 +5076,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Έ_ξοδος" +msgid "_Restart in Normal Mode" +msgstr "Ε_πανεκκίνηση σε κανονική λειτουργία" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-01 15:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:53+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: none\n" "Language: en_GB\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480607088.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951223.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000–2017 LibreOffice contributors." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-15 14:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-24 14:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484490483.000000\n" +"X-POOTLE-MTIME: 1493045787.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-17 14:13+0000\n" +"PO-Revision-Date: 2017-04-11 22:57+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484662421.000000\n" +"X-POOTLE-MTIME: 1491951449.000000\n" #: 01010000.xhp msgctxt "" @@ -7295,7 +7295,7 @@ "hd_id3146925\n" "help.text" msgid "Formulas" -msgstr "Formulae" +msgstr "Formulae" #: 02100000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/04.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/04.po 2017-05-03 16:46:29.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: 2012-06-21 15:51+0200\n" -"Last-Translator: Stuart \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2017-04-11 22:58+0000\n" +"Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951484.000000\n" #: 01010000.xhp msgctxt "" @@ -617,7 +618,7 @@ "49\n" "help.text" msgid "Toggles the view between fullscreen mode and normal mode in Writer or Calc" -msgstr "Toggles the view between fullscreen mode and normal mode in Writer or Calc" +msgstr "Toggles the view between full-screen mode and normal mode in Writer or Calc" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-17 11:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-24 14:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484652520.000000\n" +"X-POOTLE-MTIME: 1493045792.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Pick" +msgid "Pick" +msgstr "Pick" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-11-13 13:23+0000\n" +"PO-Revision-Date: 2017-04-11 22:59+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447421027.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951553.000000\n" #: analysis.src msgctxt "" @@ -196,7 +196,9 @@ msgid "" "Returns the number of the calendar week in which the specified date occurs.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." -msgstr "Returns the number of the calendar week in which the specified date occurs.This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." +msgstr "" +"Returns the number of the calendar week in which the specified date occurs.\n" +"This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." #: analysis.src msgctxt "" @@ -288,7 +290,9 @@ msgid "" "Returns the number of workdays between two dates.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." -msgstr "Returns the number of workdays between two dates.This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." +msgstr "" +"Returns the number of workdays between two dates.\n" +"This function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead." #: analysis.src msgctxt "" @@ -677,7 +681,9 @@ msgid "" "Returns the greatest common divisor.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." -msgstr "Returns the greatest common divisor.This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." +msgstr "" +"Returns the greatest common divisor.\n" +"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead." #: analysis.src msgctxt "" @@ -706,7 +712,9 @@ msgid "" "Returns the least common multiple.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." -msgstr "Returns the least common multiple.This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." +msgstr "" +"Returns the least common multiple.\n" +"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead." #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-16 16:21+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:53+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479313311.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951239.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchical" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Fill Format Mode" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "New Style from Selection" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Update Style" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-02 00:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:54+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: none\n" "Language: en_GB\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480639503.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951262.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,17 +794,17 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" "%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n" "\n" -"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n" +"Third Party Code Additional copyright notices and licence terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show Licence to see exact details in English.\n" "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-09-09 13:32+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:54+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441805522.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951267.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Formatted text [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-15 17:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:54+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479229498.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951270.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hungarian (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "English (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-27 23:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:54+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482880732.000000\n" +"X-POOTLE-MTIME: 1491951274.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-GB/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-GB/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2016-12-24 00:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-11 22:54+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482539322.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491951281.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Quit" +msgid "_Restart in Normal Mode" +msgstr "_Restart in Normal Mode" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-21 22:10+0000\n" "Last-Translator: dwayne \n" "Language-Team: none\n" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 19:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5719,22 +5719,20 @@ msgstr "Functions" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-05 22:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 20:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-15 13:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467662809.000000\n" +"X-POOTLE-MTIME: 1479215050.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchical" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 20:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 15:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: en_ZA\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467662950.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480605738.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 21:14+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440537292.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-21 22:13+0000\n" "Last-Translator: dwayne \n" "Language-Team: LANGUAGE \n" @@ -3903,6 +3903,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 20:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-15 13:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: en_ZA\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467663502.000000\n" +"X-POOTLE-MTIME: 1479217687.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/en-ZA/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/en-ZA/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 15:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-02 07:30+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1480663845.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Kopirajto © 2000 - 2016 LibreOffice-kontribuintoj." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 19:24+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" @@ -5713,7 +5713,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5721,7 +5721,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 01:25+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-05 23:25+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1480980344.000000\n" #: dialog.src @@ -720,6 +720,30 @@ msgid "Hierarchical" msgstr "Hierarkia" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-05 23:44+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1480981466.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME estas disponebla laŭ la kondiĉoj de la Mozilla Public License Versio 2.0. La (anglalingva) teksto de la MPL-permesilo troviĝas ĉe http://mozilla.org/MPL/2.0/.\n" -"\n" -"Kopirajta informo kaj kondiĉoj de la Triapartia Koda Aldonaĵo, kiuj rilatas al partoj de la Programaro, estas prezentitaj en la dosiero LICENSE.html; elektu Vidigi Permesilon por vidigi la detalojn en la angla lingvo.\n" -"\n" -"Ĉiuj varmarkoj kaj registritaj varmarkoj ĉi tie menciitaj estas propraĵo de iliaj respektivaj posedantoj.\n" -"\n" -"Kopirajto © 2000, 2016 LibreOffice-kontribuintoj. Ĉiuj rajtoj estas rezervitaj.\n" -"\n" -"Ĉi tiun produkton kreis %OOOVENDOR, bazitan sur OpenOffice.org, kies Kopirajton 2000, 2011 posedas Oracle kaj ties filioj. %OOOVENDOR agnoskas ĉiujn komunumanojn. Bonvolu referi al http://www.libreoffice.org/ por pluaj detaloj." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-01 21:35+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LibreOffice Esperanto\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1451684115.000000\n" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-23 01:25+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LibreOffice Esperanto\n" @@ -3888,6 +3888,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hungara runoskribo" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-23 01:12+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eo/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eo/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eo/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eo/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-03 22:42+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: LibreOffice Esperanto\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1483483325.000000\n" @@ -5074,20 +5074,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Ĉesi" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Apliki ŝanĝojn kaj restartigi" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/basic/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/es/basic/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/basic/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-08-26 10:32+0000\n" +"PO-Revision-Date: 2017-04-28 18:59+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1472207569.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493405988.000000\n" #: sb.src msgctxt "" @@ -1214,7 +1214,7 @@ "ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK\n" "string.text" msgid "Error saving BASIC: '$(ARG1)'." -msgstr "Error al guardar BASIC: '$(ARG1)'." +msgstr "Error al guardar BASIC: «$(ARG1)»." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/connectivity/source/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/es/connectivity/source/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/connectivity/source/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/connectivity/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-06-26 21:58+0000\n" +"PO-Revision-Date: 2017-04-28 19:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435355934.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406041.000000\n" #: conn_error_message.src msgctxt "" @@ -368,7 +368,7 @@ "STR_NO_ELEMENT_NAME\n" "string.text" msgid "There is no element named '$name$'." -msgstr "No hay un elmento llamado '$name$'." +msgstr "No hay ningún elemento llamado «$name$»." #: conn_shared_res.src msgctxt "" @@ -400,7 +400,7 @@ "STR_UNKNOWN_COLUMN_NAME\n" "string.text" msgid "The column name '$columnname$' is unknown." -msgstr "El nombre de la columna '$columnname$' es desconocida." +msgstr "Se desconoce el nombre de la columna «$columnname$»." #: conn_shared_res.src msgctxt "" @@ -544,7 +544,7 @@ "STR_COLUMN_NOT_UPDATEABLE\n" "string.text" msgid "The column at position '$position$' could not be updated." -msgstr "La columna en la posición '$position$' no puede ser actualizada." +msgstr "No se puede actualizar la columna en la posición «$position$»." #: conn_shared_res.src msgctxt "" @@ -980,7 +980,7 @@ "STR_UNKNOWN_PARA_TYPE\n" "string.text" msgid "The type of parameter at position '$position$' is unknown." -msgstr "La tipo de parámetro en la posición '$position$' es desconocido." +msgstr "Se desconoce el tipo de parámetro en la posición «$position$»." #: conn_shared_res.src msgctxt "" @@ -988,7 +988,7 @@ "STR_UNKNOWN_COLUMN_TYPE\n" "string.text" msgid "The type of column at position '$position$' is unknown." -msgstr "El tipo de columna en la posición '$position$' es desconocido." +msgstr "Se desconoce el tipo de columna en la posición «$position$»." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-24 04:44+0000\n" +"PO-Revision-Date: 2017-04-17 06:08+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1479962670.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492409282.000000\n" #: cuires.src msgctxt "" @@ -327,7 +327,7 @@ "RID_SVXSTR_HYPDLG_MACROACT2\n" "string.text" msgid "Trigger hyperlink" -msgstr "Ejecutar hiperenlace" +msgstr "Activar hiperenlace" #: hyperdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/source/tabpages.po libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/source/tabpages.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/source/tabpages.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/source/tabpages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-08 11:28+0000\n" +"PO-Revision-Date: 2017-04-25 13:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483874930.000000\n" +"X-POOTLE-MTIME: 1493126011.000000\n" #: border.src msgctxt "" @@ -438,7 +438,7 @@ "RID_SVXSTR_CPTL_STT_WORD\n" "string.text" msgid "Correct TWo INitial CApitals" -msgstr "Corregir DOs MAyúsculas SEguidas" +msgstr "Corregir DOs MAyúsculas INiciales" #: strings.src msgctxt "" @@ -470,7 +470,7 @@ "RID_SVXSTR_DETECT_URL\n" "string.text" msgid "URL Recognition" -msgstr "Reconocer los URL" +msgstr "Reconocer URL" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-20 23:24+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-01 19:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490052282.000000\n" +"X-POOTLE-MTIME: 1493668168.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "© 2000–2017 de los colaboradores de LibreOffice." #: aboutdialog.ui @@ -9730,7 +9730,7 @@ "label\n" "string.text" msgid "_Western characters only" -msgstr "Solo caracteres _occidentales" +msgstr "Solo texto _occidental" #: optasianpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/desktop/source/deployment/registry/script.po libreoffice-l10n-5.3.3~rc2/translations/source/es/desktop/source/deployment/registry/script.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/desktop/source/deployment/registry/script.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/desktop/source/deployment/registry/script.po 2017-05-03 16:46:29.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:01+0100\n" -"PO-Revision-Date: 2011-04-05 20:01+0200\n" -"Last-Translator: Alexandro \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-18 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492490247.000000\n" #: dp_script.src msgctxt "" @@ -21,7 +22,7 @@ "RID_STR_BASIC_LIB\n" "string.text" msgid "%PRODUCTNAME Basic Library" -msgstr "Biblioteca básica de %PRODUCTNAME" +msgstr "Biblioteca de %PRODUCTNAME Basic" #: dp_script.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/filter/source/xsltdialog.po libreoffice-l10n-5.3.3~rc2/translations/source/es/filter/source/xsltdialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/filter/source/xsltdialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/filter/source/xsltdialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-05-27 04:36+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-28 21:52+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369629379.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493416323.000000\n" #: xmlfilterdialogstrings.src msgctxt "" @@ -86,7 +86,7 @@ "STR_ERROR_TYPE_NAME_EXISTS\n" "string.text" msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name." -msgstr "El nombre para la interfaz de usuario '%s1' ya fue utilizado por el filtro XML '%s2'. Introduzca otro nombre." +msgstr "El filtro XML «%s2» ya utiliza el nombre para la interfaz de usuario «%s1». Escoja otro nombre." #: xmlfilterdialogstrings.src msgctxt "" @@ -150,7 +150,7 @@ "STR_FILTER_HAS_BEEN_SAVED\n" "string.text" msgid "The XML filter '%s' has been saved as package '%s'. " -msgstr "El filtro XML '%s' se ha guardado como paquete '%s'. " +msgstr "Se ha guardado el filtro XML «%s» como el paquete «%s». " #: xmlfilterdialogstrings.src msgctxt "" @@ -174,7 +174,7 @@ "STR_FILTER_INSTALLED\n" "string.text" msgid "The XML filter '%s' has been installed successfully." -msgstr "La instalación del filtro XML '%s' ha finalizado." +msgstr "Ha finalizado la instalación del filtro XML «%s» correctamente." #: xmlfilterdialogstrings.src msgctxt "" @@ -190,7 +190,7 @@ "STR_NO_FILTERS_FOUND\n" "string.text" msgid "No XML filter could be installed because the package '%s' does not contain any XML filters." -msgstr "No se ha podido instalar ningún filtro XML porque el paquete '%s' no contiene ningún filtro XML." +msgstr "No se ha podido instalar ningún filtro XML porque el paquete «%s» no contiene ninguno." #: xmlfilterdialogstrings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/forms/source/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/es/forms/source/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/forms/source/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/forms/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 16:53+0000\n" +"PO-Revision-Date: 2017-04-28 19:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481561639.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406045.000000\n" #: strings.src msgctxt "" @@ -274,7 +274,7 @@ "RID_STR_XFORMS_INVALID_CONSTRAINT\n" "string.text" msgid "The constraint '$1' not validated." -msgstr "La limitación '$1' no está validada." +msgstr "La limitación «$1» no está validada." #: xforms.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/formula/source/core/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/es/formula/source/core/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/formula/source/core/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 20:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-28 18:42+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493404942.000000\n" #: core_resource.src msgctxt "" @@ -929,6 +932,15 @@ "SC_OPCODE_ERROR_TYPE\n" "string.text" msgid "ERRORTYPE" +msgstr "TIPO.DE.ERROR.OOO" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_ERROR_TYPE_ODF\n" +"string.text" +msgid "ERROR.TYPE" msgstr "TIPO.DE.ERROR" #: core_resource.src @@ -2447,6 +2459,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_WEIBULL_MS\n" +"string.text" +msgid "WEIBULL.DIST" +msgstr "DISTR.WEIBULL" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_NEG_BINOM_VERT\n" "string.text" msgid "NEGBINOMDIST" @@ -2627,6 +2648,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_T_TEST_MS\n" +"string.text" +msgid "T.TEST" +msgstr "PRUEBA.T.N" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_RANK\n" "string.text" msgid "RANK" @@ -3503,7 +3533,7 @@ "SC_OPCODE_BITLSHIFT\n" "string.text" msgid "BITLSHIFT" -msgstr "BITLSHIFT" +msgstr "BIT.DESPLIZQDA" #: core_resource.src msgctxt "" @@ -3512,7 +3542,7 @@ "SC_OPCODE_ERROR_NULL\n" "string.text" msgid "#NULL!" -msgstr "#NULO!" +msgstr "#¡NULO!" #: core_resource.src msgctxt "" @@ -3521,7 +3551,7 @@ "SC_OPCODE_ERROR_DIVZERO\n" "string.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: core_resource.src msgctxt "" @@ -3530,7 +3560,7 @@ "SC_OPCODE_ERROR_VALUE\n" "string.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: core_resource.src msgctxt "" @@ -3539,7 +3569,7 @@ "SC_OPCODE_ERROR_REF\n" "string.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: core_resource.src msgctxt "" @@ -3548,7 +3578,7 @@ "SC_OPCODE_ERROR_NAME\n" "string.text" msgid "#NAME?" -msgstr "#NOMBRE?" +msgstr "#¿NOMBRE?" #: core_resource.src msgctxt "" @@ -3557,7 +3587,7 @@ "SC_OPCODE_ERROR_NUM\n" "string.text" msgid "#NUM!" -msgstr "#NUM!" +msgstr "#¡NUM!" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/fpicker/source/office.po libreoffice-l10n-5.3.3~rc2/translations/source/es/fpicker/source/office.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/fpicker/source/office.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/fpicker/source/office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2015-09-05 07:56+0000\n" +"PO-Revision-Date: 2017-04-28 18:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441439796.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493405077.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -22,7 +22,7 @@ "STR_SVT_FILEPICKER_AUTO_EXTENSION\n" "string.text" msgid "~Automatic file name extension" -msgstr "Extensión de archivo ~automática" +msgstr "~Extensión de nombre de archivo automática" #: OfficeFilePicker.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-23 07:03+0000\n" +"PO-Revision-Date: 2017-04-17 06:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490252637.000000\n" +"X-POOTLE-MTIME: 1492409257.000000\n" #: 00000002.xhp msgctxt "" @@ -34781,7 +34781,7 @@ "44\n" "help.text" msgid "Trigger Hyperlink" -msgstr "Ejecutar hiperenlace" +msgstr "Activar hiperenlace" #: 05060700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-25 22:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 18:42+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490479541.000000\n" +"X-POOTLE-MTIME: 1493404938.000000\n" #: 01120000.xhp msgctxt "" @@ -2778,7 +2778,7 @@ "par_id3156441\n" "help.text" msgid "You can also set the view of the column and row headers in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - View." -msgstr "Asimismo, es posible establecer la visualización de los encabezamientos de filas y columnas en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME Calc ▸ Ver." +msgstr "Asimismo, es posible establecer la visualización de las cabeceras de filas y columnas en %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME Calc ▸ Ver." #: 03080000.xhp msgctxt "" @@ -4711,7 +4711,7 @@ "105\n" "help.text" msgid "DGET returns the contents of the referenced cell in a database which matches the specified search criteria. In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found." -msgstr "BDEXTRAER devuelve el contenido de la celda a la que se hace referencia en una base de datos que coincide con los criterios de búsqueda especificados. Si se detecta un error, la función devuelve #VALOR! si no se encuentra ninguna fila, o Err502 si se encuentra más de una celda." +msgstr "BDEXTRAER devuelve el contenido de la celda a la que se hace referencia en una base de datos que coincide con los criterios de búsqueda especificados. Si se detecta un error, la función devuelve #¡VALOR! si no se encuentra ninguna fila, o Err502 si se encuentra más de una celda." #: 04060101.xhp msgctxt "" @@ -5662,7 +5662,7 @@ "par_id3150654\n" "help.text" msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings." -msgstr "" +msgstr "Cuando escriba fechas como parte de las fórmulas, las barras y los guiones que se usen como separadores de fechas se interpretarán como operadores aritméticos. Por este motivo, las fechas formateadas de este modo no se reconocen como tales y producen cálculos erróneos. Para evitar que las fechas se interpreten como parte de las fórmulas, utilice la fórmula FECHA —p. ej., FECHA(1954;7;20)—, o bien, entrecomíllela y ordene sus componentes según la notación ISO 8601 —p. ej., \"1954-07-20\"—. Evite utilizar formatos regionales de fechas, como «07/20/54», porque estos pueden conllevar a errores de cálculo si abre el documento en sistemas con una configuración regional distinta." #: 04060102.xhp msgctxt "" @@ -5677,7 +5677,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5685,7 +5685,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp @@ -9825,7 +9825,7 @@ "par_id3519089\n" "help.text" msgid "=N(1/0) returns #DIV/0!" -msgstr "=N(1/0) devuelve #DIV/0!" +msgstr "=N(1/0) devuelve #¡DIV/0!" #: 04060104.xhp msgctxt "" @@ -10217,7 +10217,7 @@ "par_id3151069\n" "help.text" msgid "TYPE" -msgstr "TIPO" +msgstr "TYPE" #: 04060104.xhp msgctxt "" @@ -16863,7 +16863,7 @@ "par_id3152876\n" "help.text" msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:" -msgstr "También se puede crear una fórmula «normal» cuyo intervalo de referencia, como los parámetros, indique una fórmula matricial. El resultado se obtiene a partir de la intersección del intervalo de referencia y de las filas o columnas en las que se encuentra la fórmula. Si no hay intersección o si el intervalo de la intersección abarca varias filas o columnas se mostrará un mensaje de error #VALOR! En el ejemplo siguiente se ilustra este concepto:" +msgstr "También se puede crear una fórmula «normal» cuyo intervalo de referencia, como los parámetros, indique una fórmula matricial. El resultado se obtiene a partir de la intersección del intervalo de referencia y de las filas o columnas en las que se encuentra la fórmula. Si no hay intersección o si el intervalo de la intersección abarca varias filas o columnas se mostrará un mensaje de error #¡VALOR! En el ejemplo siguiente se ilustra este concepto:" #: 04060107.xhp msgctxt "" @@ -17463,7 +17463,7 @@ "par_idN10E6A\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: 04060107.xhp msgctxt "" @@ -20473,7 +20473,7 @@ "bm_id3153114\n" "help.text" msgid "ERRORTYPE function" -msgstr "Función TIPO.DE.ERROR" +msgstr "Función TIPO.DE.ERROR.OOO" #: 04060109.xhp msgctxt "" @@ -20482,7 +20482,7 @@ "38\n" "help.text" msgid "ERRORTYPE" -msgstr "TIPO.DE.ERROR" +msgstr "TIPO.DE.ERROR.OOO" #: 04060109.xhp msgctxt "" @@ -20518,7 +20518,7 @@ "42\n" "help.text" msgid "ERRORTYPE(Reference)" -msgstr "TIPO.DE.ERROR(referencia)" +msgstr "TIPO.DE.ERROR.OOO(Referencia)" #: 04060109.xhp msgctxt "" @@ -20545,7 +20545,7 @@ "45\n" "help.text" msgid "If cell A1 displays Err:518, the function =ERRORTYPE(A1) returns the number 518." -msgstr "Si la celda A1 muestra el Error:518, la función =TIPO.DE.ERROR(A1) devuelve el número 518." +msgstr "Si la celda A1 muestra el Error:518, la función =TIPO.DE.ERROR.OOO(A1) devuelve el número 518." #: 04060109.xhp msgctxt "" @@ -36948,7 +36948,7 @@ "266\n" "help.text" msgid "BITLSHIFT" -msgstr "BITLSHIFT" +msgstr "BIT.DESPLIZQDA" #: 04060120.xhp msgctxt "" @@ -36975,7 +36975,7 @@ "269\n" "help.text" msgid "BITLSHIFT(number; shift)" -msgstr "BITLSHIFT( número ; desplazamiento )" +msgstr "BIT.DESPLIZQDA(número; desplazamiento)" #: 04060120.xhp msgctxt "" @@ -37011,7 +37011,7 @@ "278\n" "help.text" msgid "=BITLSHIFT(6;1) returns 12 (0110 << 1 = 1100)." -msgstr "=BITLSHIFT(6;1) devuelve 12 (0110 << 1 = 1100)." +msgstr "=BIT.DESPLIZQDA(6;1) devuelve 12 (0110 << 1 = 1100)." #: 04060120.xhp msgctxt "" @@ -37073,7 +37073,7 @@ "170\n" "help.text" msgid "Shift is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)." -msgstr "Desplazamiento es la cantidad de posiciones que los bits se desplazarán hacia la derecha. Si el desplazamiento es negativo, es equivalente a BITLSHIFT (número; -desplazamiento)." +msgstr "Desplazamiento es la cantidad de posiciones que los bits se desplazarán hacia la derecha. Si el desplazamiento es negativo, es equivalente a BIT.DESPLIZQDA (número; -desplazamiento)." #: 04060120.xhp msgctxt "" @@ -43914,7 +43914,7 @@ "629\n" "help.text" msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value." -msgstr "Si el conjunto de datos no contiene ningún duplicado, MODA.UNO devuelve el valor de error #VALOR!" +msgstr "Si el conjunto de datos no contiene ningún duplicado, MODA.UNO devuelve el valor de error #¡VALOR!" #: 04060184.xhp msgctxt "" @@ -48193,7 +48193,7 @@ "129\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir de una muestra." +msgstr "Estima la varianza a partir de una muestra." #: 04060185.xhp msgctxt "" @@ -48264,7 +48264,7 @@ "129\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir de una muestra." +msgstr "Estima la varianza a partir de una muestra." #: 04060185.xhp msgctxt "" @@ -48877,7 +48877,7 @@ "bm_id3150941\n" "help.text" msgid "WEIBULL function" -msgstr "DIST.WEIBULL" +msgstr "función DIST.WEIBULL" #: 04060185.xhp msgctxt "" @@ -48919,7 +48919,7 @@ "par_id0305200911372743\n" "help.text" msgid "If C is 1, WEIBULL calculates the cumulative distribution function." -msgstr "Si C es 1, DIST.WEIBULL calcula la función de distribución acumulativa." +msgstr "Si C es 1, DIST.WEIBULL calcula la función de distribución acumulada." #: 04060185.xhp msgctxt "" @@ -48937,7 +48937,7 @@ "178\n" "help.text" msgid "WEIBULL(Number; Alpha; Beta; C)" -msgstr "DIST.WEIBULL(x; alfa ; beta ; acumulado)" +msgstr "DIST.WEIBULL(Número; Alfa; Beta; C)" #: 04060185.xhp msgctxt "" @@ -51094,7 +51094,7 @@ "4\n" "help.text" msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose Format - Column - Show. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose Format - Column - Show. Proceed the same way with rows." -msgstr "Por ejemplo, para mostrar la columna B, pulse en el encabezamiento de la columna A, expanda la selección a la columna C y elija Formato - Columna - Mostrar. Para mostrar la columna A ocultada anteriormente, pulse en el encabezamiento de la columna B, mantenga oprimido el botón del ratón y arrastre hacia la izquierda. El intervalo seleccionado mostrado en el área de nombres cambiará de B1:B1048576 a A1:B1048576. Elija Formato - Columna - Mostrar. Proceda de la misma manera con las filas." +msgstr "Por ejemplo, para mostrar la columna B, pulse en la cabecera de la columna A, expanda la selección a la columna C y vaya a Formato ▸ Columna ▸ Mostrar. Para mostrar la columna A ocultada anteriormente, pulse en la cabecera de la columna B, mantenga oprimido el botón del ratón y arrastre hacia la izquierda. El intervalo seleccionado mostrado en el área de nombres cambiará de B1:B1048576 a A1:B1048576. Vaya a Formato ▸ Columna ▸ Mostrar. Proceda de la misma manera con las filas." #: 05030400.xhp msgctxt "" @@ -58739,7 +58739,7 @@ "par_idN105C8\n" "help.text" msgid "Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies." -msgstr "Seleccione la jerarquía que desee utilizar. El Piloto de datos debe basarse en datos de origen externo que contengan jerarquías de datos." +msgstr "Seleccione la jerarquía que desee utilizar. La tabla dinámica debe basarse en datos de origen externo que contengan jerarquías de datos." #: 12090200.xhp msgctxt "" @@ -58800,7 +58800,7 @@ "2\n" "help.text" msgid "Deletes the selected pivot table." -msgstr "Borra las tabla seleccionada del Piloto de datos." +msgstr "Elimina la tabla dinámica seleccionada." #: 12090400.xhp msgctxt "" @@ -60028,7 +60028,7 @@ "par_id040320161859450\n" "help.text" msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations.
The time line values must have a consistent step between them.
If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error.
If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.
If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error." -msgstr "No es necesario que el plazo esté ordenado, ya que las funciones lo ordenarán para realizar los cálculos.
Los avances entre los valores del plazo deben ser uniformes.
Si no se puede identificar un avance constante en el plazo ordenado, las funciones devolverán el error #NUM!
Si los intervalos del plazo y los valores históricos no tienen el mismo tamaño, las funciones devolverán el error #N/A.
Si el plazo contiene menos de dos períodos de datos, las funciones devolverán el error #VALOR!" +msgstr "No es necesario que el plazo esté ordenado, ya que las funciones lo ordenarán para realizar los cálculos.
Los avances entre los valores del plazo deben ser uniformes.
Si no se puede identificar un avance constante en el plazo ordenado, las funciones devolverán el error #¡NUM!
Si los intervalos del plazo y los valores históricos no tienen el mismo tamaño, las funciones devolverán el error #N/A.
Si el plazo contiene menos de dos períodos de datos, las funciones devolverán el error #¡VALOR!" #: exponsmooth_embd.xhp msgctxt "" @@ -60252,7 +60252,7 @@ "par_id0503201619582644\n" "help.text" msgid "With values <= 0 or >= 1, the functions will return the #NUM! Error." -msgstr "Con valores menores o iguales que 0 o mayores o iguales que 1, las funciones devolverán el error #NUM!" +msgstr "Con valores menores o iguales que 0 o mayores o iguales que 1, las funciones devolverán el error #¡NUM!" #: exponsmooth_embd.xhp msgctxt "" @@ -60268,7 +60268,7 @@ "par_id0603201609412399\n" "help.text" msgid "A value of 1 indicates that Calc is to determine the number of samples in a period automatically.
A value of 0 indicates no periodic effects, a forecast is calculated with EDS algorithms.
For all other positive values, forecasts are calculated with ETS algorithms.
For values that not being a positive whole number, the functions will return the #NUM! Error." -msgstr "Un valor de 1 indica que Calc determina el número de muestras en un periodo automáticamente.
Un valor 0 indica que no tiene efectos periodicos, se calcula una previsión con algoritmos EDS.
Para todos los demás valores positivos las previsiones se calculan con algoritmos ETS.
Para valores que no sean un número positivo las funciones devuelven el error #NUM!." +msgstr "Un valor de 1 indica que Calc determinará el número de muestras del período automáticamente.
Un valor de 0 indica que no existen efectos periódicos y que cualquier previsión se habrá de calcular con el algoritmo EDS.
Para el resto de los valores positivos, las previsiones se calcularán con el algoritmo ETS.
Para valores que no sean enteros positivos, la función devuelve el error #¡NUM!" #: exponsmooth_embd.xhp msgctxt "" @@ -60860,7 +60860,7 @@ "par_id27530261624700\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: func_aggregate.xhp msgctxt "" @@ -60876,7 +60876,7 @@ "id_par29987248418152\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: func_aggregate.xhp msgctxt "" @@ -61036,7 +61036,7 @@ "par_id278275053653\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.
If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error." -msgstr "Si en el intervalo de valores para calcular la media hay una celda vacía o que contiene texto, la función PROMEDIO.SI la ignorará.
Si todo el intervalo está vacío, contiene solo texto o ninguno de los valores satisfacen la condición (o cualquier combinación de estas circunstancias), la función devolverá el error #DIV/0!." +msgstr "Si en el intervalo de valores para calcular la media hay una celda vacía o que contiene texto, la función PROMEDIO.SI la ignorará.
Si todo el intervalo está vacío, contiene solo texto o ninguno de los valores satisfacen la condición (o cualquier combinación de estas circunstancias), la función devolverá el error #¡DIV/0!" #: func_averageif.xhp msgctxt "" @@ -61372,7 +61372,7 @@ "par_id51531273215056\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, the function AVERAGEIFS ignores this cell.
If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero).
If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error.
If the range of values for calculating the mean and any range for finding criterion have unequal sizes, the function returns err:502." -msgstr "Si una celda en un intervalo de valores para calcular el promedio está vacío o contiene texto, la función PROMEDIO.SI.CONJUNTO ignora esa celda.
Si una celda contiene Verdadero se trata como 1; si contiene Falso se trata como 0 (cero).
Si el intervalo completo está vacío, contiene solo texto o ninguno de sus valores (o alguna combinación de lo anterior) satisface la condición, la función devuelve el error #DIV/0!
Si el intervalo o los valores para el cálculo del promedio y cualquier intervalo para encontrar el criterio tienen tamaños diferentes, la función devuelve err:502." +msgstr "Si una celda en un intervalo de valores para calcular el promedio está vacío o contiene texto, la función PROMEDIO.SI.CONJUNTO ignora esa celda.
Si una celda contiene Verdadero se trata como 1; si contiene Falso se trata como 0 (cero).
Si el intervalo completo está vacío, contiene solo texto o ninguno de sus valores (o alguna combinación de lo anterior) satisface la condición, la función devuelve el error #¡DIV/0!
Si el intervalo o los valores para el cálculo del promedio y cualquier intervalo para encontrar el criterio tienen tamaños diferentes, la función devuelve err:502." #: func_averageifs.xhp msgctxt "" @@ -61620,7 +61620,7 @@ "par_id462646264626\n" "help.text" msgid "Returns the count of rows or columns that meet criteria in multiple ranges." -msgstr "Devuelve el número de filas o columnas que cumplen el criterio en múltiples rangos" +msgstr "Devuelve el número de filas o columnas que cumplen con criterios en varios intervalos." #: func_countifs.xhp msgctxt "" @@ -62868,7 +62868,7 @@ "tit\n" "help.text" msgid "ERROR.TYPE function" -msgstr "TIPO.DE.ERROR" +msgstr "Función TIPO.DE.ERROR" #: func_error_type.xhp msgctxt "" @@ -62908,7 +62908,7 @@ "par_id1861223540440\n" "help.text" msgid "ERROR.TYPE(Error_value)" -msgstr "TIPO.DE.ERROR (Valor_error)" +msgstr "TIPO.DE.ERROR(Valor_error)" #: func_error_type.xhp msgctxt "" @@ -62948,7 +62948,7 @@ "par_id121020152053148760\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: func_error_type.xhp msgctxt "" @@ -62956,7 +62956,7 @@ "par_id121020152053296785\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: func_error_type.xhp msgctxt "" @@ -62964,7 +62964,7 @@ "par_id121020152053329868\n" "help.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: func_error_type.xhp msgctxt "" @@ -62972,7 +62972,7 @@ "par_id121020152053353976\n" "help.text" msgid "#NAME?" -msgstr "#NOMBRE?" +msgstr "#¿NOMBRE?" #: func_error_type.xhp msgctxt "" @@ -62980,7 +62980,7 @@ "par_id121020152053408216\n" "help.text" msgid "#NUM!" -msgstr "#NUM!" +msgstr "#¡NUM!" #: func_error_type.xhp msgctxt "" @@ -63028,7 +63028,7 @@ "par_id15812966716957\n" "help.text" msgid "=ERROR.TYPE(#N/A)" -msgstr "=TIPO.DE.ERROR (#N/A)" +msgstr "=TIPO.DE.ERROR(#N/D)" #: func_error_type.xhp msgctxt "" @@ -63044,7 +63044,7 @@ "par_id1047088636291\n" "help.text" msgid "=ERROR.TYPE(A3)" -msgstr "=TIPO.DE.ERROR (A3)" +msgstr "=TIPO.DE.ERROR(A3)" #: func_error_type.xhp msgctxt "" @@ -63052,7 +63052,7 @@ "par_id24308515918391\n" "help.text" msgid "If A3 contains an expression equivalent to the division by zero, the function returns 2, because 2 is the index number of the error value #DIV/0!" -msgstr "Si A3 contiene una expresión equivalente a la división por cero, la función devuelve 2 porque 2 es el número del índice del valor del error #DIV/0!" +msgstr "Si A3 contiene una expresión equivalente a la división por cero, la función devuelve 2 porque 2 es el número del índice del valor del error #¡DIV/0!" #: func_error_type.xhp msgctxt "" @@ -63092,7 +63092,7 @@ "par_id26251175451270\n" "help.text" msgid "If the ERROR.TYPE function is used as condition of the IF function and the ERROR.TYPE returns #N/A, the IF function returns #N/A as well. Use ISERROR to avoid it as shown in the example above." -msgstr "Si se usa la función TIPO.DE.ERROR como condición de la función SI y el TIPO.DE.ERROR devuelve #N/A, la función SI devuelve #N/A también. Se debe utilizar ESERROR para evitarlo, como se muestra en el ejemplo anterior." +msgstr "Si se usa la función TIPO.DE.ERROR como condición de la función SI y el TIPO.DE.ERROR devuelve #N/D, la función SI devuelve #N/D también. Se debe utilizar ESERROR para evitarlo, como se muestra en el ejemplo anterior." #: func_error_type.xhp msgctxt "" @@ -63108,7 +63108,7 @@ "par_id312932390024933\n" "help.text" msgid "Error codes" -msgstr "" +msgstr "Códigos de error" #: func_forecastetsadd.xhp msgctxt "" @@ -69134,7 +69134,7 @@ "par_id1003080\n" "help.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: statistics.xhp msgctxt "" @@ -69566,7 +69566,7 @@ "par_id1003870\n" "help.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: statistics.xhp msgctxt "" @@ -69582,7 +69582,7 @@ "par_id1003900\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" @@ -69598,7 +69598,7 @@ "par_id1003920\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" @@ -69622,7 +69622,7 @@ "par_id1003960\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" @@ -69902,7 +69902,7 @@ "par_id1701201618090553\n" "help.text" msgid "R^2" -msgstr "R^2" +msgstr "R²" #: statistics_regression.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-09-08 13:07+0000\n" +"PO-Revision-Date: 2017-04-28 19:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1473340043.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406592.000000\n" #: 02140000.xhp msgctxt "" @@ -188,7 +188,7 @@ "12\n" "help.text" msgid "503
#NUM!" -msgstr "503
#NUM!" +msgstr "503
#¡NUM!" #: 02140000.xhp msgctxt "" @@ -674,7 +674,7 @@ "78\n" "help.text" msgid "525
#NAME?" -msgstr "525
#NOMBRE?" +msgstr "525
#¿NOMBRE?" #: 02140000.xhp msgctxt "" @@ -683,7 +683,7 @@ "79\n" "help.text" msgid "invalid names (instead of Err:525 cell contains #NAME?)" -msgstr "Nombre no válido (en la celda no aparece Err:525, sino #NOMBRE?)" +msgstr "Nombre no válido (en la celda no aparece Err:525, sino #¿NOMBRE?)" #: 02140000.xhp msgctxt "" @@ -692,7 +692,7 @@ "80\n" "help.text" msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found." -msgstr "No se ha podido evaluar un identificador; por ejemplo, no hay referencia válida, nombre de dominio válido, etiqueta de columna/fila, macro, separador de decimales incorrecto, no se ha encontrado add-in." +msgstr "No se ha podido evaluar un identificador; por ejemplo, no hay referencia válida, nombre de dominio válido, etiqueta de columna/fila, macro, el separador de decimales es incorrecto, no se ha encontrado el complemento." #: 02140000.xhp msgctxt "" @@ -754,7 +754,7 @@ "par_id5324564\n" "help.text" msgid "532
#DIV/0!" -msgstr "532
#DIV/0!" +msgstr "532
#¡DIV/0!" #: 02140000.xhp msgctxt "" @@ -867,7 +867,7 @@ "par_id4086428\n" "help.text" msgid "Generate #VALUE! error: Text found where numeric data is expected will generate #VALUE! error. Example: \"123.45\" will generate a #VALUE! error, while 123.45 not." -msgstr "Generar error #VALOR!: si se halla texto donde se esperarían datos numéricos, se generará un error #VALOR! Por ejemplo: \"123.45\" producirá un error #VALOR!, mientras que 123.45 no." +msgstr "Generar error #¡VALOR!: si se halla texto donde se esperarían datos numéricos, se generará un error #¡VALOR! Por ejemplo: \"123.45\" producirá un error #¡VALOR!, mientras que 123.45 no." #: OpenCL_options.xhp msgctxt "" @@ -883,7 +883,7 @@ "par_id3067110\n" "help.text" msgid "Convert only if unambiguous: If the text represents a valid and unambiguous numeric value, convert it. Example: \"123.456\" will generate a #VALUE! error because the text contains a separator, while \"123456\" will not." -msgstr "" +msgstr "Convertir solo si no hay ambigüedad: si el texto representa un valor numérico válido e inequívoco, se convertirá. Por ejemplo: \"123,456\" generará el error #¡VALOR! debido a que contiene un separador, mientras que \"123456\" no lo hará." #: OpenCL_options.xhp msgctxt "" @@ -907,7 +907,7 @@ "par_id9094515\n" "help.text" msgid "This option determines how an empty string is treated when used in arithmetic operations. If you have set \"Conversion from text to number\" to either \"Generate #VALUE! error\" or \"Treat as zero\", you cannot choose (here) if conversion of an empty string to a number will generate an error or if it will treat empty strings as zero. Otherwise this option determines how empty strings are treated." -msgstr "Esta opción determina cómo es tratada una cadena de texto vacía cuando se usa en operaciones aritméticas. Si se definió la opción «Conversión de texto a número» a «Generar error #VALOR!» o «Tratar como cero», no se puede elegir (aquí) si la conversión de una cadena vacía a número generará un error o se tratará como un cero. En caso contrario, esta opción determina cómo se tratan las cadenas vacías." +msgstr "Esta opción determina cómo es tratada una cadena de texto vacía cuando se usa en operaciones aritméticas. Si se definió la opción «Conversión de texto a número» a «Generar error #¡VALOR!» o «Tratar como cero», no se puede elegir (aquí) si la conversión de una cadena vacía a número generará un error o se tratará como un cero. En caso contrario, esta opción determina cómo se tratan las cadenas vacías." #: OpenCL_options.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-25 22:05+0000\n" +"PO-Revision-Date: 2017-04-28 19:14+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490479558.000000\n" +"X-POOTLE-MTIME: 1493406892.000000\n" #: address_auto.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "40\n" "help.text" msgid "Choose Sheet - Link to External Data. The External Data dialog appears." -msgstr "" +msgstr "Diríjase a Hoja ▸ Enlazar con datos externos. Verá el cuadro de diálogo Datos externos." #: cellreferences_url.xhp msgctxt "" @@ -4137,7 +4137,7 @@ "bm_id3150448\n" "help.text" msgid "pivot table function; introductionDataPilot, see pivot table function" -msgstr "Piloto de datos;introduccióntabla dinámica, véase Piloto de datos" +msgstr "función de tabla dinámica; introducciónPiloto de datos, consulte función Tabla dinámica" #: datapilot.xhp msgctxt "" @@ -4164,7 +4164,7 @@ "9\n" "help.text" msgid "A table that has been created as a pivot table is an interactive table. Data can be arranged, rearranged or summarized according to different points of view." -msgstr "Las tablas creadas mediante el Piloto de datos son interactivas. Los datos se pueden disponer, redistribuir o resumir según distintos puntos de vista." +msgstr "Las tablas dinámicas son interactivas. Los datos se pueden disponer, redistribuir o resumir según distintos puntos de vista." #: datapilot_createtable.xhp msgctxt "" @@ -4446,7 +4446,7 @@ "par_id3150441\n" "help.text" msgid "Click the Filter button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the Filter command. The Filter dialog appears. Here you can filter the pivot table." -msgstr "Haga clic en el botón Filtro de la hoja para abrir el diálogo de condiciones de filtro. Otra posibilidad es abrir el menú contextual de la tabla del Piloto de datos y seleccionar el comando Filtrar. Se abre el diálogo Filtro. Puede utilizar dicho diálogo para filtrar la tabla del Piloto de datos." +msgstr "Pulse en el botón Filtro de la hoja para abrir el cuadro de diálogo de condiciones de filtro. Otra posibilidad es abrir el menú contextual de la tabla dinámica y seleccionar la orden Filtrar. Se abrirá el cuadro de diálogo Filtro. Puede utilizar dicho cuadro para filtrar la tabla dinámica." #: datapilot_filtertable.xhp msgctxt "" @@ -4550,7 +4550,7 @@ "par_idN10643\n" "help.text" msgid "Grouping Pivot Tables" -msgstr "Agrupar tablas del Piloto de datos" +msgstr "Agrupar tablas dinámicas" #: datapilot_grouping.xhp msgctxt "" @@ -4558,7 +4558,7 @@ "par_idN10661\n" "help.text" msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result." -msgstr "La tabla del Piloto de datos resultante puede contener múltiples entradas distintas. Al agrupar las entradas, puede mejorar el resultado visible." +msgstr "La tabla dinámica resultante puede contener múltiples entradas distintas. Al agrupar las entradas, puede mejorar el resultado visible." #: datapilot_grouping.xhp msgctxt "" @@ -4582,7 +4582,7 @@ "par_idN1066E\n" "help.text" msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two Grouping dialogs, either for numeric values, or for date values." -msgstr "En función del formato de las celdas seleccionadas, se agrega un nuevo campo de grupo a la tabla del Piloto de datos, o se muestra uno de los dos diálogos Agrupación, para valores numéricos o para valores de datos." +msgstr "En función del formato de las celdas seleccionadas, se añade un campo de grupo nuevo a la tabla dinámica, o se muestra uno de los dos cuadros de diálogo Agrupación, bien para valores numéricos o para valores de datos." #: datapilot_grouping.xhp msgctxt "" @@ -4641,7 +4641,7 @@ "21\n" "help.text" msgid "You can select a named range in which the pivot table is to be created, from the Results to box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the Results to box. You can also click on the appropriate cell to have the coordinates entered accordingly." -msgstr "En el listado Resultado en es posible seleccionar un área ya dotada de nombre en la cual colocar la hoja de cálculo del Piloto de datos. Si esta área carece de nombre, escriba las coordenadas de la celda superior izquierda del área en el campo que se muestra a la derecha del listado Resultado en. También puede pulsar en la celda para insertar directamente las coordenadas." +msgstr "En el listado Resultado en es posible seleccionar un intervalo ya dotado de nombre en el cual colocar la tabla dinámica. Si este intervalo carece de nombre, escriba las coordenadas de la celda superior izquierda del intervalo en el campo que se muestra a la derecha del listado Resultado en. También puede pulsar en la celda para insertar directamente las coordenadas." #: datapilot_tipps.xhp msgctxt "" @@ -4650,7 +4650,7 @@ "23\n" "help.text" msgid "If you mark the Ignore empty rows check box, they will not be taken into account when the pivot table is created." -msgstr "Si selecciona la casilla de verificación Ignorar las filas vacías, éstas no se tendrán en cuenta para la creación de la tabla de Piloto de datos." +msgstr "Si activa la casilla Ignorar filas vacías, estas no se tendrán en cuenta para la creación de la tabla dinámica." #: datapilot_tipps.xhp msgctxt "" @@ -4659,7 +4659,7 @@ "24\n" "help.text" msgid "If the Identify categories check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created." -msgstr "Si selecciona la casilla Identificar las categorías, éstas quedarán identificadas mediante sus encabezados y asignadas según corresponda al crear la tabla de Piloto de datos." +msgstr "Si selecciona la casilla Identificar categorías, estas quedarán identificadas mediante sus títulos y asignadas según corresponda al crear la tabla dinámica." #: datapilot_updatetable.xhp msgctxt "" @@ -7868,7 +7868,7 @@ "5\n" "help.text" msgid "Applying Multiple Operations" -msgstr "Aplicar una operación múltiple" +msgstr "Aplicar operaciones múltiples" #: multioperation.xhp msgctxt "" @@ -8444,7 +8444,7 @@ "par_id0908200901265127\n" "help.text" msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error." -msgstr "Calc convierte el texto en las celdas a los valores numéricos respectivos si es posible una conversión sin ambigüedades. Si no es posible realizar ninguna conversión, Calc muestra un error #VALOR!" +msgstr "Calc convierte el texto en las celdas a los valores numéricos respectivos si es posible una conversión sin ambigüedades. Si no es posible realizar ninguna conversión, Calc muestra un error #¡VALOR!" #: numbers_text.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-25 22:08+0000\n" +"PO-Revision-Date: 2017-03-31 17: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490479690.000000\n" +"X-POOTLE-MTIME: 1490982182.000000\n" #: 03010000.xhp msgctxt "" @@ -1445,7 +1445,7 @@ "par_id180820161539033867\n" "help.text" msgid "Mean Value Lines are special trend lines that show the mean value. Use Insert - Mean Value Lines to insert mean value lines for data series." -msgstr "" +msgstr "Las líneas de valor medio son líneas de tendencia especiales que muestran el valor medio. Vaya a Insertar ▸ Líneas de valor medio para insertar líneas de valor medio para cada serie de datos." #: 04050100.xhp msgctxt "" @@ -1453,7 +1453,7 @@ "par_id9337443\n" "help.text" msgid "To delete a trend line or mean value line, click the line, then press the Del key." -msgstr "" +msgstr "Para eliminar una curva de regresión o una línea de valores medios, pulse en la línea y oprima la tecla Supr." #: 04050100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-26 00:45+0000\n" +"PO-Revision-Date: 2017-04-30 12:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490489107.000000\n" +"X-POOTLE-MTIME: 1493553926.000000\n" #: 00000001.xhp msgctxt "" @@ -897,7 +897,7 @@ "bm_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "Mapa de imágenes desde el cliente" +msgstr "Mapa de imagen del lado cliente" #: 00000002.xhp msgctxt "" @@ -3394,7 +3394,7 @@ "236\n" "help.text" msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import." -msgstr "$[officename] importa y exporta referencias a secciones eliminadas, por ejemplo una columna a la que se hacía referencia. Se puede ver la fórmula completa durante el proceso de exportación; la referencia eliminada lleva una indicación (#REF!) sobre la referencia. Durante el proceso de exportación, se crea una marca de identificación #REF! para la referencia." +msgstr "$[officename] importa y exporta referencias a secciones eliminadas, por ejemplo una columna a la que se hacía referencia. Se puede ver la fórmula completa durante el proceso de exportación; la referencia eliminada lleva una indicación (#¡REF!) sobre la referencia. Durante el proceso de exportación, se crea una marca de identificación #¡REF! para la referencia." #: 00000020.xhp msgctxt "" @@ -13055,7 +13055,7 @@ "8\n" "help.text" msgid "Open context menu of a row header in a database table - choose Table Format" -msgstr "Menú contextual de un encabezamiento de columna de una tabla de base de datos abierta - Formateado de tabla..." +msgstr "Abra el menú contextual de la cabecera de una fila de una tabla de base de datos y seleccione Formato de tabla" #: 00040503.xhp msgctxt "" @@ -13064,7 +13064,7 @@ "33\n" "help.text" msgid "Open context menu of a column header in a database table - choose Column Format" -msgstr "Menú contextual de un encabezamiento de columna de una tabla de base de datos abierta - Formateado de columnas..." +msgstr "Abra el menú contextual de la cabecera de una columna de una tabla de base de datos y seleccione Formato de columna" #: 00040503.xhp msgctxt "" @@ -13073,7 +13073,7 @@ "34\n" "help.text" msgid "Context menu for a row header in an open database table - Delete Rows" -msgstr "Menú contextual de un encabezamiento de fila de una tabla de base de datos abierta - Borrar filas" +msgstr "Abra el menú contextual de la cabecera de una fila de una tabla de base de datos abierta y seleccione Eliminar filas" #: 00040503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-29 11:25+0000\n" +"PO-Revision-Date: 2017-04-28 19:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490786723.000000\n" +"X-POOTLE-MTIME: 1493407105.000000\n" #: 01010000.xhp msgctxt "" @@ -3105,7 +3105,7 @@ "bm_id3153383\n" "help.text" msgid "documents; exportingconverting; $[officename] documentsexporting;to foreign formats" -msgstr "documentos;exportarconvertir;documentos de $[officename]exportar;a formatos externostipos de documentos;modificar" +msgstr "documentos;exportarconvertir;documentos de $[officename]exportar;a formatos externos" #: 01070001.xhp msgctxt "" @@ -6692,7 +6692,7 @@ "3\n" "help.text" msgid " To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet. " -msgstr " Para seleccionar todas las celdas de una hoja pulse en la intersección de los encabezamientos de fila y columna, en la esquina superior izquierda de la hoja. " +msgstr "Para seleccionar todas las celdas de una hoja, pulse en la intersección de las cabeceras de las filas y las columnas, en la esquina superior izquierda de la hoja." #: 02090000.xhp msgctxt "" @@ -7834,7 +7834,7 @@ "208\n" "help.text" msgid "For certain symbol fonts the code for special characters may depend on the used font. You can view the codes by choosing Insert - Special Character." -msgstr "Para algunas fuentes de símbolos el código de caracteres especiales puede depender de la fuente utilizada. Usted puede ver los códigos seleccionando Insertar - Carácter especial." +msgstr "En algunos tipos de letra de símbolos, los códigos de algunos caracteres pueden ser distintos. Para ver los códigos, vaya a Insertar ▸ Carácter especial." #: 02100001.xhp msgctxt "" @@ -7990,7 +7990,7 @@ "216\n" "help.text" msgid "[:digit:]" -msgstr "[:dígito:]" +msgstr "[:digit:]" #: 02100001.xhp msgctxt "" @@ -7999,7 +7999,7 @@ "217\n" "help.text" msgid "Represents a decimal digit. Use [:digit:]+ to find one of them." -msgstr "Representa un dígito decimal. Use [:dígito:]+ para encontrar uno de estos." +msgstr "Representa un dígito decimal. Utilice [:digit:]+ para encontrar uno de ellos." #: 02100001.xhp msgctxt "" @@ -8089,7 +8089,7 @@ "229\n" "help.text" msgid "Represents a lowercase character if Match case is selected in Options." -msgstr "Representa un carácter en minúscula si en Opciones se ha seleccionado Coincidir mayúsculas y minúsculas." +msgstr "Representa un carácter en minúscula si en Opciones se ha seleccionado Distinguir mayúsculas y minúsculas." #: 02100001.xhp msgctxt "" @@ -8107,7 +8107,7 @@ "231\n" "help.text" msgid "Represents an uppercase character if Match case is selected in Options." -msgstr "Representa un carácter en mayúscula si en Opciones se ha seleccionado Hacer coincidir mayúsculas y minúsculas." +msgstr "Representa un carácter en mayúscula si en Opciones se ha seleccionado Distinguir mayúsculas y minúsculas." #: 02100001.xhp msgctxt "" @@ -8123,7 +8123,7 @@ "par_id956834773\n" "help.text" msgid "e([:digit:])? -- finds 'e' followed by zero or one digit. Note that currently all named character classes like [:digit:] must be enclosed in parentheses." -msgstr "e([:dígito:])? -- busca 'e' seguido de cero o un dígito. Note que todas las clases de caracteres con nombre [:dígito:] deben ir entre paréntesis." +msgstr "e([:digit:])?: encuentra «e» seguido de cero o un dígito. Observe que todas las clases de caracteres con nombre, tales como [:digit:], deben ir entre paréntesis." #: 02100001.xhp msgctxt "" @@ -8131,7 +8131,7 @@ "par_id952368773\n" "help.text" msgid "^([:digit:])$ -- finds lines or cells with exactly one digit." -msgstr "^([:dígito:])$ -- encuentra líneas o celdas con exactamente un dígito." +msgstr "^([:digit:])$: encuentra líneas o celdas que contienen exactamente un dígito." #: 02100001.xhp msgctxt "" @@ -8155,7 +8155,7 @@ "par_id2924283\n" "help.text" msgid "^[:digit:]{3}$" -msgstr "^[:dígito:]{3}$" +msgstr "^[:digit:]{3}$" #: 02100001.xhp msgctxt "" @@ -8171,7 +8171,7 @@ "par_id6942045\n" "help.text" msgid "[:digit:] matches any decimal digit," -msgstr "[:dígito:] compara cualquier número decimal," +msgstr "[:digit:] se corresponde con cualquier cifra decimal," #: 02100001.xhp msgctxt "" @@ -17033,7 +17033,7 @@ "par_id3156169\n" "help.text" msgid "Number" -msgstr "Número" +msgstr "Número" #: 05020301.xhp msgctxt "" @@ -17129,7 +17129,7 @@ "par_id3154951\n" "help.text" msgid "Number" -msgstr "Número" +msgstr "Número" #: 05020301.xhp msgctxt "" @@ -19402,7 +19402,7 @@ "7\n" "help.text" msgid "Apply spacing between Asian, Latin and Complex text" -msgstr "Usar espacio entre texto asiático, latino y complejo." +msgstr "Aplicar espaciado entre textos asiáticos, latinos y complejos" #: 05020700.xhp msgctxt "" @@ -22340,7 +22340,7 @@ "36\n" "help.text" msgid "Overrides the Spacing setting, and allows the header to expand into the area between the header and the document text." -msgstr "Anula la configuración de Espacio y permite que el encabezado se extienda al área entre el encabezado y el texto del documento." +msgstr "Anula la configuración de Espaciado y permite que la cabecera se extienda al área entre esta y el texto del documento." #: 05040300.xhp msgctxt "" @@ -26077,7 +26077,7 @@ "6\n" "help.text" msgid "To enable this editor, select the Blank bitmap in the bitmap list." -msgstr "La hoja de modelo de bitmap predeterminada sirve como base para realizar variaciones del modelo de píxel. Tiene la posibilidad de modificar el modelo de píxel, así como de añadir sus propios diseños." +msgstr "Para activar este editor, seleccione el mapa de bits En blanco de la lista." #: 05210500.xhp msgctxt "" @@ -30379,7 +30379,7 @@ "par_id3151041\n" "help.text" msgid "Icon" -msgstr "Icono" +msgstr "Icono" #: 05340400.xhp msgctxt "" @@ -33807,7 +33807,7 @@ "5\n" "help.text" msgid "Correct TWo INitial CApitals" -msgstr "Corregir DOs MAyúsculas SEguidas" +msgstr "Corregir DOs MAyúsculas INiciales" #: 06040100.xhp msgctxt "" @@ -34743,7 +34743,7 @@ "16\n" "help.text" msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text." -msgstr "Especifique las opciones de autocorrección para las comillas así como para otras opciones que son específicas del idioma del texto." +msgstr "Especifique las opciones de corrección automática para las comillas y otras opciones que son específicas del idioma del texto." #: 06040400.xhp msgctxt "" @@ -39852,7 +39852,7 @@ "tit\n" "help.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: 06200000.xhp msgctxt "" @@ -39869,7 +39869,7 @@ "1\n" "help.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: 06200000.xhp msgctxt "" @@ -40464,7 +40464,7 @@ "par_idN10546\n" "help.text" msgid "Add and delete entries that are used for the Hangul/Hanja Conversion." -msgstr "Le permite añadir y eliminar entradas utilizadas para la conversión hangul / hanja." +msgstr "Le permite añadir y eliminar entradas utilizadas para la conversión hangul/hanja." #: 06202000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-21 07:38+0000\n" +"PO-Revision-Date: 2017-04-17 06:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490081934.000000\n" +"X-POOTLE-MTIME: 1492409264.000000\n" #: 01110000.xhp msgctxt "" @@ -12606,7 +12606,7 @@ "27\n" "help.text" msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes." -msgstr "Abre el diálogo Asignar macro, en el que puede asignar su propio código programa a eventos como \"ratón sobre objeto\" o \"ejecutar hipervínculo\"." +msgstr "Abre el cuadro de diálogo Asignar macro, en el que puede asignar su propio código de programa a sucesos como «ratón sobre objeto» o «activar hiperenlace»." #: 09070100.xhp msgctxt "" @@ -13949,7 +13949,7 @@ "10\n" "help.text" msgid "Insert table heading" -msgstr "Insertar encabezado de tabla" +msgstr "Insertar título de tabla" #: 12070100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-21 07:14+0000\n" +"PO-Revision-Date: 2017-05-01 15:16+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490080469.000000\n" +"X-POOTLE-MTIME: 1493651775.000000\n" #: 01000000.xhp msgctxt "" @@ -1904,7 +1904,7 @@ "par_idN105E2\n" "help.text" msgid "Prints out a page on which you can write down the minutes during the meeting." -msgstr "Imprime una página en la que puede escribir los minutos durante la reunión." +msgstr "Imprime una página en la que puede escribir las minutas durante la reunión." #: 01040100.xhp msgctxt "" @@ -2044,7 +2044,7 @@ "2\n" "help.text" msgid "Specifies the headings that you want to include in the agenda." -msgstr "Indica los encabezados que quiere incluir en el orden del día." +msgstr "Indica los títulos que quiere incluir en el orden del día." #: 01040300.xhp msgctxt "" @@ -2247,7 +2247,7 @@ "par_idN10604\n" "help.text" msgid "Facility personnel" -msgstr "Personal de la facilidad" +msgstr "Personal de las instalaciones" #: 01040400.xhp msgctxt "" @@ -2255,7 +2255,7 @@ "par_idN10608\n" "help.text" msgid "Specifies whether to print a line where you can enter the facility personnel." -msgstr "Especifica si se imprimirá una línea en la que puede indicar los personal de la facilidad." +msgstr "Especifica si se imprimirá una línea donde indicar el personal de las instalaciones." #: 01040400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-27 03:23+0000\n" +"PO-Revision-Date: 2017-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490584989.000000\n" +"X-POOTLE-MTIME: 1493311074.000000\n" #: aaa_start.xhp msgctxt "" @@ -682,7 +682,7 @@ "8\n" "help.text" msgid "Undo URL Recognition" -msgstr "Deshacer Reconocimiento de URL" +msgstr "Deshacer reconocimiento de URL" #: autocorr_url.xhp msgctxt "" @@ -709,7 +709,7 @@ "9\n" "help.text" msgid "Turn off URL Recognition" -msgstr "Desactivar Reconocimiento de URL" +msgstr "Desactivar reconocimiento de URL" #: autocorr_url.xhp msgctxt "" @@ -1715,7 +1715,7 @@ "4\n" "help.text" msgid "Click inside the cell range that you want to present in your chart." -msgstr "Seleccione los datos junto con los encabezados." +msgstr "Pulse en el intervalo de celdas que quiere presentar en el diagrama." #: chart_insert.xhp msgctxt "" @@ -2736,7 +2736,7 @@ "par_id170820161605423872\n" "help.text" msgid "If the file was opened from a CMIS server, choose File - Save, click on the Save button or hit Ctrl + S." -msgstr "" +msgstr "Si el archivo se ha abierto a partir de un servidor CMIS, seleccione Archivo ▸ Guardar, pulse en el botón Guardar u oprima Ctrl + S." #: cmis-remote-files.xhp msgctxt "" @@ -5783,7 +5783,7 @@ "9\n" "help.text" msgid "View data source contents" -msgstr "Ver contenidos de fuente de datos" +msgstr "Ver el contenido de un origen de datos" #: database_main.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-21 07:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-05-01 19:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490079888.000000\n" +"X-POOTLE-MTIME: 1493668160.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Elegir" +msgid "Pick" +msgstr "Elegir" #: 01010501.xhp msgctxt "" @@ -3529,7 +3529,7 @@ "hd_id3146982\n" "help.text" msgid "Middle mouse button" -msgstr "Botón central del ratón" +msgstr "Botón central del ratón" #: 01010800.xhp msgctxt "" @@ -5300,7 +5300,7 @@ "hd_id1972106\n" "help.text" msgid "Ctrl-click required to follow hyperlinks" -msgstr "Ctrl-clic se requiere para seguir hipervínculos" +msgstr "Ctrl + pulsación para abrir hiperenlaces" #: 01030300.xhp msgctxt "" @@ -13691,7 +13691,7 @@ "5\n" "help.text" msgid "Western characters only" -msgstr "Solo caracteres occidentales" +msgstr "Solo texto occidental" #: 01150100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-25 23:28+0000\n" +"PO-Revision-Date: 2017-04-28 20:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490484497.000000\n" +"X-POOTLE-MTIME: 1493412372.000000\n" #: 01170000.xhp msgctxt "" @@ -5373,7 +5373,7 @@ "par_idN1074D\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: 06040000.xhp msgctxt "" @@ -6183,7 +6183,7 @@ "par_idN1083C\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: 06060000.xhp msgctxt "" @@ -8288,7 +8288,7 @@ "par_idN10594\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: animationeffect.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-11 02:18+0000\n" +"PO-Revision-Date: 2017-04-19 20:55+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484101093.000000\n" +"X-POOTLE-MTIME: 1492635323.000000\n" #: align.xhp msgctxt "" @@ -751,7 +751,7 @@ "2\n" "help.text" msgid "In %PRODUCTNAME Math, can brackets be shown separately so that the distance between them is freely definable?" -msgstr "En %PRODUCTNAME Math, ¿pueden los corchetes ser mostrados por separado para que la distancia entre ellos sea definible libremente?" +msgstr "En %PRODUCTNAME Math, ¿es posible mostrar los corchetes por separado para que la distancia entre ellos pueda definirse libremente?" #: parentheses.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-29 11:18+0000\n" +"PO-Revision-Date: 2017-04-30 12:06+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490786316.000000\n" +"X-POOTLE-MTIME: 1493553984.000000\n" #: 01120000.xhp msgctxt "" @@ -4889,7 +4889,7 @@ "4\n" "help.text" msgid "When you add chapter numbers to caption labels, the caption numbering is reset when a chapter heading is encountered. For example, if the last figure in chapter 1 is \"Figure 1.12\", the first figure in the next chapter would be \"Figure 2.1\"." -msgstr "Cuando añada números de capítulos a las leyendas, la numeración de estas se restablecerá cuando se encuentre el encabezamiento de un capítulo. Por ejemplo, si la última figura del capítulo 1 es «Figura 1.12», la primera figura del siguiente capítulo será «Figura 2.1»." +msgstr "Cuando añada números de capítulos a las leyendas, la numeración de estas se restablecerá cuando se encuentre el título de un capítulo. Por ejemplo, si la última figura del capítulo 1 es «Figura 1.12», la primera figura del siguiente capítulo será «Figura 2.1»." #: 04060100.xhp msgctxt "" @@ -13109,7 +13109,7 @@ "par_id3149292\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type." -msgstr "" +msgstr "Vaya a Insertar ▸ Sumario e índice ▸ Sumario, índice o bibliografía ▸ Tipo." #: 04120250.xhp msgctxt "" @@ -13922,7 +13922,7 @@ "par_id3155912\n" "help.text" msgid "Table - Properties - Text Flow" -msgstr "" +msgstr "Tabla ▸ Propiedades ▸ Flujo del texto" #: 04150000.xhp msgctxt "" @@ -15008,7 +15008,7 @@ "hd_id3151173\n" "help.text" msgid "Outline & Numbering" -msgstr "" +msgstr "Esquema y numeración" #: 05030800.xhp msgctxt "" @@ -15096,7 +15096,7 @@ "par_id3149106\n" "help.text" msgid "This section only appears when you edit the properties of the current paragraph by choosing Format - Paragraph." -msgstr "" +msgstr "Esta sección aparece únicamente al editar las propiedades del párrafo actual mediante Formato ▸ Párrafo." #: 05030800.xhp msgctxt "" @@ -15104,7 +15104,7 @@ "hd_id3151250\n" "help.text" msgid "Restart at this paragraph" -msgstr "" +msgstr "Reiniciar en este párrafo" #: 05030800.xhp msgctxt "" @@ -15112,7 +15112,7 @@ "par_id3154831\n" "help.text" msgid "Restarts the numbering at the current paragraph." -msgstr "" +msgstr "Reinicia la numeración a partir del párrafo actual." #: 05030800.xhp msgctxt "" @@ -15812,7 +15812,7 @@ "hd_id3151255\n" "help.text" msgid "Color" -msgstr "" +msgstr "Color" #: 05040600.xhp msgctxt "" @@ -15820,7 +15820,7 @@ "par_id3149107\n" "help.text" msgid "Select the color of the separator line." -msgstr "" +msgstr "Seleccione el color de la línea de separación." #: 05040600.xhp msgctxt "" @@ -15828,7 +15828,7 @@ "hd_id3143284\n" "help.text" msgid "Length" -msgstr "" +msgstr "Longitud" #: 05040600.xhp msgctxt "" @@ -15836,7 +15836,7 @@ "par_id3154827\n" "help.text" msgid "Enter the length of the separator line as a percentage of the page width area." -msgstr "" +msgstr "Especifique la longitud de la línea de separación como un porcentaje de la anchura de la página." #: 05040600.xhp msgctxt "" @@ -18323,7 +18323,7 @@ "44\n" "help.text" msgid "Trigger Hyperlink" -msgstr "Ejecutar hiperenlace" +msgstr "Activar hiperenlace" #: 05060700.xhp msgctxt "" @@ -18933,7 +18933,7 @@ "13\n" "help.text" msgid "Server-side image map" -msgstr "Image map del sitio del servidor" +msgstr "Mapa de imagen del lado servidor" #: 05060800.xhp msgctxt "" @@ -25176,7 +25176,7 @@ "par_idN10895\n" "help.text" msgid "For Asian languages, select Match case to apply multi-level collation. In the multi-level collation, the primitive forms of the entries are first compared with the cases of the forms and diacritics ignored. If the forms are the same, the diacritics of the forms are compared. If the forms are still the same, the cases, character widths, and Japanese Kana differences of the forms are compared." -msgstr "Para idiomas Asiáticas, seleccione Coincidir mayúsculas y minúsculas para aplicar colación de multi-nivel.En la intercalación de multi-niveles, primero comparar las formas primitivas de las entradas con la forma ignorando el mayu/minus y los diacríticas. Si las formas son igual, los diacríticas están comparada. Si las formas todavía están igual, el mayu/minus, anchos de caracteres, y las diferencias de Kana Japones están comparados." +msgstr "En el caso de los idiomas asiáticos, seleccione Distinguir mayúsculas y minúsculas para aplicar un cotejo multinivel. En el cotejo multinivel, primero se comparan las formas primitivas de las entradas haciendo caso omiso del uso de mayúsculas y de los diacríticos. Si las formas son iguales, se comparan los diacríticos de las formas. Si las formas siguen siendo iguales, se comparan las diferencias en el uso de mayúsculas, la anchura de los caracteres y las diferencias en el kana japonés." #: 06110000.xhp msgctxt "" @@ -28644,7 +28644,7 @@ "par_id300920161448355764\n" "help.text" msgid "Note: By default, %PRODUCTNAME select the First page page style." -msgstr "" +msgstr "Nota: de manera predeterminada, %PRODUCTNAME selecciona el estilo Primera página." #: title_page.xhp msgctxt "" @@ -28796,7 +28796,7 @@ "par_id300920161443337801\n" "help.text" msgid "Double click on the page style to apply." -msgstr "" +msgstr "Pulse dos veces en el estilo de página que quiera aplicar." #: title_page.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-29 11:23+0000\n" +"PO-Revision-Date: 2017-04-21 07:10+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490786604.000000\n" +"X-POOTLE-MTIME: 1492758604.000000\n" #: anchor_object.xhp msgctxt "" @@ -579,7 +579,7 @@ "10\n" "help.text" msgid "Choose Tools – AutoCorrect Options." -msgstr "Elija Herramientas – Opciones de autocorrección." +msgstr "Vaya a Herramientas ▸ Corrección automática ▸ Opciones de corrección automática." #: auto_off.xhp msgctxt "" @@ -711,7 +711,7 @@ "6\n" "help.text" msgid "If you choose a word from the AutoCorrect submenu, the underlined word and the replacement word are automatically added to the AutoCorrect list for the current language. To view the AutoCorrect list, choose Tools – AutoCorrect Options, and then click the Replace tab." -msgstr "Si selecciona una palabra desde el submenú Autocorrección, la palabra subrayada y la palabra substituta se agregan automáticamente a la lista de Autocorrección del idioma actual. Para ver la lista de Autocorrección, seleccione Herramientas – Opciones de Autocorrección y, a continuación, haga clic en la ficha Reemplazar." +msgstr "Si selecciona una palabra desde el submenú Corrección automática, la palabra subrayada y la palabra substituta se añaden automáticamente a la lista de Corrección automática del idioma actual. Para ver la lista de Corrección automática, seleccione Herramientas ▸ Opciones de corrección automática y, a continuación, pulse en la pestaña Reemplazar." #: auto_spellcheck.xhp msgctxt "" @@ -2953,7 +2953,7 @@ "par_id3154245\n" "help.text" msgid "For example, you can create a page style that displays a particular header, and another page style that displays a different header." -msgstr "Por ejemplo, puede crear un estilo de página que muestra un encabezamiento concreto y otro estilo de página que muestra un encabezamiento diferente." +msgstr "Por ejemplo, puede crear un estilo de página que muestre una cabecera concreta y otro que muestre una diferente." #: change_header.xhp msgctxt "" @@ -2969,7 +2969,7 @@ "par_id3150532\n" "help.text" msgid "Click the New Style from Selection icon and select New Styles from Selection from the submenu." -msgstr "Pulse el símbolo Nuevo estilo a partir de selección y seleccione en el submenú Nuevos estilos a partir de selección." +msgstr "Pulse en el icono Estilo nuevo a partir de selección y seleccione en el submenú Estilos nuevos a partir de selección." #: change_header.xhp msgctxt "" @@ -6069,7 +6069,7 @@ "par_id3146876\n" "help.text" msgid "To use different headers or footers in your document, you must add them to different Page Styles, and then apply the styles to the pages where you want the headers or footer to appear." -msgstr "Si desea usar encabezamientos o pies de página diferentes en el documento, debe añadirlos a los Estilos de página y a continuación aplicar éstos a las páginas donde desee que aparezcan los encabezamientos o los pies de página." +msgstr "Si desea emplear cabeceras o pies diferentes en el documento, debe añadirlos a los estilos de página y, a continuación, aplicar estos a las páginas donde quiera que aparezcan las cabeceras o los pies." #: header_footer.xhp msgctxt "" @@ -6125,7 +6125,7 @@ "par_id3154263\n" "help.text" msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as First page, Left page and Right page, or you can create a custom page style." -msgstr "Puede usar encabezamientos y pies de página diferentes en varias páginas del documento, siempre que las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como Primera página, Página izquierda y Página derecha. También se puede crear un estilo de página personalizado." +msgstr "Puede usar cabeceras y pies diferentes en varias páginas del documento, siempre y cuando las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como Primera página, Página izquierda y Página derecha. También se puede crear un estilo de página personalizado." #: header_pagestyles.xhp msgctxt "" @@ -6141,7 +6141,7 @@ "par_id3150224\n" "help.text" msgid "For example, you can use page styles to define different headers for even and odd pages in a document." -msgstr "Por ejemplo puede usar estilos de página con el fin de definir encabezamientos diferentes para las páginas pares e impares de un documento." +msgstr "Por ejemplo, es posible emplear los estilos de página para definir una cabecera para las páginas pares y otra para las impares." #: header_pagestyles.xhp msgctxt "" @@ -6416,13 +6416,12 @@ msgstr "Dar formato a encabezados o pies de página" #: header_with_line.xhp -#, fuzzy msgctxt "" "header_with_line.xhp\n" "bm_id3154866\n" "help.text" msgid "inserting;lines under headers/above footers lines; under headers/above footers headers;formatting footers;formatting shadows;headers/footers borders;for headers/footers" -msgstr "insertar;líneas debajo de encabezamientos/encima de pies de página líneas; debajo de encabezamientos/encima de pies de página encabezamientos;dar formato pies de página;dar formato sombras;encabezamientos/pies de página bordes;para encabezamientos/pies de página" +msgstr "insertar;líneas debajo de cabeceras/encima de pies de página líneas; debajo de cabeceras/encima de pies de página cabeceras;dar formato pies de página;dar formato sombras;cabeceras/pies de página bordes;para cabeceras/pies de página" #: header_with_line.xhp msgctxt "" @@ -7610,7 +7609,7 @@ "52\n" "help.text" msgid "In the Level list click the heading level that you want to assign hyperlinks to." -msgstr "En la lista Nivel haga clic en el nivel de encabezado al que desee asignar hipervínculos." +msgstr "En la lista Nivel, pulse en el nivel de título al que desee asignar hiperenlaces." #: indices_form.xhp msgctxt "" @@ -9049,7 +9048,7 @@ "par_idN10703\n" "help.text" msgid "Click the arrow next to the New Style from Selection icon to open the submenu." -msgstr "Haga clic en la flecha que hay junto al icono Nuevo estilo a partir de selección para abrir el submenú." +msgstr "Pulse en la flecha que se encuentra junto al icono Estilo nuevo a partir de selección para abrir el submenú." #: load_styles.xhp msgctxt "" @@ -13985,7 +13984,7 @@ "43\n" "help.text" msgid "Click the arrow next to the New Style from Selection icon and choose Update Style from the submenu." -msgstr "Haga clic en la flecha que se encuentra junto al icono Nuevo estilo a partir de selección y elija Actualizar estiloen el submenú" +msgstr "Pulse en la flecha que se encuentra junto al icono Estilo nuevo a partir de selección y elija Actualizar estilo en el submenú." #: stylist_update.xhp msgctxt "" @@ -17445,7 +17444,7 @@ "par_id2593462\n" "help.text" msgid "To fine-tune the word completion choose Tools – AutoCorrect Options - Word Completion and select any of the following options:" -msgstr "Para ajustar con precisión el completado de palabras, elija Herramientas – Opciones de autocorrección - Completado de palabras y seleccione cualquiera de las siguientes opciones:" +msgstr "Para optimizar la compleción de palabras, vaya a Herramientas ▸ Opciones de corrección automática ▸ Compleción de palabras y seleccione cualquiera de las opciones siguientes:" #: word_completion_adjust.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-06 16:13+0000\n" +"PO-Revision-Date: 2017-04-28 19:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488816816.000000\n" +"X-POOTLE-MTIME: 1493407110.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -6809,7 +6809,7 @@ "TooltipLabel\n" "value.text" msgid "Show Glue Points Functions" -msgstr "" +msgstr "Mostrar funciones de puntos de adhesión" #: DrawImpressCommands.xcu msgctxt "" @@ -17899,7 +17899,7 @@ "Label\n" "value.text" msgid "Hangul/Hanja Conversion..." -msgstr "Conversión hangul / hanja…" +msgstr "Conversión hangul/hanja…" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/es/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-03-20 23:25+0000\n" +"PO-Revision-Date: 2017-04-03 03:55+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490052340.000000\n" +"X-POOTLE-MTIME: 1491191704.000000\n" #: 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 "Nuestro sistema de seguimiento de errores es Bugzilla, hospedado en bugs.libreoffice.org. Animamos a todos los usuarios a que informen de cualquier defectos que pudiera producirse en sus plataformas. Informar activamente de defectos es una de las contribuciones más importantes que la comunidad puede realizar para ayudar al desarrollo y mejora continua de ${PRODUCTNAME}." +msgstr "Nuestro sistema de seguimiento de errores es Bugzilla, hospedado en bugs.libreoffice.org. Animamos a todos los usuarios a que informen de cualesquier defectos que pudieran producirse en sus plataformas. Informar activamente de defectos es una de las contribuciones más importantes que la comunidad puede realizar para ayudar al desarrollo y mejora continua de ${PRODUCTNAME}." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-18 05:10+0000\n" +"PO-Revision-Date: 2017-04-28 19:29+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489813831.000000\n" +"X-POOTLE-MTIME: 1493407780.000000\n" #: filter.src msgctxt "" @@ -657,7 +657,7 @@ "STR_UNDO_ENTERMATRIX\n" "string.text" msgid "Insert Array Formula" -msgstr "Insertar fórmula matriz" +msgstr "Insertar fórmula matricial" #: globstr.src msgctxt "" @@ -1121,7 +1121,7 @@ "STR_NO_REF_TABLE\n" "string.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: globstr.src msgctxt "" @@ -1712,7 +1712,7 @@ "STR_READONLYERR\n" "string.text" msgid "Document opened in read-only mode." -msgstr "El documento abierto es de solo lectura." +msgstr "El documento se ha abierto en modo de solo lectura." #: globstr.src msgctxt "" @@ -1820,7 +1820,7 @@ "STR_NO_ADDIN\n" "string.text" msgid "#ADDIN?" -msgstr "#ADDIN?" +msgstr "#¿COMPL?" #: globstr.src msgctxt "" @@ -1829,7 +1829,7 @@ "STR_LONG_ERR_NO_ADDIN\n" "string.text" msgid "Error: Add-in not found" -msgstr "Error: no se ha encontrado Add-in" +msgstr "Error: no se ha encontrado el complemento" #: globstr.src msgctxt "" @@ -1838,7 +1838,7 @@ "STR_NO_MACRO\n" "string.text" msgid "#MACRO?" -msgstr "#MACRO?" +msgstr "#¿MACRO?" #: globstr.src msgctxt "" @@ -2036,7 +2036,7 @@ "STR_UNDO_TABOP\n" "string.text" msgid "Multiple operations" -msgstr "Operación múltiple" +msgstr "Operaciones múltiples" #: globstr.src msgctxt "" @@ -3462,7 +3462,7 @@ "STR_UNDO_HANGULHANJA\n" "string.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: globstr.src msgctxt "" @@ -4032,7 +4032,7 @@ "STR_HEADER_RANGE\n" "string.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: globstr.src msgctxt "" @@ -5210,7 +5210,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -5219,7 +5219,7 @@ "1\n" "string.text" msgid "Counts all non-blank cells of a data range where the content corresponds to the search criteria." -msgstr "Cuenta las celdas en un área de datos que no están en blanco cuyos contenidos coinciden con los criterios de búsqueda." +msgstr "Cuenta las celdas no vacías de un intervalo de datos cuyos contenidos coinciden con los criterios de búsqueda." #: scfuncs.src msgctxt "" @@ -5273,7 +5273,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -5903,7 +5903,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -6722,7 +6722,7 @@ "7\n" "string.text" msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"." -msgstr "Intervalo a calcular. Puede ser «d», «m», «a», «am», «md» o «ad»." +msgstr "Intervalo que calcular. Puede ser «d», «m», «a», «am», «md» o «ad»." #: scfuncs.src msgctxt "" @@ -7032,7 +7032,7 @@ "7\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -7113,7 +7113,7 @@ "5\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -7311,7 +7311,7 @@ "5\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -12827,7 +12827,7 @@ "1\n" "string.text" msgid "Calculates the variance based on a sample." -msgstr "Calcula la varianza sobre una muestra." +msgstr "Calcula la varianza a partir de una muestra." #: scfuncs.src msgctxt "" @@ -12854,7 +12854,7 @@ "1\n" "string.text" msgid "Calculates the variance based on a sample." -msgstr "Calcula la varianza sobre una muestra." +msgstr "Calcula la varianza a partir de una muestra." #: scfuncs.src msgctxt "" @@ -13475,7 +13475,7 @@ "1\n" "string.text" msgid "Returns the median of a given sample." -msgstr "Devuelve la mediana de los números." +msgstr "Devuelve la mediana de una muestra dada." #: scfuncs.src msgctxt "" @@ -23450,7 +23450,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23468,7 +23468,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23495,7 +23495,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23513,7 +23513,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23540,7 +23540,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23558,7 +23558,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23585,7 +23585,7 @@ "3\n" "string.text" msgid "The value to be shifted. Positive integer less than 2^48." -msgstr "El valor que se desplazará. Entero positivo menor que 2^48." +msgstr "El valor que se desplazará. Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23630,7 +23630,7 @@ "3\n" "string.text" msgid "The value to be shifted. Positive integer less than 2^48." -msgstr "El valor que se desplazará. Entero positivo menor que 2^48." +msgstr "El valor que se desplazará. Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-06-04 15:25+0000\n" +"PO-Revision-Date: 2017-04-24 05:30+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1465053900.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493011854.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -671,7 +671,7 @@ "STR_OBSERVED_MEAN_DIFFERENCE_LABEL\n" "string.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: StatisticsDialogs.src msgctxt "" @@ -752,7 +752,7 @@ "STR_LABEL_RSQUARED\n" "string.text" msgid "R^2" -msgstr "R^2" +msgstr "R²" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-15 16:13+0000\n" -"Last-Translator: Juan C. Sanz \n" +"PO-Revision-Date: 2017-04-25 12:50+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487175186.000000\n" +"X-POOTLE-MTIME: 1493124631.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -4178,7 +4178,7 @@ "0\n" "stringlist.text" msgid "Generate #VALUE! error" -msgstr "Generar error de tipo #VALOR!" +msgstr "Generar error #¡VALOR!" #: formulacalculationoptions.ui msgctxt "" @@ -5681,7 +5681,7 @@ "tooltip_text\n" "string.text" msgid "Data Range" -msgstr "" +msgstr "Intervalo de datos" #: navigatorpanel.ui msgctxt "" @@ -6527,7 +6527,7 @@ "label\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Contorno" #: notebookbar_groups.ui msgctxt "" @@ -6536,7 +6536,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Editar contorno" #: optcalculatepage.ui msgctxt "" @@ -6554,7 +6554,7 @@ "tooltip_text\n" "string.text" msgid "Disable case sensitivity for interoperability with Microsoft Excel" -msgstr "" +msgstr "Desactivar distinción de mayúsculas y minúsculas para interoperatividad con Microsoft Excel" #: optcalculatepage.ui msgctxt "" @@ -6581,7 +6581,7 @@ "tooltip_text\n" "string.text" msgid "Enable this for interoperability with Microsoft Excel" -msgstr "" +msgstr "Active esta opción para aumentar la interoperatividad con Microsoft Excel" #: optcalculatepage.ui msgctxt "" @@ -9866,7 +9866,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Text Orientation" -msgstr "" +msgstr "Orientación de texto" #: sidebaralignment.ui msgctxt "" @@ -9956,7 +9956,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Border Line Style" -msgstr "" +msgstr "Estilo de línea de borde" #: sidebarcellappearance.ui msgctxt "" @@ -9983,7 +9983,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Border Line Color" -msgstr "" +msgstr "Color de línea de borde" #: sidebarnumberformat.ui msgctxt "" @@ -10091,7 +10091,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Category" -msgstr "" +msgstr "Categoría" #: sidebarnumberformat.ui msgctxt "" @@ -10118,7 +10118,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Decimal Places" -msgstr "" +msgstr "Dígitos decimales" #: sidebarnumberformat.ui msgctxt "" @@ -10127,7 +10127,7 @@ "label\n" "string.text" msgid "Den_ominator places:" -msgstr "" +msgstr "Dígitos den_ominadores:" #: sidebarnumberformat.ui msgctxt "" @@ -10145,7 +10145,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Denominator Places" -msgstr "" +msgstr "Dígitos denominadores" #: sidebarnumberformat.ui msgctxt "" @@ -10172,7 +10172,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Leading Zeroes" -msgstr "" +msgstr "Ceros a la izquierda" #: sidebarnumberformat.ui msgctxt "" @@ -10370,7 +10370,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Cell reference" -msgstr "" +msgstr "Referencia de celda" #: solverdlg.ui msgctxt "" @@ -10379,7 +10379,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Cell reference" -msgstr "" +msgstr "Referencia de celda" #: solverdlg.ui msgctxt "" @@ -10388,7 +10388,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Cell reference" -msgstr "" +msgstr "Referencia de celda" #: solverdlg.ui msgctxt "" @@ -10442,7 +10442,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: solverdlg.ui msgctxt "" @@ -10496,7 +10496,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: solverdlg.ui msgctxt "" @@ -10550,7 +10550,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: solverdlg.ui msgctxt "" @@ -10604,7 +10604,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Operador" #: solverdlg.ui msgctxt "" @@ -10613,7 +10613,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: solverdlg.ui msgctxt "" @@ -10622,7 +10622,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: solverdlg.ui msgctxt "" @@ -10640,7 +10640,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Value" -msgstr "" +msgstr "Valor" #: solverdlg.ui msgctxt "" @@ -12197,7 +12197,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Other" -msgstr "" +msgstr "Otro" #: textimportcsv.ui msgctxt "" @@ -13034,7 +13034,7 @@ "tooltip_text\n" "string.text" msgid "Browse to set source file." -msgstr "" +msgstr "Examinar para definir el archivo de origen." #: xmlsourcedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/es/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2017-01-12 11:26+0000\n" +"PO-Revision-Date: 2017-04-28 19:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484220399.000000\n" +"X-POOTLE-MTIME: 1493408274.000000\n" #: analysis.src msgctxt "" @@ -3126,7 +3126,7 @@ "7\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4242,7 +4242,7 @@ "9\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4359,7 +4359,7 @@ "7\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4494,7 +4494,7 @@ "11\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4710,7 +4710,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd first period" -msgstr "Devuelve el precio de ¤ 100 de valor nominal de un título con un período inicial irregular" +msgstr "Devuelve el precio de 100 ¤ de valor nominal de un título con un período inicial irregular" #: analysis.src msgctxt "" @@ -4989,7 +4989,7 @@ "13\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -5052,7 +5052,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd last period" -msgstr "Devuelve el precio de ¤ 100 de valor nominal de un título con un período final irregular" +msgstr "Devuelve el precio de 100 ¤ de valor nominal de un título con un período final irregular" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/scp2/source/ooo.po libreoffice-l10n-5.3.3~rc2/translations/source/es/scp2/source/ooo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/scp2/source/ooo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-15 21:07+0000\n" +"PO-Revision-Date: 2017-04-18 12:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484514441.000000\n" +"X-POOTLE-MTIME: 1492517622.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -1694,7 +1694,7 @@ "STR_NAME_MODULE_HELPPACK_ML\n" "LngText.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: module_helppack.ulf msgctxt "" @@ -1702,7 +1702,7 @@ "STR_DESC_MODULE_HELPPACK_ML\n" "LngText.text" msgid "Installs Malayalam help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instala la ayuda en malayalam para %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instala la ayuda en malabar para %PRODUCTNAME %PRODUCTVERSION" #: module_helppack.ulf msgctxt "" @@ -3486,7 +3486,7 @@ "STR_NAME_MODULE_LANGPACK_ML\n" "LngText.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: module_langpack.ulf msgctxt "" @@ -3494,7 +3494,7 @@ "STR_DESC_MODULE_LANGPACK_ML\n" "LngText.text" msgid "Installs the Malayalam user interface" -msgstr "Instala la interfaz de usuario en malayalam" +msgstr "Instala la interfaz de usuario en malabar" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 16:47+0000\n" +"PO-Revision-Date: 2017-04-28 20:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487695621.000000\n" +"X-POOTLE-MTIME: 1493412418.000000\n" #: popup.src msgctxt "" @@ -2306,7 +2306,7 @@ "STR_UNDO_HANGULHANJACONVERSION\n" "string.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: strings.src msgctxt "" @@ -2394,7 +2394,7 @@ "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION\n" "string.text" msgid "Preview not available" -msgstr "Vista previa no disponible" +msgstr "Previsualización no disponible" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/source/ui/view.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/source/ui/view.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/source/ui/view.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/source/ui/view.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-07-03 07:08+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1467529703.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493411535.000000\n" #: DocumentRenderer.src msgctxt "" @@ -302,7 +302,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: DocumentRenderer.src msgctxt "" @@ -338,7 +338,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-28 03:43+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480304633.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493411541.000000\n" #: breakdialog.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: printeroptions.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-28 19:53+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488311582.000000\n" +"X-POOTLE-MTIME: 1493411544.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -2869,7 +2869,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: printeroptions.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-11 03:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 20: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484103840.000000\n" +"X-POOTLE-MTIME: 1492634912.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Jerárquico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Modo de relleno de formato" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Estilo nuevo a partir de selección" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Actualizar estilo" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-12 12:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 13:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484222989.000000\n" +"X-POOTLE-MTIME: 1492520857.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-01-12 18:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-25 13:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484246672.000000\n" +"X-POOTLE-MTIME: 1493125775.000000\n" #: addresstemplate.src msgctxt "" @@ -46,7 +46,7 @@ "STR_FIELD_FIRSTNAME\n" "string.text" msgid "First name" -msgstr "Nombre" +msgstr "Nombre(s)" #: addresstemplate.src msgctxt "" @@ -54,7 +54,7 @@ "STR_FIELD_LASTNAME\n" "string.text" msgid "Last name" -msgstr "Nombre" +msgstr "Apellido(s)" #: addresstemplate.src msgctxt "" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" "formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Texto con formato [enriquecido]" + +#: formats.src +msgctxt "" +"formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" msgid "Drawing format" @@ -857,7 +865,7 @@ "ERRCODE_SO_NOCACHE_UPDATED&S_MAX\n" "string.text" msgid "No cache files were updated." -msgstr "No se ha actualizado ningún archivo de la memoria local." +msgstr "No se ha actualizado ningún archivo de la antememoria." #: so3res.src msgctxt "" @@ -866,7 +874,7 @@ "ERRCODE_SO_SOMECACHES_NOTUPDATED&S_MAX\n" "string.text" msgid "Some cache files were not updated." -msgstr "No se han actualizado algunos archivos de la memoria local." +msgstr "No se han actualizado algunos archivos de la antememoria." #: so3res.src msgctxt "" @@ -1082,7 +1090,7 @@ "ERRCODE_SO_CANNOT_DOVERB_NOW & S_MAX\n" "string.text" msgid "The action cannot be executed in the object's current state." -msgstr "El objeto no puede ejecutar la acción en el estado actual" +msgstr "El estado actual del objeto no permite ejecutar esta acción." #: so3res.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-15 22:56+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 13:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487199376.000000\n" +"X-POOTLE-MTIME: 1492520871.000000\n" #: imagemgr.src msgctxt "" @@ -1473,7 +1473,7 @@ "LANGUAGE_MALAYALAM\n" "pairedlist.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: langtab.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Húngaro (alfabeto rúnico)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Inglés (Malasia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-16 20:43+0000\n" +"PO-Revision-Date: 2017-04-28 20:47+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489697036.000000\n" +"X-POOTLE-MTIME: 1493412438.000000\n" #: SafeMode.src msgctxt "" @@ -3512,7 +3512,7 @@ "RID_SVXSTR_GALLERY_PREVIEW\n" "string.text" msgid "Preview" -msgstr "Vista previa" +msgstr "Previsualizar" #: sdstring.src msgctxt "" @@ -5240,7 +5240,7 @@ "RID_SUBSETSTR_MALAYALAM\n" "string.text" msgid "Malayalam" -msgstr "Malasio" +msgstr "Malabar" #: ucsubset.src msgctxt "" @@ -5384,7 +5384,7 @@ "RID_SUBSETSTR_MISC_TECHNICAL\n" "string.text" msgid "Miscellaneous Technical" -msgstr "Diversos caracteres técnicos" +msgstr "Caracteres técnicos diversos" #: ucsubset.src msgctxt "" @@ -5447,7 +5447,7 @@ "RID_SUBSETSTR_MISC_DINGBATS\n" "string.text" msgid "Miscellaneous Symbols" -msgstr "Diversos símbolos" +msgstr "Símbolos diversos" #: ucsubset.src msgctxt "" @@ -5510,7 +5510,7 @@ "RID_SUBSETSTR_CJK_MISC\n" "string.text" msgid "CJK Miscellaneous" -msgstr "Diversos caracteres CJK" +msgstr "Caracteres CJK diversos" #: ucsubset.src msgctxt "" @@ -7400,7 +7400,7 @@ "RID_SUBSETSTR_ADLAM\n" "string.text" msgid "Adlam" -msgstr "" +msgstr "ADLaM" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/src.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 01:42+0000\n" +"PO-Revision-Date: 2017-04-28 21:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480642968.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493415387.000000\n" #: errtxt.src msgctxt "" @@ -1094,7 +1094,7 @@ "Execution of macros is disabled for this document.\n" " " msgstr "" -"El documento cifrado contiene flujos inesperados sin cifrar.\n" +"El documento cifrado contiene secuencias sin cifrar inesperadas.\n" "\n" "Esto podría ser el resultado de una manipulación del documento.\n" "\n" @@ -1144,7 +1144,7 @@ "ERRCODE_IO_BADCRC\n" "string.text" msgid "Wrong check amount." -msgstr "Suma errónea de revisión." +msgstr "Suma de comprobación incorrecta." #: errtxt.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 03:03+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 13:08+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487646188.000000\n" +"X-POOTLE-MTIME: 1492520888.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "No se pudieron cargar todos los objetos de SmartArt. Guardar en Microsoft Office 2010 o posterior evitaría este problema." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/svdraw.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/svdraw.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/source/svdraw.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/source/svdraw.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-09-08 09:36+0000\n" +"PO-Revision-Date: 2017-04-28 08:11+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1473327380.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493367095.000000\n" #: svdstr.src msgctxt "" @@ -2046,7 +2046,7 @@ "STR_UndoObjName\n" "string.text" msgid "Change object name of %1 to" -msgstr "Cambia el objeto nombre de %1 a" +msgstr "Cambiar nombre de objeto de %1 a" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-20 23:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 05:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490052363.000000\n" +"X-POOTLE-MTIME: 1492580679.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1274,7 +1274,7 @@ "label\n" "string.text" msgid "Restart LibreOffice to enter Safe Mode" -msgstr "" +msgstr "Reinicie LibreOffice para entrar en el modo seguro" #: datanavigator.ui msgctxt "" @@ -3233,7 +3233,7 @@ "tooltip_text\n" "string.text" msgid "Specify the angle of rotation for the gradient shading style." -msgstr "" +msgstr "Especifique el ángulo de giro para el estilo de sombreado del degradado." #: floatingareastyle.ui msgctxt "" @@ -4463,7 +4463,7 @@ "label\n" "string.text" msgid "Above" -msgstr "" +msgstr "Encima" #: paraulspacing.ui msgctxt "" @@ -4472,7 +4472,7 @@ "label\n" "string.text" msgid "Below" -msgstr "" +msgstr "Debajo" #: paraulspacing.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Salir" +msgid "_Restart in Normal Mode" +msgstr "_Reiniciar normalmente" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/source/ui/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/source/ui/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/source/ui/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-27 00:24+0000\n" +"PO-Revision-Date: 2017-04-25 13:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482798249.000000\n" +"X-POOTLE-MTIME: 1493126015.000000\n" #: poolfmt.src msgctxt "" @@ -1698,7 +1698,7 @@ "STR_AUTOFMTREDL_DETECT_URL+1\n" "string.text" msgid "URL recognition" -msgstr "Reconocimiento de los URL" +msgstr "Reconocer URL" #: utlui.src msgctxt "" @@ -1734,7 +1734,7 @@ "STR_AUTOFMTREDL_SET_TMPL_TEXT +1\n" "string.text" msgid "Set \"Text body\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto»" +msgstr "Aplicar estilo «Cuerpo de texto»" #: utlui.src msgctxt "" @@ -1743,7 +1743,7 @@ "STR_AUTOFMTREDL_SET_TMPL_INDENT +1\n" "string.text" msgid "Set \"Text body indent\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto con sangría»" +msgstr "Aplicar estilo «Cuerpo de texto con sangría»" #: utlui.src msgctxt "" @@ -1752,7 +1752,7 @@ "STR_AUTOFMTREDL_SET_TMPL_NEG_INDENT +1\n" "string.text" msgid "Set \"Hanging indent\" Style" -msgstr "Aplicar el estilo «Sangría francesa»" +msgstr "Aplicar estilo «Sangría francesa»" #: utlui.src msgctxt "" @@ -1761,7 +1761,7 @@ "STR_AUTOFMTREDL_SET_TMPL_TEXT_INDENT +1\n" "string.text" msgid "Set \"Text body indent\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto con sangría»" +msgstr "Aplicar estilo «Cuerpo de texto con sangría»" #: utlui.src msgctxt "" @@ -1770,7 +1770,7 @@ "STR_AUTOFMTREDL_SET_TMPL_HEADLINE +1\n" "string.text" msgid "Set \"Heading $(ARG1)\" Style" -msgstr "Aplicar el estilo «Título $(ARG1)»" +msgstr "Aplicar estilo «Título $(ARG1)»" #: utlui.src msgctxt "" @@ -1779,7 +1779,7 @@ "STR_AUTOFMTREDL_SET_NUMBULET +1\n" "string.text" msgid "Set \"Bullet\" or \"Numbering\" Style" -msgstr "Aplicar el estilo «Viñetas» o «Numeración»" +msgstr "Aplicar estilo «Viñetas» o «Numeración»" #: utlui.src msgctxt "" @@ -1837,7 +1837,7 @@ "STR_EVENT_MOUSECLICK_OBJECT\n" "string.text" msgid "Trigger hyperlink" -msgstr "Hacer clic en el hiperenlace" +msgstr "Activar hiperenlace" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/source/uibase/docvw.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/source/uibase/docvw.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/source/uibase/docvw.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/source/uibase/docvw.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-07 21:35+0200\n" -"PO-Revision-Date: 2016-05-05 01:53+0000\n" +"PO-Revision-Date: 2017-04-25 13:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462413208.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493126304.000000\n" #: docvw.src msgctxt "" @@ -212,7 +212,7 @@ "SID_WIN_FULLSCREEN\n" "menuitem.text" msgid "Leave Full-Screen Mode" -msgstr "Salir del modo de pantalla completa" +msgstr "Abandonar modo de pantalla completa" #: docvw.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-02 18:26+0000\n" +"PO-Revision-Date: 2017-04-21 09:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488479195.000000\n" +"X-POOTLE-MTIME: 1492768623.000000\n" #: abstractdialog.ui msgctxt "" @@ -986,7 +986,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "Personalizar" #: businessdatapage.ui msgctxt "" @@ -10001,7 +10001,7 @@ "label\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Contorno" #: notebookbar_groups.ui msgctxt "" @@ -10010,7 +10010,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Editar contorno" #: notebookbar_single.ui msgctxt "" @@ -10019,7 +10019,7 @@ "tooltip_text\n" "string.text" msgid "Horizontal Alignment" -msgstr "" +msgstr "Alineación horizontal" #: notebookbar_single.ui msgctxt "" @@ -10028,7 +10028,7 @@ "tooltip_text\n" "string.text" msgid "Indent" -msgstr "" +msgstr "Sangría" #: notebookbar_single.ui msgctxt "" @@ -10037,7 +10037,7 @@ "tooltip_text\n" "string.text" msgid "Indent" -msgstr "" +msgstr "Sangría" #: numberingnamedialog.ui msgctxt "" @@ -10388,7 +10388,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Enlace" #: objectdialog.ui msgctxt "" @@ -11346,7 +11346,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Insertions" -msgstr "" +msgstr "Color de inserciones" #: optredlinepage.ui msgctxt "" @@ -11391,7 +11391,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Deletions" -msgstr "" +msgstr "Color de eliminaciones" #: optredlinepage.ui msgctxt "" @@ -11436,7 +11436,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Changed Attributes" -msgstr "" +msgstr "Color de atributos modificados" #: optredlinepage.ui msgctxt "" @@ -11463,7 +11463,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Mark" -msgstr "" +msgstr "Color de marca" #: optredlinepage.ui msgctxt "" @@ -12142,7 +12142,7 @@ "label\n" "string.text" msgid "1 Column" -msgstr "" +msgstr "1 columna" #: pagecolumncontrol.ui msgctxt "" @@ -12160,7 +12160,7 @@ "label\n" "string.text" msgid "3 Columns" -msgstr "" +msgstr "3 columnas" #: pagecolumncontrol.ui msgctxt "" @@ -12169,7 +12169,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagecolumncontrol.ui msgctxt "" @@ -12178,7 +12178,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagecolumncontrol.ui msgctxt "" @@ -12214,7 +12214,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagecolumncontrol.ui msgctxt "" @@ -12223,7 +12223,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagecolumncontrol.ui msgctxt "" @@ -12232,7 +12232,7 @@ "label\n" "string.text" msgid "_More Options" -msgstr "" +msgstr "_Más opciones" #: pagecolumncontrol.ui msgctxt "" @@ -12241,7 +12241,7 @@ "tooltip_text\n" "string.text" msgid "More Options" -msgstr "" +msgstr "Más opciones" #: pagefooterpanel.ui msgctxt "" @@ -12250,7 +12250,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pagefooterpanel.ui msgctxt "" @@ -12259,7 +12259,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizado" #: pagefooterpanel.ui msgctxt "" @@ -12268,7 +12268,7 @@ "label\n" "string.text" msgid "Spacing:" -msgstr "" +msgstr "Espaciado:" #: pagefooterpanel.ui msgctxt "" @@ -12277,7 +12277,7 @@ "label\n" "string.text" msgid "Same Content:" -msgstr "" +msgstr "Mismo contenido:" #: pageformatpanel.ui msgctxt "" @@ -12286,7 +12286,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Tamaño:" #: pageformatpanel.ui msgctxt "" @@ -12295,7 +12295,7 @@ "label\n" "string.text" msgid "Width:" -msgstr "" +msgstr "Anchura:" #: pageformatpanel.ui msgctxt "" @@ -12304,7 +12304,7 @@ "label\n" "string.text" msgid "Height:" -msgstr "" +msgstr "Altura:" #: pageformatpanel.ui msgctxt "" @@ -12313,7 +12313,7 @@ "label\n" "string.text" msgid "Orientation:" -msgstr "" +msgstr "Orientación:" #: pageformatpanel.ui msgctxt "" @@ -12322,7 +12322,7 @@ "tooltip_text\n" "string.text" msgid "Paper Width" -msgstr "" +msgstr "Anchura de papel" #: pageformatpanel.ui msgctxt "" @@ -12331,7 +12331,7 @@ "tooltip_text\n" "string.text" msgid "Paper Height" -msgstr "" +msgstr "Altura de papel" #: pageformatpanel.ui msgctxt "" @@ -12340,7 +12340,7 @@ "0\n" "stringlist.text" msgid "Portrait" -msgstr "" +msgstr "Vertical" #: pageformatpanel.ui msgctxt "" @@ -12349,7 +12349,7 @@ "1\n" "stringlist.text" msgid "Landscape" -msgstr "" +msgstr "Horizontal" #: pageformatpanel.ui msgctxt "" @@ -12358,7 +12358,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pageformatpanel.ui msgctxt "" @@ -12367,7 +12367,7 @@ "0\n" "stringlist.text" msgid "None" -msgstr "" +msgstr "Ninguno" #: pageformatpanel.ui msgctxt "" @@ -12376,7 +12376,7 @@ "1\n" "stringlist.text" msgid "Narrow" -msgstr "" +msgstr "Estrechos" #: pageformatpanel.ui msgctxt "" @@ -12385,7 +12385,7 @@ "2\n" "stringlist.text" msgid "Moderate" -msgstr "" +msgstr "Moderados" #: pageformatpanel.ui msgctxt "" @@ -12394,7 +12394,7 @@ "3\n" "stringlist.text" msgid "Normal 0.75\"" -msgstr "" +msgstr "Normales (1,9 cm/0,75″)" #: pageformatpanel.ui msgctxt "" @@ -12403,7 +12403,7 @@ "4\n" "stringlist.text" msgid "Normal 1\"" -msgstr "" +msgstr "Normales (2,54 cm/1″)" #: pageformatpanel.ui msgctxt "" @@ -12412,7 +12412,7 @@ "5\n" "stringlist.text" msgid "Normal 1.25\"" -msgstr "" +msgstr "Normales (3,17 cm/1,25″)" #: pageformatpanel.ui msgctxt "" @@ -12421,7 +12421,7 @@ "6\n" "stringlist.text" msgid "Wide" -msgstr "" +msgstr "Amplios" #: pageformatpanel.ui msgctxt "" @@ -12430,7 +12430,7 @@ "7\n" "stringlist.text" msgid "Mirrored" -msgstr "" +msgstr "Reflejados" #: pageformatpanel.ui msgctxt "" @@ -12439,7 +12439,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizados" #: pageheaderpanel.ui msgctxt "" @@ -12448,7 +12448,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pageheaderpanel.ui msgctxt "" @@ -12457,7 +12457,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizados" #: pageheaderpanel.ui msgctxt "" @@ -12466,7 +12466,7 @@ "label\n" "string.text" msgid "Spacing:" -msgstr "" +msgstr "Espaciado:" #: pageheaderpanel.ui msgctxt "" @@ -12475,7 +12475,7 @@ "label\n" "string.text" msgid "Same Content:" -msgstr "" +msgstr "Mismo contenido:" #: pagemargincontrol.ui msgctxt "" @@ -12520,7 +12520,7 @@ "label\n" "string.text" msgid "Last Custom Value" -msgstr "" +msgstr "Último valor personalizado" #: pagemargincontrol.ui msgctxt "" @@ -12565,7 +12565,7 @@ "label\n" "string.text" msgid "Last Custom Value" -msgstr "" +msgstr "Último valor personalizado" #: pagemargincontrol.ui msgctxt "" @@ -12673,7 +12673,7 @@ "label\n" "string.text" msgid "Portrait" -msgstr "" +msgstr "Vertical" #: pageorientationcontrol.ui msgctxt "" @@ -12682,7 +12682,7 @@ "label\n" "string.text" msgid "Landscape" -msgstr "" +msgstr "Horizontal" #: pageorientationcontrol.ui msgctxt "" @@ -12700,7 +12700,7 @@ "label\n" "string.text" msgid "_More Options" -msgstr "" +msgstr "_Más opciones" #: pagesizecontrol.ui msgctxt "" @@ -12709,7 +12709,7 @@ "tooltip_text\n" "string.text" msgid "More Options" -msgstr "" +msgstr "Más opciones" #: pagestylespanel.ui msgctxt "" @@ -12718,7 +12718,7 @@ "label\n" "string.text" msgid "Number:" -msgstr "" +msgstr "Número:" #: pagestylespanel.ui msgctxt "" @@ -12727,7 +12727,7 @@ "label\n" "string.text" msgid "Background:" -msgstr "" +msgstr "Fondo:" #: pagestylespanel.ui msgctxt "" @@ -12736,7 +12736,7 @@ "label\n" "string.text" msgid "Layout:" -msgstr "" +msgstr "Disposición:" #: pagestylespanel.ui msgctxt "" @@ -12745,7 +12745,7 @@ "label\n" "string.text" msgid "Columns:" -msgstr "" +msgstr "Columnas:" #: pagestylespanel.ui msgctxt "" @@ -12781,7 +12781,7 @@ "3\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagestylespanel.ui msgctxt "" @@ -12790,7 +12790,7 @@ "4\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagestylespanel.ui msgctxt "" @@ -12979,7 +12979,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Enlace" #: picturedialog.ui msgctxt "" @@ -13546,7 +13546,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "First name" -msgstr "Nombre" +msgstr "Nombre(s)" #: privateuserpage.ui msgctxt "" @@ -13555,7 +13555,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Last name" -msgstr "Apellidos" +msgstr "Apellido(s)" #: privateuserpage.ui msgctxt "" @@ -14527,7 +14527,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paralelo" #: sidebarwrap.ui msgctxt "" @@ -14545,7 +14545,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Optimal" -msgstr "" +msgstr "Óptimo" #: sidebarwrap.ui msgctxt "" @@ -14563,7 +14563,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Before" -msgstr "" +msgstr "Antes" #: sidebarwrap.ui msgctxt "" @@ -14581,7 +14581,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "After" -msgstr "" +msgstr "Después" #: sidebarwrap.ui msgctxt "" @@ -15130,7 +15130,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 2 Width" -msgstr "" +msgstr "Anchura de columna 2" #: tablecolumnpage.ui msgctxt "" @@ -15139,7 +15139,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 3 Width" -msgstr "" +msgstr "Anchura de columna 3" #: tablecolumnpage.ui msgctxt "" @@ -15148,7 +15148,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 4 Width" -msgstr "" +msgstr "Anchura de columna 4" #: tablecolumnpage.ui msgctxt "" @@ -15157,7 +15157,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 5 Width" -msgstr "" +msgstr "Anchura de columna 5" #: tablecolumnpage.ui msgctxt "" @@ -15166,7 +15166,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 6 Width" -msgstr "" +msgstr "Anchura de columna 6" #: tablecolumnpage.ui msgctxt "" @@ -15175,7 +15175,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 1 Width" -msgstr "" +msgstr "Anchura de columna 1" #: tablecolumnpage.ui msgctxt "" @@ -15625,7 +15625,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "Personalizar" #: templatedialog2.ui msgctxt "" @@ -16399,7 +16399,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Previsualización" #: tocdialog.ui msgctxt "" @@ -16669,7 +16669,7 @@ "label\n" "string.text" msgid "L_ink" -msgstr "" +msgstr "H_iperenlace" #: tocentriespage.ui msgctxt "" @@ -16786,7 +16786,7 @@ "tooltip_text\n" "string.text" msgid "Ascending" -msgstr "" +msgstr "Ascendente" #: tocentriespage.ui msgctxt "" @@ -16795,7 +16795,7 @@ "tooltip_text\n" "string.text" msgid "Descending" -msgstr "" +msgstr "Descendente" #: tocentriespage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/vcl/source/src.po libreoffice-l10n-5.3.3~rc2/translations/source/es/vcl/source/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/vcl/source/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/vcl/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-18 04:57+0000\n" +"PO-Revision-Date: 2017-04-28 18:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489813032.000000\n" +"X-POOTLE-MTIME: 1493405080.000000\n" #: app.src msgctxt "" @@ -354,7 +354,7 @@ "STR_FPICKER_AUTO_EXTENSION\n" "string.text" msgid "~Automatic file name extension" -msgstr "~Extensión del nombre del archivo automática" +msgstr "~Extensión de nombre de archivo automática" #: fpicker.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/es/wizards/source/formwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/es/wizards/source/formwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/es/wizards/source/formwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/es/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-12-12 17:03+0000\n" +"PO-Revision-Date: 2017-04-28 21:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1481562201.000000\n" +"X-POOTLE-MTIME: 1493416328.000000\n" #: dbwizres.src msgctxt "" @@ -2769,7 +2769,7 @@ "RID_DB_TABLE_WIZARD_START + 51\n" "string.text" msgid "The field '%FIELDNAME' already exists." -msgstr "El campo '%FIELDNAME' ya existe." +msgstr "El campo «%FIELDNAME» ya existe." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/et/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-28 22:54+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485644048.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Autoriõigus © 2000–2016 LibreOffice'i kaastöötajad." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 23:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Estonian \n" @@ -5743,7 +5743,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5751,7 +5751,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 02:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Estonian \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/et/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-23 01:42+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485135746.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarhiline" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/et/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-28 22:53+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485644015.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME on kättesaadavaks tehtud vastavalt Mozilla Avaliku Litsentsi (MPL-i) versioonile 2.0. MPL-i koopia leiab aadressilt http://mozilla.org/MPL/2.0/\n" -"\n" -"Kolmandate osapoolte koodi lisa-autoriõiguse märkused ja litsentsitingimused, mis rakenduvad osadele tarkvarast, on kirjas failis LICENSE.html; täpsete ingliskeelsete tingimuste nägemiseks vajuta \"Kuva litsents\".\n" -"\n" -"Kõik siin mainitud kaubamärgid ja registreeritud kaubamärgid kuuluvad nende omanikele.\n" -"\n" -"Autoriõigus © 2000–2016 LibreOffice'i kaastöötajad. Kõik õigused kaitstud.\n" -"\n" -"Selle toote valmistas %OOOVENDOR OpenOffice.org-i põhjal, mille autoriõigus: 2000, 2011 Oracle ja/või partnerid. %OOOVENDOR tunnustab kõiki kogukonnaliikmeid, täpsem info: http://www.libreoffice.org/" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/et/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-08-25 22:17+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-10-23 19:16+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440541042.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1445627793.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/et/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-22 15:47+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485100038.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungari (vanaungari ruunikirjas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/et/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-22 23:20+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485127239.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/et/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/et/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/et/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/et/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-22 23:05+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485126330.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Välju" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Rakenda muudatused ja taaskäivita" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-05 08:06+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488701180.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOfficen kolaboratzaileak." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/formula/source/core/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/formula/source/core/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/formula/source/core/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-22 21:44+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-17 16:20+0000\n" +"Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492446036.000000\n" #: core_resource.src msgctxt "" @@ -38,7 +41,7 @@ "SC_OPCODE_IF_NA\n" "string.text" msgid "IFNA" -msgstr "ISNA" +msgstr "IFNA" #: core_resource.src msgctxt "" @@ -627,6 +630,15 @@ #: core_resource.src msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_IS_NV\n" +"string.text" +msgid "ISNA" +msgstr "ISNA" + +#: core_resource.src +msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_IS_ERR\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-29 17:20+0000\n" -"Last-Translator: Asier Sarasua Garmendia \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 18:44+0000\n" +"Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490808022.000000\n" +"X-POOTLE-MTIME: 1492454675.000000\n" #: 01120000.xhp msgctxt "" @@ -5673,22 +5673,20 @@ msgstr "Funtzioak" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -9355,7 +9353,7 @@ "hd_id31536851\n" "help.text" msgid "IFNA" -msgstr "ISNA" +msgstr "IFNA" #: 04060104.xhp msgctxt "" @@ -38293,7 +38291,7 @@ "par_id295666\n" "help.text" msgid "=BINOM.DIST(A1;12;0.5;0) shows (if the values 0 to 12 are entered in A1) the probabilities for 12 flips of a coin that Heads will come up exactly the number of times entered in A1." -msgstr "=BINOMDIST(A1;12;0,5;0): 0tik12ra bitarteko balioak sartzen badira A1 gelaxkan eta txanpona 12 aldiz botatzen bada, Aurrealdea A1en adierazi adina aldiz ateratzeko probabilitatea kalkulatzen du, hau da, A1=5 bada, 12 botalditan 5 aurrealde ateratzeko probabilitatea ematen du." +msgstr "=BINOM.DIST(A1;12;0,5;0): 0tik12ra bitarteko balioak sartzen badira A1 gelaxkan eta txanpona 12 aldiz botatzen bada, Aurrealdea A1en adierazi adina aldiz ateratzeko probabilitatea kalkulatzen du, hau da, A1=5 bada, 12 botalditan 5 aurrealde ateratzeko probabilitatea ematen du." #: 04060181.xhp msgctxt "" @@ -38986,13 +38984,12 @@ msgstr "CHITEST funtzioa" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "hd_id2954260\n" "help.text" msgid "CHISQ.TEST" -msgstr "CHISQDIST" +msgstr "CHISQ.TEST" #: 04060181.xhp msgctxt "" @@ -39316,13 +39313,12 @@ msgstr "CHISQ.DIST funtzioa" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "hd_id2848690\n" "help.text" msgid "CHISQ.DIST" -msgstr "CHISQDIST" +msgstr "CHISQ.DIST" #: 04060181.xhp msgctxt "" @@ -39341,13 +39337,12 @@ msgstr "Sintaxia" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2858439\n" "help.text" msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)" -msgstr "CHISQDIST(Zenbakia; Askatasun_graduak; Metatua)" +msgstr "CHISQ.DIST(Zenbakia; Askatasun_graduak; Metatua)" #: 04060181.xhp #, fuzzy @@ -39409,13 +39404,12 @@ msgstr "CHISQ.DIST.RT funtzioa" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "hd_id2948690\n" "help.text" msgid "CHISQ.DIST.RT" -msgstr "CHISQDIST" +msgstr "CHISQ.DIST.RT" #: 04060181.xhp msgctxt "" @@ -39492,7 +39486,6 @@ msgstr "Ausazko laginaren khi-karratuaren balioa 13,27 bada eta saiakuntzak 5 graduko askatasuna badu, orduan, hipotesia bete egingo da % 2ko errore-probabilitatearekin." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id0119200902231887\n" @@ -39557,7 +39550,6 @@ msgstr "Metatua (aukerakoa): 0 edo Faltsua, probabilitate-dentsitatearen funtzioa kalkulatzen du. Beste balio batzuk edo Egiazkoa izanez gero, edo ez ikusi eginez gero, banaketa metatuaren funtzioa kalkulatzen du." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id3150603\n" @@ -39638,22 +39630,20 @@ msgstr "=EXPONDIST(3;0,5;1): 0,78 ematen du." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id2950603\n" "help.text" msgid "EXPON.DIST function exponential distributions" -msgstr "EXPONDIST funtzioa banaketa esponentzialak" +msgstr "EXPON.DIST funtzioa banaketa esponentzialak" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "hd_id2950603\n" "help.text" msgid "EXPON.DIST" -msgstr "EXPONDIST" +msgstr "EXPON.DIST" #: 04060181.xhp msgctxt "" @@ -39672,13 +39662,12 @@ msgstr "Sintaxia" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2950987\n" "help.text" msgid "EXPON.DIST(Number; Lambda; C)" -msgstr "EXPONDIST(Zenbakia; lambda; M)" +msgstr "EXPON.DIST(Zenbakia; lambda; M)" #: 04060181.xhp msgctxt "" @@ -39714,13 +39703,12 @@ msgstr "Adibidea" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2950357\n" "help.text" msgid "=EXPON.DIST(3;0.5;1) returns 0.7768698399." -msgstr "=EXPONDIST(3;0,5;1): 0,78 ematen du." +msgstr "=EXPON.DIST(3;0,5;1): 0.7768698399 ematen du." #: 04060182.xhp msgctxt "" @@ -39829,23 +39817,21 @@ msgstr "=FINV(0,5;5;10): 0,93 ematen du." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2945388\n" "help.text" msgid "F.INV function Values of the inverse left tail of the F distribution" -msgstr "FINV funtzioa F probabilitate-banaketaren alderantzizkoa" +msgstr "F.INV funtzioa F probabilitate-banaketaren alderantzizkoa" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2945388\n" "2\n" "help.text" msgid "F.INV" -msgstr "FINV" +msgstr "F.INV" #: 04060182.xhp msgctxt "" @@ -39866,14 +39852,13 @@ msgstr "Sintaxia" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2953068\n" "5\n" "help.text" msgid "F.INV(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "FINV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)" +msgstr "F.INV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)" #: 04060182.xhp #, fuzzy @@ -39915,23 +39900,21 @@ msgstr "Adibidea" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2945073\n" "10\n" "help.text" msgid "=F.INV(0.5;5;10) yields 0.9319331609." -msgstr "=FINV(0,5;5;10): 0,93 ematen du." +msgstr "=F.INV(0,5;5;10): 0,9319331609 ematen du." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2845388\n" "help.text" msgid "F.INV.RT function Values of the inverse right tail of the F distribution" -msgstr "FINV funtzioa F probabilitate-banaketaren alderantzizkoa" +msgstr "" #: 04060182.xhp msgctxt "" @@ -39961,14 +39944,13 @@ msgstr "Sintaxia" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2853068\n" "5\n" "help.text" msgid "F.INV.RT(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "FINV(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)" +msgstr "F.INV.RT(Zenbakia; askatasun_graduak_1; askatasun_graduak_2)" #: 04060182.xhp #, fuzzy @@ -40010,14 +39992,13 @@ msgstr "Adibidea" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2845073\n" "10\n" "help.text" msgid "=F.INV.RT(0.5;5;10) yields 0.9319331609." -msgstr "=FINV(0,5;5;10): 0,93 ematen du." +msgstr "=F.INV.RT(0,5;5;10): 0,9319331609 ematen du." #: 04060182.xhp msgctxt "" @@ -40242,23 +40223,21 @@ msgstr "=FTEST(A1:A30;B1:B12): bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2951390\n" "help.text" msgid "F.TEST function" -msgstr "FTEST funtzioa" +msgstr "F.TEST funtzioa" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2951390\n" "28\n" "help.text" msgid "F.TEST" -msgstr "FTEST" +msgstr "F.TEST" #: 04060182.xhp msgctxt "" @@ -40279,14 +40258,13 @@ msgstr "Sintaxia" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2953024\n" "31\n" "help.text" msgid "F.TEST(Data1; Data2)" -msgstr "FTEST(Datuak_1; Datuak_2)" +msgstr "F.TEST(Datuak_1; Datuak_2)" #: 04060182.xhp msgctxt "" @@ -40316,14 +40294,13 @@ msgstr "Adibidea" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2959126\n" "35\n" "help.text" msgid "=F.TEST(A1:A30;B1:B12) calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population." -msgstr "=FTEST(A1:A30;B1:B12): bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du." +msgstr "=F.TEST(A1:A30;B1:B12): bi datu multzoak bariantzetan desberdinak ote diren kalkulatzen du, eta bi multzoak populazio berekoak izateko probabilitatea ematen du." #: 04060182.xhp msgctxt "" @@ -40753,23 +40730,21 @@ msgstr "=GAMMAINV(0,8;1;1): 1,61 ematen du." #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2914841\n" "help.text" msgid "GAMMA.INV function" -msgstr "GAMMAINV funtzioa" +msgstr "GAMMA.INV funtzioa" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2914841\n" "47\n" "help.text" msgid "GAMMA.INV" -msgstr "GAMMAINV" +msgstr "GAMMA.INV" #: 04060182.xhp msgctxt "" @@ -40798,14 +40773,13 @@ msgstr "Sintaxia" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2915828\n" "50\n" "help.text" msgid "GAMMA.INV(Number; Alpha; Beta)" -msgstr "GAMMAINV(Zenbakia; Alfa; Beta)" +msgstr "GAMMA.INV(Zenbakia; Alfa; Beta)" #: 04060182.xhp #, fuzzy @@ -40845,14 +40819,13 @@ msgstr "Adibidea" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2913331\n" "55\n" "help.text" msgid "=GAMMA.INV(0.8;1;1) yields 1.61." -msgstr "=GAMMAINV(0,8;1;1): 1,61 ematen du." +msgstr "=GAMMA.INV(0,8;1;1): 1,61 ematen du." #: 04060182.xhp msgctxt "" @@ -41534,23 +41507,21 @@ msgstr "" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "bm_id2953216\n" "help.text" msgid "Z.TEST function" -msgstr "ZTEST funtzioa" +msgstr "Z.TEST funtzioa" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "hd_id2953216\n" "103\n" "help.text" msgid "Z.TEST" -msgstr "ZTEST" +msgstr "Z.TEST" #: 04060182.xhp msgctxt "" @@ -41571,14 +41542,13 @@ msgstr "Sintaxia" #: 04060182.xhp -#, fuzzy msgctxt "" "04060182.xhp\n" "par_id2953274\n" "106\n" "help.text" msgid "Z.TEST(Data; mu; Sigma)" -msgstr "ZTEST(Datuak; mu; Sigma)" +msgstr "Z.TEST(Datuak; mu; Sigma)" #: 04060182.xhp #, fuzzy @@ -42185,23 +42155,21 @@ msgstr "=CONFIDENCE(0,05; 1,5; 100): emaitza 0,29 da." #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "bm_id2953559\n" "help.text" msgid "CONFIDENCE.T function" -msgstr "CONFIDENCE funtzioa" +msgstr "CONFIDENCE.T funtzioa" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "hd_id2953559\n" "20\n" "help.text" msgid "CONFIDENCE.T" -msgstr "CONFIDENCE" +msgstr "CONFIDENCE.T" #: 04060183.xhp msgctxt "" @@ -42222,14 +42190,13 @@ msgstr "Sintaxia" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2947501\n" "23\n" "help.text" msgid "CONFIDENCE.T(Alpha; StDev; Size)" -msgstr "CONFIDENCE(Alfa; STDEV; Tamaina)" +msgstr "CONFIDENCE.T(Alfa; STDEV; Tamaina)" #: 04060183.xhp msgctxt "" @@ -42268,23 +42235,21 @@ msgstr "Adibidea" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2953335\n" "28\n" "help.text" msgid "=CONFIDENCE.T(0.05;1.5;100) gives 0.2976325427." -msgstr "=CONFIDENCE(0,05; 1,5; 100): emaitza 0,29 da." +msgstr "=CONFIDENCE.T(0,05; 1,5; 100): emaitza 0,2976325427 da." #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "bm_id2853559\n" "help.text" msgid "CONFIDENCE.NORM function" -msgstr "CONFIDENCE funtzioa" +msgstr "CONFIDENCE.NORM funtzioa" #: 04060183.xhp msgctxt "" @@ -42314,14 +42279,13 @@ msgstr "Sintaxia" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2847501\n" "23\n" "help.text" msgid "CONFIDENCE.NORM(Alpha; StDev; Size)" -msgstr "CONFIDENCE(Alfa; STDEV; Tamaina)" +msgstr "CONFIDENCE.NORM(Alfa; STDEV; Tamaina)" #: 04060183.xhp msgctxt "" @@ -42953,14 +42917,13 @@ msgstr "LOGINV funtzioabanaketa normal logaritmikoaren alderantzizkoa" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "hd_id2901928\n" "66\n" "help.text" msgid "LOGNORM.INV" -msgstr "LOGNORMDIST" +msgstr "LOGNORM.INV" #: 04060183.xhp msgctxt "" @@ -43048,13 +43011,12 @@ msgstr "=LOGINV(0,05; 0; 1): 0,19 ematen du." #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "bm_id3158417\n" "help.text" msgid "LOGNORMDIST functionlognormal distribution" -msgstr "NEGBINOMDIST funtzioabanaketa binomial negatiboa" +msgstr "" #: 04060183.xhp msgctxt "" @@ -43146,23 +43108,21 @@ msgstr "=LOGNORMDIST(0,1; 0; 1): 0,01 ematen du." #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "bm_id2901417\n" "help.text" msgid "LOGNORM.DIST functionlognormal distribution" -msgstr "NEGBINOMDIST funtzioabanaketa binomial negatiboa" +msgstr "" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "hd_id2908417\n" "76\n" "help.text" msgid "LOGNORM.DIST" -msgstr "LOGNORMDIST" +msgstr "LOGNORM.DIST" #: 04060183.xhp msgctxt "" @@ -43183,14 +43143,13 @@ msgstr "Sintaxia" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2900686\n" "79\n" "help.text" msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)" -msgstr "LOGNORMDIST(Zenbakia; Batez bestekoa; Desbiderapen_estandarra; Metagarria)" +msgstr "LOGNORM.DIST(Zenbakia; Batez bestekoa; Desbiderapen_estandarra; Metagarria)" #: 04060183.xhp #, fuzzy @@ -43241,14 +43200,13 @@ msgstr "Adibidea" #: 04060183.xhp -#, fuzzy msgctxt "" "04060183.xhp\n" "par_id2909778\n" "84\n" "help.text" msgid "=LOGNORM.DIST(0.1;0;1;1) returns 0.0106510993." -msgstr "=LOGNORMDIST(0,1; 0; 1): 0,01 ematen du." +msgstr "=LOGNORM.DIST(0.1;0;1;1): 0.0106510993 ematen du." #: 04060184.xhp msgctxt "" @@ -44232,23 +44190,21 @@ msgstr "=NEGBINOMDIST(1; 1; 0,5): emaitza 0,25 da." #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "bm_id2949879\n" "help.text" msgid "NEGBINOM.DIST functionnegative binomial distribution" -msgstr "NEGBINOMDIST funtzioabanaketa binomial negatiboa" +msgstr "NEGBINOM.DIST funtzioabanaketa binomial negatiboa" #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "hd_id2949879\n" "51\n" "help.text" msgid "NEGBINOM.DIST" -msgstr "NEGBINOMDIST" +msgstr "NEGBINOM.DIST" #: 04060184.xhp msgctxt "" @@ -44323,24 +44279,22 @@ msgstr "Adibidea" #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "par_id2948770\n" "59\n" "help.text" msgid "=NEGBINOM.DIST(1;1;0.5;0) returns 0.25." -msgstr "=NEGBINOMDIST(1; 1; 0,5): emaitza 0,25 da." +msgstr "=NEGBINOM.DIST(1; 1; 0,5): emaitza 0,25 da." #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "par_id2948771\n" "59\n" "help.text" msgid "=NEGBINOM.DIST(1;1;0.5;1) returns 0.75." -msgstr "=NEGBINOMDIST(1; 1; 0,5): emaitza 0,25 da." +msgstr "=NEGBINOM.DIST(1; 1; 0,5): emaitza 0,25 da." #: 04060184.xhp msgctxt "" @@ -46736,23 +46690,21 @@ msgstr "=STDEVP(A1:A50): erreferentzia-datuen desbiderapen estandarra ematen du." #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2949734\n" "help.text" msgid "STDEV.P function standard deviations in statistics;based on a population" -msgstr "STDEVP funtzioa estatistikako desbiderapen estandarrak;populazio batean oinarrituta" +msgstr "STDEV.P funtzioa estatistikako desbiderapen estandarrak;populazio batean oinarrituta" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "hd_id2949734\n" "38\n" "help.text" msgid "STDEV.P" -msgstr "STDEVP" +msgstr "STDEV.P" #: 04060185.xhp msgctxt "" @@ -46773,14 +46725,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2954392\n" "41\n" "help.text" msgid "STDEV.P(Number1;Number2;...Number30)" -msgstr "STDEVP(zenbakia 1; zenbakia 2; ... zenbakia 30)" +msgstr "STDEV.P(zenbakia 1; zenbakia 2; ... zenbakia 30)" #: 04060185.xhp #, fuzzy @@ -46802,14 +46753,13 @@ msgstr "Adibidea" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2953933\n" "44\n" "help.text" msgid "=STDEV.P(A1:A50) returns a standard deviation of the data referenced." -msgstr "=STDEVP(A1:A50): erreferentzia-datuen desbiderapen estandarra ematen du." +msgstr "=STDEV.P(A1:A50): erreferentzia-datuen desbiderapen estandarra ematen du." #: 04060185.xhp #, fuzzy @@ -46821,14 +46771,13 @@ msgstr "STDEV funtzioa estatistikako desbiderapen estandarrak;lagin batean oinarrituta" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "hd_id2849734\n" "38\n" "help.text" msgid "STDEV.S" -msgstr "STDEVP" +msgstr "STDEV.S" #: 04060185.xhp msgctxt "" @@ -46849,14 +46798,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2854392\n" "41\n" "help.text" msgid "STDEV.S(Number1;Number2;...Number30)" -msgstr "STDEVP(zenbakia 1; zenbakia 2; ... zenbakia 30)" +msgstr "STDEV.S(zenbakia 1; zenbakia 2; ... zenbakia 30)" #: 04060185.xhp #, fuzzy @@ -46878,14 +46826,13 @@ msgstr "Adibidea" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2853933\n" "44\n" "help.text" msgid "=STDEV.S(A1:A50) returns a standard deviation of the data referenced." -msgstr "=STDEVP(A1:A50): erreferentzia-datuen desbiderapen estandarra ematen du." +msgstr "=STDEV.S(A1:A50): erreferentzia-datuen desbiderapen estandarra ematen du." #: 04060185.xhp msgctxt "" @@ -47121,23 +47068,21 @@ msgstr "=NORMSINV(0,908789): 1,3333 ematen du." #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2957986\n" "help.text" msgid "NORM.S.INV function normal distribution;inverse of standard" -msgstr "NORMSINV funtzioa banaketa normala;estandarraren alderantzizkoa" +msgstr "NORM.S.INV funtzioa banaketa normala;estandarraren alderantzizkoa" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "hd_id2957986\n" "56\n" "help.text" msgid "NORM.S.INV" -msgstr "NORMSINV" +msgstr "NORM.S.INV" #: 04060185.xhp msgctxt "" @@ -47187,14 +47132,13 @@ msgstr "Adibidea" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2949030\n" "62\n" "help.text" msgid "=NORM.S.INV(0.908789) returns 1.333334673." -msgstr "=NORMSINV(0,908789): 1,3333 ematen du." +msgstr "=NORM.S.INV(0,908789): 1,333334673 ematen du." #: 04060185.xhp msgctxt "" @@ -47682,23 +47626,21 @@ msgstr "=TINV(0.1;6): 1,94 ematen du" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2949579\n" "help.text" msgid "T.INV function one tailed inverse of t-distribution" -msgstr "TINV funtzioa T banaketaren alderantzizkoa" +msgstr "T.INV funtzioa T banaketaren alderantzizkoa" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "hd_id2949579\n" "98\n" "help.text" msgid "T.INV" -msgstr "TINV" +msgstr "T.INV" #: 04060185.xhp msgctxt "" @@ -47719,14 +47661,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2949289\n" "101\n" "help.text" msgid "T.INV(Number; DegreesFreedom)" -msgstr "TINV(zenbakia; askatasun_graduak)" +msgstr "T.INV(zenbakia; askatasun_graduak)" #: 04060185.xhp #, fuzzy @@ -47758,23 +47699,21 @@ msgstr "Adibidea" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2956010\n" "105\n" "help.text" msgid "=T.INV(0.1;6) returns -1.4397557473." -msgstr "=TINV(0.1;6): 1,94 ematen du" +msgstr "=T.INV(0.1;6): -1,4397557473 ematen du" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2849579\n" "help.text" msgid "T.INV.2T function inverse of two tailed t-distribution" -msgstr "TINV funtzioa T banaketaren alderantzizkoa" +msgstr "" #: 04060185.xhp msgctxt "" @@ -47804,14 +47743,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2849289\n" "101\n" "help.text" msgid "T.INV.2T(Number; DegreesFreedom)" -msgstr "TINV(zenbakia; askatasun_graduak)" +msgstr "T.INV.2T(zenbakia; askatasun_graduak)" #: 04060185.xhp #, fuzzy @@ -47950,23 +47888,21 @@ msgstr "=TTEST(A1:A50;B1:B50;2;2)" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2954129\n" "help.text" msgid "T.TEST function" -msgstr "TTEST funtzioa" +msgstr "T.TEST funtzioa" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "hd_id2954129\n" "107\n" "help.text" msgid "T.TEST" -msgstr "TTEST" +msgstr "T.TEST" #: 04060185.xhp msgctxt "" @@ -47987,14 +47923,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2951175\n" "110\n" "help.text" msgid "T.TEST(Data1; Data2; Mode; Type)" -msgstr "TTEST(datuak_1; datuak_2; modua; mota)" +msgstr "T.TEST(datuak_1; datuak_2; modua; mota)" #: 04060185.xhp #, fuzzy @@ -48046,14 +47981,13 @@ msgstr "Adibidea" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2950119\n" "116\n" "help.text" msgid "=T.TEST(A1:A50;B1:B50;2;2)" -msgstr "=TTEST(A1:A50;B1:B50;2;2)" +msgstr "=T.TEST(A1:A50;B1:B50;2;2)" #: 04060185.xhp msgctxt "" @@ -48182,14 +48116,13 @@ msgstr "Sintaxia" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "par_id2950521\n" "121\n" "help.text" msgid "T.DIST(Number; DegreesFreedom; Cumulative)" -msgstr "CHISQDIST(Zenbakia; Askatasun_graduak; Metatua)" +msgstr "T.DIST(Zenbakia; Askatasun_graduak; Metatua)" #: 04060185.xhp #, fuzzy @@ -48240,13 +48173,12 @@ msgstr "" #: 04060185.xhp -#, fuzzy msgctxt "" "04060185.xhp\n" "bm_id2854930\n" "help.text" msgid "T.DIST.2T function two tailed t-distribution" -msgstr "TDIST funtzioa T banaketa" +msgstr "" #: 04060185.xhp msgctxt "" @@ -48945,7 +48877,7 @@ "154\n" "help.text" msgid "Returns the number of permutations for a given number of objects (repetition allowed)." -msgstr "Errepikatuzko permutazioak kalkulatzen ditu." +msgstr "Emandako objektu kopuru baten permutazioak kalkulatzen ditu. (errepikapenak onartuta)." #: 04060185.xhp msgctxt "" @@ -60902,22 +60834,20 @@ msgstr "PRODUCT" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360153\n" "help.text" msgid "STDEV.S" -msgstr "STDEVP" +msgstr "STDEV.S" #: func_aggregate.xhp -#, fuzzy msgctxt "" "func_aggregate.xhp\n" "par_id2309201511360178\n" "help.text" msgid "STDEV.P" -msgstr "STDEVP" +msgstr "STDEV.P" #: func_aggregate.xhp #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-11-16 18:30+0000\n" "Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" @@ -2486,7 +2486,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-18 10:59+0000\n" +"PO-Revision-Date: 2017-04-02 12:23+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: LANGUAGE \n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487415593.000000\n" +"X-POOTLE-MTIME: 1491135797.000000\n" #: 00000004.xhp msgctxt "" @@ -247,7 +247,7 @@ "15\n" "help.text" msgid "Command Ctrl+F3" -msgstr "Komandoa Ktrl +F3" +msgstr "Komandoa Ctrl +F3" #: 00000402.xhp msgctxt "" @@ -408,7 +408,7 @@ "par_id3154763\n" "help.text" msgid "Command Ctrl+F8" -msgstr "Komandoa Ktrl+F8" +msgstr "Komandoa Ctrl+F8" #: 00000403.xhp msgctxt "" @@ -424,7 +424,7 @@ "par_id3151387\n" "help.text" msgid "Command Ctrl+F9" -msgstr "Komandoa Ktrl+F9" +msgstr "Komandoa Ctrl+F9" #: 00000403.xhp msgctxt "" @@ -440,7 +440,7 @@ "par_id3145823\n" "help.text" msgid "Command Ctrl+F10" -msgstr "Komandoa Ktrl+F10" +msgstr "Komandoa Ctrl+F10" #: 00000403.xhp msgctxt "" @@ -627,7 +627,7 @@ "57\n" "help.text" msgid "Command Ctrl+F2" -msgstr "Command Ktrl+F2" +msgstr "Command Ctrl+F2" #: 00000404.xhp msgctxt "" @@ -1040,7 +1040,7 @@ "par_id3145304\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Bibliography is the selected type)" -msgstr "" +msgstr "Aukeratu Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota fitxa (bibliografia denean hautatutako mota)" #: 00000404.xhp msgctxt "" @@ -1225,7 +1225,7 @@ "58\n" "help.text" msgid "Command Ctrl+F12" -msgstr "Command Ktrl+F12" +msgstr "Command Ctrl+F12" #: 00000404.xhp msgctxt "" @@ -2485,7 +2485,7 @@ "38\n" "help.text" msgid "Command Ctrl + plus sign" -msgstr "Komandoa Ktrl + plus ikurra" +msgstr "Komandoa Ctrl + plus ikurra" #: 00000406.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-18 11:01+0000\n" +"PO-Revision-Date: 2017-04-02 12:36+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: LANGUAGE \n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487415691.000000\n" +"X-POOTLE-MTIME: 1491136568.000000\n" #: 01120000.xhp msgctxt "" @@ -916,7 +916,7 @@ "73\n" "help.text" msgid "Type the number of the page number that you want to jump to, and then press Enter." -msgstr "" +msgstr "Idatzi joan nahi duzun orrialdearen zenbakia, eta sakatu 'Enter'." #: 02110000.xhp msgctxt "" @@ -925,7 +925,7 @@ "74\n" "help.text" msgid "To quickly move the cursor to another page while you are in a document, press Shift+Command Ctrl+F5, type the number of the page that you want to jump to, and then wait a few moments." -msgstr "Dokumentuan zaudela beste orrialde batera azkar joateko, sakatu Maius+Command Ktrl+F5, idatzi orrialde-zenbakia eta itxaron pixka bat." +msgstr "Dokumentuan zaudela beste orrialde batera azkar joateko, sakatu Maius+Ctrl komandoa+F5, idatzi orrialde-zenbakia eta itxaron pixka bat." #: 02110000.xhp msgctxt "" @@ -943,7 +943,7 @@ "8\n" "help.text" msgid "Shows or hides the Navigator list." -msgstr "" +msgstr "Nabigatzaile zerrenda erakusten edo ezkutatzen du." #: 02110000.xhp msgctxt "" @@ -978,7 +978,7 @@ "11\n" "help.text" msgid "Switches between the display of all categories in the Navigator and the selected category." -msgstr "" +msgstr "Nabigatzaileko kategoria guztien eta hautatutako kategoriaren artean txandakatzen da." #: 02110000.xhp msgctxt "" @@ -1057,7 +1057,7 @@ "18\n" "help.text" msgid "Moves the cursor to the header, or from the header to the document text area." -msgstr "" +msgstr "Kurtsorea goiburukora edo goiburukotik dokumentuko testu-areara eramaten du." #: 02110000.xhp msgctxt "" @@ -1092,7 +1092,7 @@ "21\n" "help.text" msgid "Moves the cursor to the footer, or from the footer to the document text area." -msgstr "" +msgstr "Kurtsorea orri-oinera edo orri-oinetik dokumentuko testu-areara eramaten du." #: 02110000.xhp msgctxt "" @@ -1127,7 +1127,7 @@ "24\n" "help.text" msgid "Jumps between the footnote text and the footnote anchor." -msgstr "" +msgstr "Oin-oharreko testuaren eta oin-oharreko ainguraren artean jauzi egiten du." #: 02110000.xhp msgctxt "" @@ -1162,7 +1162,7 @@ "35\n" "help.text" msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use." -msgstr "" +msgstr "Arrastatu eta jaregiteko aukerak ezartzen ditu nabigatzaileko elementuak dokumentuan txertatzeko, adibidez, hiperesteka gisa. Egin klik ikono horretan eta aukeratu erabili nahi duzun aukera." #: 02110000.xhp msgctxt "" @@ -1251,7 +1251,7 @@ "46\n" "help.text" msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window. You can also access this command by right-clicking a heading in the Navigator window." -msgstr "" +msgstr "Egin klik ikono horretan eta aukeratu Nabigatzailea leihoan ikusi nahi duzun kapitulu-mailen kopurua. Komando hori atzitzeko, 'Nabigatzaile' leihoko izenburuan klik egin dezakezu eskuineko botoiaz." #: 02110000.xhp msgctxt "" @@ -1304,7 +1304,7 @@ "49\n" "help.text" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "Hautatutako izenburua eta izenburuaren azpiko testua izenburu bat gora eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua bakarrik lekuz aldatzeko eta ez testua, sakatu Ctrl eta egin klik ikono horretan." #: 02110000.xhp msgctxt "" @@ -1339,7 +1339,7 @@ "52\n" "help.text" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "Hautatutako izenburua eta izenburuaren azpiko testua izenburu bat behera eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua bakarrik lekuz aldatzeko eta ez testua, sakatu Ctrl eta egin klik ikono horretan." #: 02110000.xhp msgctxt "" @@ -1374,7 +1374,7 @@ "56\n" "help.text" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "Hautatutako izenburuaren kapitulu-maila eta izenburuaren azpiko izenburuak maila bat igotzen ditu. Hautatutako izenburuaren kapitulu-maila bakarrik igotzeko, sakatu Ctrl eta egin klik ikono honetan." #: 02110000.xhp msgctxt "" @@ -1409,7 +1409,7 @@ "59\n" "help.text" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "" +msgstr "Hautatutako izenburuaren kapitulu-maila eta izenburuaren azpiko izenburuak maila bat jaisten ditu. Hautatutako izenburuaren kapitulu-maila bakarrik jaisteko, sakatu Ctrl eta egin klik ikono honetan." #: 02110000.xhp msgctxt "" @@ -1560,7 +1560,7 @@ "11\n" "help.text" msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose Tools - Customize. The various tables for adapting menus, keyboard input or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions." -msgstr "" +msgstr "$[officename] zure hobespen espezifikoen arabera konfiguratu ahal duzu, dokumentu batean nabigatzeko. Hori egiteko, aukeratu Tresnak - Pertsonalizatu. Hainbat taula daude menuak, teklatu-sarrera edo tresna-barrak moldatzeko. Hainbat funtzio dituzte \"Nabigatu\" arean, dokumentuaren barnean nabigatzeko. Modu horretan, dokumentuaren indize-etiketetara joan daiteke \"Hurrengo/Aurreko indize-etiketa\" funtzioen bitartez." #: 02110100.xhp msgctxt "" @@ -1970,7 +1970,7 @@ "63\n" "help.text" msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command." -msgstr "" +msgstr "Autotestu-sarrera berria sortzen du, baina soilik uneko dokumentuan egin duzun hautapeneko testutik abiatuta. Grafikoak, taulak eta beste objektuak ez dira kontuan hartzen. Komando hau ikusteko, izen bat sartu behar duzu." #: 02120000.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "par_id3145253\n" "help.text" msgid "Edits the selected bibliography entry." -msgstr "" +msgstr "Hautatutako bibliografia-sarrera editatzen du." #: 02130000.xhp msgctxt "" @@ -2550,7 +2550,7 @@ "par_id3153668\n" "help.text" msgid "To change the view between field names and field contents in your document, choose View - Field Names." -msgstr "" +msgstr "Dokumentuko eremu-izenen eta eremu-edukien ikuspegia txandakatzeko, aukeratu Ikusi - Eremu-izenak." #: 02140000.xhp msgctxt "" @@ -2862,7 +2862,7 @@ "par_id3155341\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikonoa" #: 02140000.xhp msgctxt "" @@ -2894,7 +2894,7 @@ "par_id3145117\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikonoa" #: 02140000.xhp msgctxt "" @@ -2910,7 +2910,7 @@ "tit\n" "help.text" msgid "Edit Footnote or Endnote" -msgstr "" +msgstr "Editatu oin-oharra edo amaiera-oharra" #: 02150000.xhp msgctxt "" @@ -2926,7 +2926,7 @@ "par_id3149097\n" "help.text" msgid "Edits the selected footnote or endnote anchor. Click in front of the footnote or endnote, and then choose this command. " -msgstr "" +msgstr "Hautatutako oin-oharra eta amaiera-oharraren aingura editatzen du. Egin klik oin-oharra edo amaiera-oharraren aurrealdean, eta aukeratu komando hau. " #: 02150000.xhp msgctxt "" @@ -2982,7 +2982,7 @@ "hd_id3150113\n" "help.text" msgid "Choose" -msgstr "" +msgstr "Aukeratu" #: 02150000.xhp msgctxt "" @@ -2990,7 +2990,7 @@ "par_id3149849\n" "help.text" msgid "To change the format of a footnote or endnote anchor or text, select it, and then choose Format - Character. You can press Command+TF11 to open the Styles and Formatting window and modify the footnote or endnote paragraph style." -msgstr "" +msgstr "Oin-ohar edo amaiera-ohar baten aingura edo testu formatua aldatzeko, hautatu, eta ondoren aukeratu Formatua - Karakterea. Komandoa+TF11 sakatu dezakezu, Estiloak eta formatuak leihoa irekitzeko eta oin-ohar eta amaiera-oharren paragrafo-estiloa aldatzeko." #: 02150000.xhp msgctxt "" @@ -3062,7 +3062,7 @@ "par_id3150023\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikonoa" #: 02150000.xhp msgctxt "" @@ -3094,7 +3094,7 @@ "par_id3154029\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikonoa" #: 02150000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-22 14:12+0000\n" +"PO-Revision-Date: 2017-04-17 18:44+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" "Language: eu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482415957.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492454680.000000\n" #: filter.src msgctxt "" @@ -18354,7 +18354,7 @@ "1\n" "string.text" msgid "Returns the number of permutations for a given number of objects (repetition allowed)." -msgstr "Errepikatuzko permutazioak kalkulatzen ditu." +msgstr "Emandako objektu kopuru baten permutazioak kalkulatzen ditu. (errepikapenak onartuta)" #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-26 13:06+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482757583.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkikoa" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-08 18:16+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1481220991.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME Mozilla Public License, v. 2.0 lizentziaren terminoak jarraituz argitaratu da. MPL lizentziaren kopia bat eskura daiteke http://mozilla.org/MPL/2.0/ helbidean.\n" -"\n" -"Hirugarrenen kodearen beste copyright-ohar eta lizentzia-termino batzuk, softwarearen beste zati batzuei aplikatutakoak, LICENSE.html fitxategian jaso dira; hautatu \"Erakutsi lizentzia\" xehetasunak ikusteko ingelesez.\n" -"\n" -"Aipatutako marka erregistratu guztiak, bakoitza bere jabearenak dira.\n" -"\n" -"Copyright © 2000-2016 LibreOffice kolaboratzaileak. Eskubide guztiak erreserbatuta.\n" -"\n" -"Produktu honen sortzailea %OOOVENDOR da. Oracle eta/edo haren afiliatuen Copyright 2000, 2011 lizentzia duen OpenOffice.org aplikazioan oinarrituta dago. %OOOVENDOR hornitzaileak komunitateko kide guztien lana aitortzen du, ikus http://www.libreoffice.org/ xehetasun gehiagorako." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-24 20:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-19 12:20+0000\n" "Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" "Language: eu\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456345217.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1458390004.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-10 09:17+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1481361425.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hungariera (Szekely-Hungariar Runak)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-26 13:33+0000\n" "Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482759237.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/eu/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/eu/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/eu/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/eu/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-05 08:12+0000\n" "Last-Translator: Osoitz \n" "Language-Team: Librezale \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488701533.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Irte_n" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Aplikatu aldaketak eta berrabiarazi" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 15:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: fa\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476797184.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480604955.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 21:01+0000\n" -"Last-Translator: Hossein \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-16 06:52+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467666071.000000\n" +"X-POOTLE-MTIME: 1479279127.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "سلسله‌مراتبی" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 21:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 15:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: fa\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467666266.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480606856.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 22:11+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440540716.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 11:19+0000\n" -"Last-Translator: Hossein \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-16 07:26+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462706353.000000\n" +"X-POOTLE-MTIME: 1479281219.000000\n" #: imagemgr.src msgctxt "" @@ -3910,6 +3910,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 21:08+0000\n" -"Last-Translator: Hossein \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-11-16 08:05+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467666504.000000\n" +"X-POOTLE-MTIME: 1479283511.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fa/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fa/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fa/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fa/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 15:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 16:35+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487435731.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 LibreOffice-kehittäjät." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 02:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5677,7 +5677,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5685,7 +5685,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 02:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Finnish \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 18:16+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487873815.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkkinen" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 18:23+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487874222.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME on julkaistu Mozilla Public License -lisenssin version 2.0 ehdoilla. MPL-lisenssin teksti on saatavilla osoitteessa http://mozilla.org/MPL/2.0/.\n" -"\n" -"Kolmansien osapuolten tekijänoikeustiedot sekä lisenssiehdot, jotka koskevat osaa ohjelmistosta, on listattu tiedostossa LICENSE.html; valitse Näytä lisenssiteksti nähdäksesi nämä tiedot englanniksi.\n" -"\n" -"Kaikki täällä mainitut tavaramerkit ja rekisteröidyt tavaramerkit kuuluvat kyseisten tavaramerkkien omistajille.\n" -"\n" -"Copyright © 2000–2016 LibreOffice-kehittäjät. Kaikki oikeudet pidätetään.\n" -"\n" -"Tämän tuotteen on luonut %OOOVENDOR. Se perustuu OpenOffice.orgiin, joka on Copyright 2000, 2011 Oracle ja/tai sen yhteistyökumppanit. %OOOVENDOR tunnustaa kaikkien yhteisön jäsenten työpanoksen. Lisätietoja osoitteesta http://fi.libreoffice.org/" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-04 15:55+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1451922933.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-29 17:22+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485710543.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "unkari (unkarilaiset riimut)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 19:59+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487447962.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fi/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fi/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fi/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fi/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 17:51+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487872306.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Lopeta" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Ota muutokset käyttöön ja käynnistä uudelleen" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-17 05:39+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 05:06+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1489729145.000000\n" +"X-POOTLE-MTIME: 1491973580.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,8 +185,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Contributeurs LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 Contributeurs LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-01 06:06+0000\n" -"Last-Translator: Jean-Baptiste Faure \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 08:20+0000\n" +"Last-Translator: sophie \n" "Language-Team: LANGUAGE \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488348381.000000\n" +"X-POOTLE-MTIME: 1491985256.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-21 11:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-29 15:41+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1487676593.000000\n" +"X-POOTLE-MTIME: 1493480492.000000\n" #: 01000000.xhp msgctxt "" @@ -2454,8 +2454,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Choisir une couleur" +msgid "Pick" +msgstr "Choisir" #: 01010501.xhp msgctxt "" @@ -12234,7 +12234,7 @@ "28\n" "help.text" msgid "In a presentation or drawing document, you can also activate the text editing mode through the Allow Quick Editing icon in the Option bar." -msgstr "Dans une présentation ou un document de dessin, vous pouvez également activer le mode d'édition de texte à l'aide de l'icône Autoriser l'édition rapide dans la barre Option.\"" +msgstr "Dans une présentation ou un document de dessin, vous pouvez également activer le mode d'édition de texte à l'aide de l icône Autoriser l édition rapide dans la barre Option.\"" #: 01070500.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-02-28 21:08+0000\n" +"PO-Revision-Date: 2017-04-27 15:25+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488316136.000000\n" +"X-POOTLE-MTIME: 1493306750.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -906,7 +906,7 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "Table de pil~ote..." +msgstr "Table ~dynamique..." #: CalcCommands.xcu msgctxt "" @@ -20096,7 +20096,7 @@ "ContextLabel\n" "value.text" msgid "S~pecial Character..." -msgstr "Charactères spéciaux..." +msgstr "Caractères spéciaux..." #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-06 17:27+0000\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 06:58+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1481045243.000000\n" +"X-POOTLE-MTIME: 1491980326.000000\n" #: dialog.src msgctxt "" @@ -724,6 +724,30 @@ msgid "Hierarchical" msgstr "Hiérarchie" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Mode Tout remplir" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Nouveau style à partir de la sélection" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Actualiser le style" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-06 17:09+0000\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 07:00+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1481044166.000000\n" +"X-POOTLE-MTIME: 1491980437.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -805,7 +805,7 @@ "\n" "Toutes les marques et marques déposées mentionnées dans ce document sont la propriété de leurs propriétaires respectifs.\n" "\n" -"Copyright © 2000, 2016 collaborateurs LibreOffice. Tous droits réservés.\n" +"Copyright © 2000, 2017 collaborateurs LibreOffice. Tous droits réservés.\n" "\n" "Ce produit a été créé par %OOOVENDOR, basé sur OpenOffice.org, qui est Copyright 2000, 2011 Oracle et/ou ses filiales. %OOOVENDOR remercie tous les membres de la communauté, veuillez consulter http://www.libreoffice.org/ pour plus de détails." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-09-14 04:36+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 05:07+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442205378.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491973630.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Texte formaté [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-04 18:31+0000\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 05:07+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1480876271.000000\n" +"X-POOTLE-MTIME: 1491973653.000000\n" #: imagemgr.src msgctxt "" @@ -3888,6 +3888,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hongrois (runes Hongrois-Szekely)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Anglais (Malaisie)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-28 17:45+0000\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 05:14+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1480355159.000000\n" +"X-POOTLE-MTIME: 1491974070.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Impossible de charger tous les SmartArts. Enregistrer en Microsoft Office 2010 ou suivant permettrait de résoudre ce problème." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/fr/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/fr/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/fr/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/fr/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-17 05:40+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 05:09+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1489729253.000000\n" +"X-POOTLE-MTIME: 1491973764.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5076,16 +5076,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Quitter" +msgid "_Restart in Normal Mode" +msgstr "_Redémarrer en mode normal" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 16:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476797353.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480608849.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "Is cnuasach soláimhsithe ríomhchlár táirgiúlachta, bunaithe ar fhoinse oscailte, é %PRODUCTNAME um próiseáil focal, scarbhileoga, cur i láthair agus tuilleadh a chur i gcrích." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2014 Rannpháirtithe LibreOffice agus/nó a gcleamhnaithe." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 21:58+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 21:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467669526.000000\n" +"X-POOTLE-MTIME: 1480628856.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Ordlathach" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 22:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 21:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467669655.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480629001.000000\n" #: alienwarndialog.ui msgctxt "" @@ -784,7 +784,6 @@ msgstr "_Taispeáin an Ceadúnas" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -797,19 +796,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"Cuirtear %PRODUCTNAME ar fáil de réir téarmaí an Mozilla Public License, leagan 2.0. Is féidir teacht ar chóip den cheadúnas MPL ó http://mozilla.org/MPL/2.0/.\n" -"\n" -"Cód Tríú Páirtí: Leagtar amach sa chomhad LICENSE.html breis téarmaí ceadúnais agus fógraí cóipchirt a bhaineann le codanna den Bhogearra; roghnaigh Taispeáin Ceadúnas chun mionsonraí beachta a fháil i mBéarla.\n" -"\n" -"Is lena n-úinéirí faoi seach iad gach trádmharc agus trádmharc cláraithe a luaitear anseo.\n" -"\n" -"Copyright © 2000, 2014 Rannpháirtithe LibreOffice. Gach ceart ar cosaint.\n" -"\n" -"Chruthaigh %OOOVENDOR an táirge seo, bunaithe ar OpenOffice.org, Cóipcheart 2000, 2011 Oracle agus/nó a chleamhnaithe. Aithníonn %OOOVENDOR an comhphobal ar fad, féach ar http://www.libreoffice.org/ chun tuilleadh eolais a fháil." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 15:40+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 16:27+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385480420.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449851249.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 22:03+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 21:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467669786.000000\n" +"X-POOTLE-MTIME: 1480629181.000000\n" #: imagemgr.src msgctxt "" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 22:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-01 22:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" "Language: ga\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467669865.000000\n" +"X-POOTLE-MTIME: 1480629751.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ga/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ga/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ga/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ga/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-01 22:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" @@ -5082,16 +5082,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-25 22:33+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Akerbeltz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1490481190.000000\n" @@ -185,8 +185,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Còir-lethbhreac © 2000 - 2016 com-pàirtichean LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-25 22:56+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Akerbeltz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1490482583.000000\n" @@ -724,6 +724,30 @@ msgid "Hierarchical" msgstr "Rangach" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-24 01:59+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: none\n" @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"Tha %PRODUCTNAME ri do làimh fo chumhaichean ceadachas Mozilla Public License, v. 2.0. Gheibhear lethbhreac a’ cheadachais MPL aig http://mozilla.org/MPL/2.0/.\n" -"\n" -"Tha cuid dhen bhathar-bhog fo bhuaidh cumhaichean còir-lethbhreac is ceadachas Third Party Code Additional a gheibhear san fhaidhle LICENSE.html; tagh “Seall an ceadachas” gus am mion-fhiosrachadh fhaicinn sa Bheurla.\n" -"\n" -"Tha gach comharra-malairt is comharra-malairt clàraichte a thathar a’ toirt iomradh air ann fo sheilbh an cuid seilbheadairean.\n" -"\n" -"Còir-lethbhreac © 2000–2016 com-pàirtichean LibreOffice. Gach còir glèidhte.\n" -"\n" -"Chaidh am bathar seo a chruthachadh le %OOOVENDOR, stèidhichte air OpenOffice.org, a tha fo chòir-lethbhreac 2000, 2011 Oracle agus/no na dlùth-chompanaich aca. Tha %OOOVENDOR a’ toirt urram do gach ball dhen choimhearsnachd, thoir sùil air http://gd.libreoffice.org/mu-libreoffice/creideisean/ airson barrachd fiosrachaidh." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-12-13 23:39+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Akerbeltz\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1450049971.000000\n" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-24 01:36+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Akerbeltz\n" @@ -3888,6 +3888,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungairis (Székely Rovásírás)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 23:12+0000\n" -"Last-Translator: Michael Bauer \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 22:22+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Akerbeltz\n" "Language: gd\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1467673939.000000\n" +"X-POOTLE-MTIME: 1480717371.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gd/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gd/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gd/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gd/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-25 22:57+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490482663.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-05 15:39+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: none\n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488728391.000000\n" +"X-POOTLE-MTIME: 1492607946.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Dereitos de autor © 2000–2016 dos colaboradores de LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Dereitos de autor © 2000–2017 dos colaboradores de LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/desktop/source/deployment/registry/script.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/desktop/source/deployment/registry/script.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/desktop/source/deployment/registry/script.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/desktop/source/deployment/registry/script.po 2017-05-03 16:46:29.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:01+0100\n" -"PO-Revision-Date: 2011-04-05 20:17+0200\n" -"Last-Translator: Antón \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-18 04:42+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492490526.000000\n" #: dp_script.src msgctxt "" @@ -21,7 +22,7 @@ "RID_STR_BASIC_LIB\n" "string.text" msgid "%PRODUCTNAME Basic Library" -msgstr "Biblioteca básica de %PRODUCTNAME" +msgstr "Biblioteca de %PRODUCTNAME Basic" #: dp_script.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared/02.po 2017-05-03 16:46:29.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:11+0200\n" -"PO-Revision-Date: 2014-05-29 16:48+0000\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2017-04-02 21:23+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" "Language: gl\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401382094.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491168182.000000\n" #: 11010000.xhp msgctxt "" @@ -134,7 +134,7 @@ "par_id3156410\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 11030000.xhp msgctxt "" @@ -994,7 +994,7 @@ "par_id3147226\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1038,7 +1038,7 @@ "par_id3153824\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1073,7 +1073,7 @@ "par_id3154138\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1099,7 +1099,7 @@ "par_id3155131\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1125,7 +1125,7 @@ "par_id3155856\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1151,7 +1151,7 @@ "par_id3149300\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1177,7 +1177,7 @@ "par_id3153766\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1203,7 +1203,7 @@ "par_id3155959\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1229,7 +1229,7 @@ "par_id3148418\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1255,7 +1255,7 @@ "par_id3153781\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1281,7 +1281,7 @@ "par_id3150515\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1307,7 +1307,7 @@ "par_id3151184\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1342,7 +1342,7 @@ "par_id3159093\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1368,7 +1368,7 @@ "par_id3150888\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1394,7 +1394,7 @@ "par_id3154913\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1420,7 +1420,7 @@ "par_id3148901\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1455,7 +1455,7 @@ "par_id3154338\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1481,7 +1481,7 @@ "par_id3146107\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1507,7 +1507,7 @@ "par_id3153958\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1533,7 +1533,7 @@ "par_id3153162\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1559,7 +1559,7 @@ "par_id3150379\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1585,7 +1585,7 @@ "par_id3149194\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1611,7 +1611,7 @@ "par_id3154903\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1637,7 +1637,7 @@ "par_id3148725\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" @@ -1663,7 +1663,7 @@ "par_id3147417\n" "help.text" msgid "Icon" -msgstr "Icona" +msgstr "Icona" #: 20000000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-26 21:12+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2017-04-01 12:42+0000\n" +"Last-Translator: unho \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490562771.000000\n" +"X-POOTLE-MTIME: 1491050545.000000\n" #: 00000002.xhp msgctxt "" @@ -4006,7 +4006,7 @@ "12\n" "help.text" msgid "...after a new document is created with File - New or with the New icon." -msgstr "" +msgstr "...despois de crear un novo documento con Ficheiro - Novo ou coa icona Novo." #: 01040000.xhp msgctxt "" @@ -4499,7 +4499,7 @@ "15\n" "help.text" msgid "Renames the current module in place." -msgstr "" +msgstr "Renomea o módulo actual no lugar." #: 01050000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-03 21:25+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488576325.000000\n" #: 01120000.xhp @@ -5712,22 +5712,20 @@ msgstr "Funcións" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 02:25+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/simpress/00.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/simpress/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/simpress/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-26 21:14+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2017-04-01 11:36+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490562897.000000\n" +"X-POOTLE-MTIME: 1491046570.000000\n" #: 00000004.xhp msgctxt "" @@ -698,7 +698,7 @@ "par_id3153935\n" "help.text" msgid "Choose Insert - Field - Page Number" -msgstr "Escolla Inserir - Campo - Número de páxina" +msgstr "Escolla Inserir - Campo - Número de páxina" #: 00000404.xhp #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-26 21:42+0000\n" +"PO-Revision-Date: 2017-04-02 21:35+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490564548.000000\n" +"X-POOTLE-MTIME: 1491168932.000000\n" #: 01120000.xhp msgctxt "" @@ -1446,7 +1446,7 @@ "62\n" "help.text" msgid "Lists the names of all open text documents. To view the contents of a document in the Navigator window, select the name of the document in the list. The current document displayed in the Navigator is indicated by the word \"active\" after its name in the list." -msgstr " Lista os nomes de todos osdocumentos de texto abertos. Para ver o contido dun documento na ventáNavegador, seleccione o nome do documento na lista. O documento actualexhibido no Explorador indícase por palabra\"\\ activo\" despois do seu nomena lista." +msgstr "Lista os nomes de todos os documentos de texto abertos. Para ver o contido dun documento na xanela Navegador seleccione o nome do documento na lista. O documento actual exhibido no Explorador indícase coa palabra «activo» a seguir o seu nome na lista." #: 02110000.xhp msgctxt "" @@ -1499,7 +1499,7 @@ "16\n" "help.text" msgid "Click the down button to scroll to the next page or object." -msgstr " Prema no botón de embaixo paradesprazarse á seguinte páxina ou obxecto." +msgstr " Prema no botón de embaixo para desprazarse á páxina ou obxecto seguinte." #: 02110100.xhp msgctxt "" @@ -1972,7 +1972,7 @@ "63\n" "help.text" msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command." -msgstr " Crea unha entrada de texto automático nova só a partir do texto na selección que fixo no documento actual. Gráficos, táboas e outros obxectos non están incluídos. Hai que escribir un nome antes de ver esta orde." +msgstr "Crea unha entrada de texto automático nova a partir da selección feita no documento actual. A entrada engádese á categoría de texto automático seleccionada no momento. Hai que escribir un nome antes de ver esta orde. " #: 02120000.xhp msgctxt "" @@ -2089,7 +2089,7 @@ "78\n" "help.text" msgid "Opens a dialog where you can select the MS 97/2000/XP Word document or template, containing the AutoText entries that you want to import." -msgstr "Abre un diálogo no que pode seleccionar o documento ou modelo de MS Word 97/2000/XP que conteña as entradas de texto automático que desexe importar." +msgstr "Abre un diálogo no que pode seleccionar o documento ou modelo de MS Word 97/2000/XP que conteña as entradas de texto automático que desexe importar." #: 02120000.xhp msgctxt "" @@ -2143,7 +2143,7 @@ "40\n" "help.text" msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New." -msgstr " Mostra onome da categoría de texto automático seleccionada. Para cambiar o nome dacategoría, introduza un novo nome e prema en Renomear. Paracrear unha nova categoría, escriba un nome e prema en Nova." +msgstr "Mostra o nome da categoría de texto automático seleccionada. Para cambiar o nome da categoría, introduza un novo nome e prema en Renomear. Para crear unha nova categoría, escriba un nome e prema en Nova." #: 02120000.xhp msgctxt "" @@ -2233,7 +2233,7 @@ "57\n" "help.text" msgid "Opens the Edit Paths dialog, where you can select the directory to store AutoText. Opens the Edit Paths dialog, where you can select the directory to store AutoText." -msgstr " Abre a caixa de diálogo EditarCamiños, onde pode seleccionar o directorio para almacenar textoautomático. Abre o Editar camiños dediálogo, onde pode seleccionar o directorio para almacenar texto automático." +msgstr "Abre a caixa de diálogo Editar rutas, onde pode seleccionar o directorio para almacenar texto automático. Abre a caixa de diálogo Editar rutas, onde pode seleccionar o directorio para almacenar texto automático." #: 02120000.xhp msgctxt "" @@ -2242,7 +2242,7 @@ "61\n" "help.text" msgid "To add a new path to an AutoText directory, click the Path button in the AutoText dialog." -msgstr "Para engadir unha ruta nova a un directorio de texto automático, prema no botón Ruta na caixa de diálogo texto automático ." +msgstr "Para engadir un novo camiño para un directorio de texto automático, prema no botón Camiño botón na caixa de diálogo texto automático ." #: 02120000.xhp msgctxt "" @@ -4690,7 +4690,7 @@ "19\n" "help.text" msgid "Inserts a special character as a footnote or endnote anchor." -msgstr "Insire un carácter especial como áncora de nota a rodapé ou final." +msgstr "Insire un carácter especial como áncora de nota a rodapé ou final." #: 04030000.xhp msgctxt "" @@ -4726,7 +4726,7 @@ "21\n" "help.text" msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page." -msgstr " Insire unha áncora de nota na posición actual do cursor no documento e engade unha nota a rodapé na parte inferior da páxina." +msgstr "Insire unha áncora de nota na posición actual do cursor no documento e engade unha nota a rodapé na parte inferior da páxina." #: 04030000.xhp msgctxt "" @@ -5450,7 +5450,7 @@ "18\n" "help.text" msgid "Enter the amount of space that you want to leave between the top edge of the envelope and the addressee field." -msgstr " Insire a cantidade de espazo que quere deixar entre o bordo superior do sobre e o campo de destinatario." +msgstr "Insire a cantidade de espazo que quere deixar entre o bordo superior do sobre e o campo de destinatario." #: 04070200.xhp msgctxt "" @@ -5468,7 +5468,7 @@ "6\n" "help.text" msgid "Click and choose the text formatting style for the addressee field that you want to edit." -msgstr " Prema e escolla o estilo de formato de texto para o campo de destinatario que quere editar." +msgstr "Prema e escolla o estilo de formato de texto para o campo de destinatario que quere editar." #: 04070200.xhp msgctxt "" @@ -5594,7 +5594,7 @@ "20\n" "help.text" msgid "Click and choose the text formatting style for the sender field that you want to edit." -msgstr " Prema e escolla o estilo de formato de texto para o campo do remitente que desexe editar." +msgstr "Prema e escolla o estilo de formato de texto para o campo do remitente que desexe editar." #: 04070200.xhp msgctxt "" @@ -5684,7 +5684,7 @@ "39\n" "help.text" msgid "Enter the width of the envelope." -msgstr " Introduza a largura do sobre." +msgstr "Introduza a largura do sobre." #: 04070200.xhp msgctxt "" @@ -5728,7 +5728,7 @@ "2\n" "help.text" msgid "Set the print options for the envelope." -msgstr "Define as opcións de impresión do sobre." +msgstr "Defina as opcións de impresión do sobre." #: 04070300.xhp msgctxt "" @@ -5863,7 +5863,7 @@ "18\n" "help.text" msgid "Feeds the envelope with the print side face up in the printer tray." -msgstr " Alimenta o sobre co lado de impresión superior na bandexa da impresora." +msgstr "Alimenta o sobre co lado de impresión superior na bandexa da impresora." #: 04070300.xhp msgctxt "" @@ -6248,7 +6248,7 @@ "26\n" "help.text" msgid "The following fields can only be inserted if the corresponding field type is selected in the Type list." -msgstr "Os campos a seguir só pode ser inserido se o tipo de campo correspondente estiver seleccionado na lista Tipo." +msgstr "Os campos a seguir só pode ser inserido se o tipo de campo correspondente estiver seleccionado na lista Tipo." #: 04090001.xhp msgctxt "" @@ -6266,7 +6266,7 @@ "28\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista Tipo. Para inserir un campo, prema no campo e prema en Inserir." +msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista Tipo. Para inserir un campo, prema no campo e prema en Inserir." #: 04090001.xhp msgctxt "" @@ -6526,7 +6526,7 @@ "44\n" "help.text" msgid "Select the chapter heading level that you want to include in the selected field." -msgstr "Seleccione o nivel de título do capítulo que desexa incluír no campo seleccionado." +msgstr "Seleccione o nivel de título do capítulo que desexa incluír no campo seleccionado." #: 04090001.xhp msgctxt "" @@ -7379,7 +7379,7 @@ "21\n" "help.text" msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box." -msgstr "Introduza o texto a ser mostrado cando a condición se verifica no cadro Entón e o texto a ser mostrado cando a condición non se verifica no cadro Senón." +msgstr "Introduza o texto a ser mostrado cando a condición se verifica no cadro Entón e o texto a ser mostrado cando a condición non se verifica no cadro Senón." #: 04090003.xhp msgctxt "" @@ -7595,7 +7595,7 @@ "53\n" "help.text" msgid "Adds the Item to the list." -msgstr " Engade oElemento á lista." +msgstr "Engade o Elemento á lista." #: 04090003.xhp msgctxt "" @@ -7613,7 +7613,7 @@ "55\n" "help.text" msgid "Lists the items. The topmost item is shown in the document." -msgstr " Lista oselementos. O elemento superior móstrase no documento." +msgstr "Lista os elementos. O elemento superior móstrase no documento." #: 04090003.xhp msgctxt "" @@ -7649,7 +7649,7 @@ "59\n" "help.text" msgid "Moves the selected item up in the list." -msgstr " Move o elementoseleccionado arriba na lista." +msgstr "Sube o elemento seleccionado na lista." #: 04090003.xhp msgctxt "" @@ -7667,7 +7667,7 @@ "61\n" "help.text" msgid "Moves the selected item down in the list." -msgstr " Move oelemento seleccionado abaixo na lista." +msgstr "Baixa o elemento seleccionado na lista." #: 04090003.xhp msgctxt "" @@ -7685,7 +7685,7 @@ "63\n" "help.text" msgid "Enter a unique name for the Input list." -msgstr "Introduza un nome exclusivo para a Lista de entrada." +msgstr "Introduza un nome exclusivo para a Lista de entrada." #: 04090003.xhp msgctxt "" @@ -7748,7 +7748,7 @@ "70\n" "help.text" msgid "Closes the current Input list and displays the next, if available. You see this button when you open the Choose Item dialog by Ctrl+Shift+F9." -msgstr " Pecha o actualLista de entrada e mostra o seguinte, se está dispoñíbel. Ve este botón cando se abre o Escolla Item diálogopor Ctrl + Maiús + F9." +msgstr "Pecha a Lista de entrada actual e mostra a seguinte, se estiver dispoñíbel.Este botón vese ao abrir a caixa de diálogo Escoller elemento con Ctrl + Maiús + F9." #: 04090004.xhp msgctxt "" @@ -7791,7 +7791,7 @@ "par_id0902200804290053\n" "help.text" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr " Lista os tipos de camposdispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo,prema no campo na lista Seleccionar e, a seguir, prema en Inserir." +msgstr "Lista os tipos de campo dispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo, prema no campo na lista Seleccionar e, a seguir, prema en Inserir." #: 04090004.xhp msgctxt "" @@ -7997,7 +7997,7 @@ "par_id0902200804290272\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr " Lista os campos dispoñíbeispara o tipo de campo seleccionado no tipo lista . Parainserir un campo, prema no campo e prema en Inserir." +msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na listaTipoPara inserir un campo, prema no campo e prema en Inserir." #: 04090004.xhp msgctxt "" @@ -8014,7 +8014,7 @@ "par_id0902200804290382\n" "help.text" msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format." -msgstr " Prema no formato que desexaaplicar ao campo seleccionado, ou prema en\"Formatos adicionais \" paradefinir un formato personalizado." +msgstr "Prema no formato que desexe aplicar ao campo seleccionado, ou prema en «Formatos adicionais» para definir un formato personalizado." #: 04090004.xhp msgctxt "" @@ -8032,7 +8032,7 @@ "29\n" "help.text" msgid "Inserts the field as static content, that is, the field cannot be updated." -msgstr " Insire ocampo como contido estático, é dicir, o campo non se pode actualizar." +msgstr "Insire o campo como contido estático, é dicir, non é posíbel actualizar o campo." #: 04090004.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-18 21:26+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487453184.000000\n" +"X-POOTLE-MTIME: 1492607978.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Xerárquico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Novo estilo a partir da selección" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Actualizar estilo" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 21:34+0000\n" "Last-Translator: Xosé \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487453643.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME ofrécese consonte os termos da licenza pública Mozilla, v. 2.0. Pódese obter unha copia da licenza en http://mozilla.org/MPL/2.0/.\n" -"\n" -"Os dereitos de autor e os termos das licenzas de terceiros aplicábeis a partes do software están descritas no ficheiro LICENSE.html; escolla Amosar a licenza para ver os detalles exactos (en inglés).\n" -"\n" -"Todas as marcas, rexistradas ou non, aquí mencionadas son propiedade dos seus titulares.\n" -"\n" -"Dereitos de autor © 2000-2016 dos colaboradores da LibreOffice. Todos os dereitos reservados.\n" -"\n" -"Este produto creouno a %OOOVENDOR, baseado en OpenOffice.org, sobre a que ten dereitos de autor entre 2000 e 2011 Oracle e/ou os seus afiliados. %OOOVENDOR ofrécelle o seu recoñecemento a todos os membros da comunidade, véxase http://www.libreoffice.org/ para máis detalles." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-12-13 22:25+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1450045518.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 23:11+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487286695.000000\n" +"X-POOTLE-MTIME: 1492607994.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Húngaro (alfabeto rúnico)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Inglés (Malaisia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 21:57+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487455036.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gl/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gl/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gl/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gl/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 22:25+0000\n" "Last-Translator: Xosé \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487456706.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Saír" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Aplicar os cambios e reiniciar" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 13:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Gujarati <>\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476798254.000000\n" #: aboutconfigdialog.ui @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME એ વર્ડ પ્રોસેસીંગ, સ્પ્રેડશીટ, રજૂઆતો અને વધારે માટે પ્રાચીન, સરળ રીતે વાપરવું, ઑપન સોર્સ પ્રોડક્ટીવિટી સ્યૂટ છે." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2014 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 02:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5718,7 +5718,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5726,7 +5726,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 02:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 07:47+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-04 22:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Gujarati <>\n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457682467.000000\n" +"X-POOTLE-MTIME: 1467672741.000000\n" #: dialog.src msgctxt "" @@ -725,6 +725,30 @@ msgid "Hierarchical" msgstr "વંશવેલાવાળું" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-04 22:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467672897.000000\n" #: alienwarndialog.ui @@ -814,7 +814,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-11-07 10:12+0000\n" -"Last-Translator: sweta kothari \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:00+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: gu_IN \n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1415355157.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449853242.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 14:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-04 23:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Gujarati <>\n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462717217.000000\n" +"X-POOTLE-MTIME: 1467673244.000000\n" #: imagemgr.src msgctxt "" @@ -3891,6 +3891,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-04 23:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: gu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449853465.000000\n" +"X-POOTLE-MTIME: 1467673490.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gu/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gu/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gu/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gu/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-04 23:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Gujarati <>\n" @@ -5124,16 +5124,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-15 19:46+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487187964.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "© 2000–2016 de los colaboradores de LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-03 08:38+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483432730.000000\n" #: dialog.src @@ -714,6 +714,30 @@ msgid "Hierarchical" msgstr "Jerárquico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 20:47+0000\n" "Last-Translator: abelardoayala \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483390062.000000\n" #: alienwarndialog.ui @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-10 12:54+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1481374466.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-19 20:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 22:42+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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1468959121.000000\n" +"X-POOTLE-MTIME: 1480718523.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 16:40+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 22:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449852055.000000\n" +"X-POOTLE-MTIME: 1480719236.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/gug/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/gug/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/gug/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/gug/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 20:53+0000\n" "Last-Translator: abelardoayala \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483390439.000000\n" #: acceptrejectchangesdialog.ui @@ -5061,16 +5061,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/he/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-19 09:21+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487496099.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "כל הזכויות שמורות © 2000–2016 לתורמי LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 02:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5701,7 +5701,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5709,7 +5709,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/he/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 02:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/he/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-26 13:28+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488115715.000000\n" #: dialog.src @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "מדורג (היררכיה)‏" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/he/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487417618.000000\n" #: alienwarndialog.ui @@ -790,7 +790,6 @@ msgstr "ה_צגת הרישיון" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -803,19 +802,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME זמין לטובת הקהילה תחת תנאי הרישיון הציבורי של Mozilla, גרסה 2.0. ניתן למצוא עותק של הרישיון (MPL) בכתובת http://mozilla.org/MPL/2.0/.\n" -"\n" -"רישוי נוסף לקוד שפותח על־ידי צד שלישי ותנאי רישוי החלים על חלקים מהתכנה מוגדרים בקובץ LICENSE.html; ניתן לבחור ב„הצגת הרישיון“ כדי לצפות בפירוט המלא באנגלית.\n" -"\n" -"כל סימני המסחר שצוינו בחבילה זו הם קניין של בעליהם בהתאמה.\n" -"\n" -"זכויות היוצרים שייכות לתורמי LibreOffice ‏© 2000, 2014. כל הזכויות שמורות.\n" -"\n" -"מוצר זה פותח על־ידי %OOOVENDOR, בהתבסס על OpenOffice.org, שזכויות היוצרים עליו שמורות ל־2000, 2011 Oracleו/או שותפותיה. %OOOVENDOR מוקירה את כל חברי קהילתה, ניתן לבקר בכתובת http://www.libreoffice.org/‎ לפרטים נוספים." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/he/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 15:55+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-01 22:51+0000\n" +"Last-Translator: ttv20 \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385481304.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1462143078.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/he/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-29 09:51+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485683495.000000\n" #: imagemgr.src @@ -3889,6 +3889,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/he/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-01 22:51+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 00:17+0000\n" +"Last-Translator: ttv20 \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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462143094.000000\n" +"X-POOTLE-MTIME: 1480724267.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/he/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/he/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/he/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/he/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 11:33+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487417638.000000\n" #: acceptrejectchangesdialog.ui @@ -5104,16 +5104,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 15:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: hi\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476798288.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480691199.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 16:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5681,22 +5681,20 @@ msgstr "फंक्शन्स" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 05:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 08:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 23:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Hindi \n" "Language: hi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457683238.000000\n" +"X-POOTLE-MTIME: 1480721983.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "पदक्रमीय" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-04 23:10+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 23:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: hi\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467673810.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480722204.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 15:58+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 16:57+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Hindi \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385481523.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449853059.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 14:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-02 23:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Hindi \n" "Language: hi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462717857.000000\n" +"X-POOTLE-MTIME: 1480722782.000000\n" #: imagemgr.src msgctxt "" @@ -3894,6 +3894,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 00:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Hindi \n" "Language: hi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449853258.000000\n" +"X-POOTLE-MTIME: 1480723965.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hi/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hi/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hi/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hi/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-03 00:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5084,16 +5084,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/chart2/source/controller/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/chart2/source/controller/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/chart2/source/controller/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-01 22:58+0000\n" +"PO-Revision-Date: 2017-04-05 21:13+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462143505.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426830.000000\n" #: Strings.src msgctxt "" @@ -710,7 +710,7 @@ "STR_ACTION_EDIT_CHARTTYPE\n" "string.text" msgid "Edit chart type" -msgstr "Uredi tip grafa" +msgstr "Uredi tip grafikona" #: Strings.src msgctxt "" @@ -734,7 +734,7 @@ "STR_ACTION_EDIT_CHART_DATA\n" "string.text" msgid "Edit chart data" -msgstr "Uredi podatke grafa" +msgstr "Uredi podatke grafikona" #: Strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-25 18:51+0000\n" -"Last-Translator: Mihovil Stanić \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-14 19:01+0000\n" +"Last-Translator: Kruno \n" "Language-Team: none\n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490467908.000000\n" +"X-POOTLE-MTIME: 1492196500.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Autorska prava © 2000–2016 LibreOffice suradnici." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Autorska prava © 2000 – 2017 Doprinositelji razvoju LibreOfficea." #: aboutdialog.ui msgctxt "" @@ -3614,7 +3614,7 @@ "label\n" "string.text" msgid "Edit Comment" -msgstr "Uredi komentar" +msgstr "Uređivanje komentara" #: comment.ui msgctxt "" @@ -4064,7 +4064,7 @@ "label\n" "string.text" msgid "Edit Database Link" -msgstr "Uredi poveznicu baze podataka" +msgstr "Uređivanje poveznice base podataka" #: dbregisterpage.ui msgctxt "" @@ -4361,7 +4361,7 @@ "title\n" "string.text" msgid "Edit Custom Dictionary" -msgstr "Uredi prilagođeni rječnik" +msgstr "Uređivanje prilagođenoga rječnika" #: editdictionarydialog.ui msgctxt "" @@ -4424,7 +4424,7 @@ "title\n" "string.text" msgid "Edit Modules" -msgstr "Uredi module" +msgstr "Uređivanje modula" #: editmodulesdialog.ui msgctxt "" @@ -6044,7 +6044,7 @@ "title\n" "string.text" msgid "Edit Custom Dictionary" -msgstr "Uredi prilagođeni rječnik" +msgstr "Uređivanje prilagođenoga rječnika" #: hangulhanjaeditdictdialog.ui msgctxt "" @@ -8430,7 +8430,7 @@ "tooltip_text\n" "string.text" msgid "Edit Comment" -msgstr "Uredi komentar" +msgstr "Uređivanje komentara" #: numberingformatpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/browser.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/browser.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/browser.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/browser.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-16 18:54+0000\n" +"PO-Revision-Date: 2017-04-05 20:52+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1468695254.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491425558.000000\n" #: sbabrw.src msgctxt "" @@ -79,7 +79,7 @@ "ID_TREE_EDIT_DATABASE\n" "menuitem.text" msgid "Edit ~Database File..." -msgstr "Uredi ~datoteku baze podataka..." +msgstr "Uređivanje ~datoteke baze podataka..." #: sbabrw.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/dlg.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/dlg.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/dlg.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2016-07-16 18:59+0000\n" +"PO-Revision-Date: 2017-04-05 21:20+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1468695584.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491427216.000000\n" #: AutoControls.src msgctxt "" @@ -817,7 +817,7 @@ "STR_EXPLAN_STRINGCONVERSION_ERROR\n" "string.text" msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties." -msgstr "Česti razlog ove greške je neprikladan sustav znakova s obzirom na jezik baze podataka. Provjerite postavke odabirom Uredi - Baza podataka - Svojstva." +msgstr "Čest je razlog pojavljivanja ove greške neprikladan sustav znakova s obzirom na postavljeni jezik base podataka. Provjerite postavke kroz izbornik Uredi → Base podataka → Svojstva." #: sqlmessage.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/querydesign.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/dbaccess/source/ui/querydesign.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/dbaccess/source/ui/querydesign.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-22 21:01+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-05 21:27+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485118909.000000\n" +"X-POOTLE-MTIME: 1491427662.000000\n" #: query.src msgctxt "" @@ -32,7 +32,7 @@ "ID_QUERY_EDIT_JOINCONNECTION\n" "menuitem.text" msgid "Edit..." -msgstr "Uređivanje..." +msgstr "Uredi..." #: query.src msgctxt "" @@ -163,7 +163,7 @@ "STR_QUERY_UNDO_MODIFY_CELL\n" "string.text" msgid "Edit Column Description" -msgstr "Uredi opis stupca" +msgstr "Uređivanje opisa stupca" #: query.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/framework/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/framework/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/framework/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/framework/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-23 14:28+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-05 20:54+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485181738.000000\n" +"X-POOTLE-MTIME: 1491425645.000000\n" #: resource.src msgctxt "" @@ -72,7 +72,7 @@ "MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR\n" "menuitem.text" msgid "~Customize Toolbar..." -msgstr "~Uredi traku s alatima..." +msgstr "~Uređivanje trake s alatima..." #: resource.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 13:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5681,22 +5681,20 @@ msgstr "Funkcije" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 06:12+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-06-21 10:56+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-14 19:03+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1466506590.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492196619.000000\n" #: ActionTe.ulf msgctxt "" @@ -2766,7 +2766,7 @@ "OOO_CONTROL_322\n" "LngText.text" msgid "Some files that need to be updated are currently in use." -msgstr "" +msgstr "U upotrebi su neki od dokumenata koji bi trebali biti ažurirani." #: Control.ulf msgctxt "" @@ -2782,7 +2782,7 @@ "OOO_CONTROL_324\n" "LngText.text" msgid "{&MSSansBold8}Files in Use" -msgstr "" +msgstr "{&MSSansBold8}Datoteke u upotrebi" #: Control.ulf msgctxt "" @@ -2790,7 +2790,7 @@ "OOO_CONTROL_325\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Odustani" #: Control.ulf msgctxt "" @@ -2798,7 +2798,7 @@ "OOO_CONTROL_326\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "U redu" #: CustomAc.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-25 22:13+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-23 09:42+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490480030.000000\n" +"X-POOTLE-MTIME: 1492940573.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3650,7 +3650,7 @@ "Label\n" "value.text" msgid "Edit Comment" -msgstr "Uredi komentar" +msgstr "Uređivanje komentara" #: CalcCommands.xcu msgctxt "" @@ -6413,7 +6413,7 @@ "Label\n" "value.text" msgid "Edit Data" -msgstr "Uredi podatake" +msgstr "Uredi podatke" #: DbuCommands.xcu msgctxt "" @@ -7151,7 +7151,7 @@ "Label\n" "value.text" msgid "~Handout Master" -msgstr "~Glavna brošura" +msgstr "Predložak ~stranice uručka" #: DrawImpressCommands.xcu msgctxt "" @@ -10049,7 +10049,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "Uredi točke" +msgstr "Uređivanje točaka" #: DrawWindowState.xcu msgctxt "" @@ -12830,7 +12830,7 @@ "Label\n" "value.text" msgid "Bars" -msgstr "" +msgstr "Prugice" #: Effects.xcu msgctxt "" @@ -14207,7 +14207,7 @@ "Label\n" "value.text" msgid "Block Arc" -msgstr "Element luka" +msgstr "Ispunjen luk" #: GenericCommands.xcu msgctxt "" @@ -22426,7 +22426,7 @@ "Label\n" "value.text" msgid "Edit with External Tool" -msgstr "Uredi s vanjskim alatom" +msgstr "Uređivanje vanjskim alatom" #: GenericCommands.xcu msgctxt "" @@ -26152,7 +26152,7 @@ "Label\n" "value.text" msgid "Apply and Edit ~Changes" -msgstr "Primijeni i uredi pro~mjene" +msgstr "Primjena i uređivanje ~promjena" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sc/source/ui/miscdlgs.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sc/source/ui/miscdlgs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sc/source/ui/miscdlgs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sc/source/ui/miscdlgs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-08 19:45+0000\n" -"Last-Translator: Mihovil \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-05 20:58+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420746357.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491425922.000000\n" #: acredlin.src msgctxt "" @@ -151,7 +151,7 @@ "SC_CHANGES_COMMENT\n" "menuitem.text" msgid "Edit Comment..." -msgstr "Uredi komentar..." +msgstr "Uređivanje komentara..." #: acredlin.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-13 18:19+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-05 20:58+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489429154.000000\n" +"X-POOTLE-MTIME: 1491425934.000000\n" #: filter.src msgctxt "" @@ -495,7 +495,7 @@ "STR_UNDO_EDITSCENARIO\n" "string.text" msgid "Edit scenario" -msgstr "Uredi scenario" +msgstr "Uredi scenarij" #: globstr.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/scp2/source/draw.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/scp2/source/draw.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/scp2/source/draw.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/scp2/source/draw.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-03-16 21:12+0000\n" -"Last-Translator: Mihovil \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-04-05 21:01+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1426540367.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426082.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -46,7 +46,7 @@ "STR_DESC_MODULE_PRG_DRAW\n" "LngText.text" msgid "Create and edit drawings, flow charts, and logos by using %PRODUCTNAME Draw." -msgstr "Kreiraj i uredi ctrež, garfikon, i logotipe koristeći %PRODUCTNAME Draw." +msgstr "Kreiraj i uredi crtež, grafikon, i logotipe koristeći %PRODUCTNAME Draw." #: module_draw.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/scp2/source/math.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/scp2/source/math.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/scp2/source/math.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/scp2/source/math.po 2017-05-03 16:46:29.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-03-04 21:40+0000\n" -"Last-Translator: Mihovil \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-04-05 21:01+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1362433227.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426101.000000\n" #: folderitem_math.ulf msgctxt "" @@ -22,7 +22,7 @@ "STR_FI_TOOLTIP_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using Math." -msgstr "Stvorite i uredite znanstveve formule i jednadžbe." +msgstr "Stvorite i uredite znanstvene formule i jednadžbe." #: module_math.ulf msgctxt "" @@ -38,7 +38,7 @@ "STR_DESC_MODULE_PRG_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using %PRODUCTNAME Math." -msgstr "Stvorite i uredite znanstveve formule i jednadžbe koristeći %PRODUCTNAME Math." +msgstr "Stvorite i uredite znanstvene formule i jednadžbe koristeći %PRODUCTNAME Math." #: module_math.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sd/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sd/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sd/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-10 19:15+0000\n" +"PO-Revision-Date: 2017-04-05 21:02+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489173309.000000\n" +"X-POOTLE-MTIME: 1491426145.000000\n" #: popup.src msgctxt "" @@ -812,7 +812,7 @@ "STR_POPUP_EDIT_SNAPLINE\n" "string.text" msgid "Edit Snap Line..." -msgstr "Uredi crtu poravnanja..." +msgstr "Uređivanje crte poravnanja..." #: strings.src msgctxt "" @@ -820,7 +820,7 @@ "STR_POPUP_EDIT_SNAPPOINT\n" "string.text" msgid "Edit Snap Point..." -msgstr "Uredi točku poravnanja..." +msgstr "Uređivanje točke poravnanja..." #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 07:48+0000\n" -"Last-Translator: Kruno \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 00:50+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457682510.000000\n" +"X-POOTLE-MTIME: 1480726236.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hijerarhijski" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-21 19:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-01 20:12+0000\n" "Last-Translator: Kruno \n" "Language-Team: none\n" "Language: hr\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490126080.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491077579.000000\n" #: alienwarndialog.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "_Subject:" -msgstr "_Subjekt:" +msgstr "_Predmet:" #: descriptioninfopage.ui msgctxt "" @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME je dostupan prema uvjetima Mozilla Public License inačice 2.0. Primjerak MPL licencije se može pronaći na http://mozilla.org/MPL/2.0/.\n" -"\n" -"Dodatne autorske obavjesti i uvjeti licencije za kod trećih strana koji se odnosi na dio programa se nalaze u LICENSE.html datoteci; odaberite Prikaži licencu kako biste vidjeli točne detalje na engleskom jeziku.\n" -"\n" -"Svi zaštitni znaci i registrirani zaštitni znaci koji se ovdje spominju su vlasništvo njihovih odgovarajućih vlasnika.\n" -"\n" -"Autorsko pravo © 2000–2016 LibreOffice suradnici. Sva prava pridržana.\n" -"\n" -"Ovaj proizvod je stvoren od %OOOVENDOR, baziran na OpenOffice.org, koji je autorsko pravo 2000, 2011 Oracle i/ili njihovi suradnici. %OOOVENDOR priznaje sve članove zajednice, vidite http://www.libreoffice.org/ za više detalja." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/starmath/uiconfig/smath/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/starmath/uiconfig/smath/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2016-01-19 17:29+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-05 21:30+0000\n" +"Last-Translator: Kruno \n" "Language-Team: none\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1453224590.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491427818.000000\n" #: alignmentdialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "Ur_eđivanje..." +msgstr "_Uredi..." #: catalogdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-23 14:37+0000\n" "Last-Translator: Mihovil Stanić \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1469284662.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-25 18:38+0000\n" "Last-Translator: Mihovil Stanić \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490467083.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Mađarski (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/source/form.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/source/form.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/source/form.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/source/form.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-12 20:17+0000\n" +"PO-Revision-Date: 2017-04-05 21:03+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489349868.000000\n" +"X-POOTLE-MTIME: 1491426198.000000\n" #: datanavi.src msgctxt "" @@ -355,7 +355,7 @@ "RID_STR_DATANAV_EDIT_SUBMISSION\n" "string.text" msgid "Edit Submission" -msgstr "Uredi prijavak" +msgstr "Uredi podnesak" #: datanavi.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-12 20:18+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489349924.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-19 11:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-05 21:05+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489922980.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491426316.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -266,7 +266,7 @@ "label\n" "string.text" msgid "Edit Instance" -msgstr "Uredi instancu" +msgstr "Uredi instanciju" #: addinstancedialog.ui msgctxt "" @@ -680,7 +680,7 @@ "label\n" "string.text" msgid "_Edit Terms..." -msgstr "_Uredi Uvijete..." +msgstr "_Uređivanje uvjeta..." #: chineseconversiondialog.ui msgctxt "" @@ -698,7 +698,7 @@ "title\n" "string.text" msgid "Edit Dictionary" -msgstr "Uredi rječnik" +msgstr "Uređivanje rječnika" #: chinesedictionary.ui msgctxt "" @@ -3449,7 +3449,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "Uredi točke" +msgstr "Uređivanje točaka" #: floatingcontour.ui msgctxt "" @@ -3815,7 +3815,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "Uredi točke" +msgstr "Uređivanje točaka" #: imapdialog.ui msgctxt "" @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Primjeni izmjene i ponovno pokreni" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-12 08:05+0000\n" +"PO-Revision-Date: 2017-04-05 21:06+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489305918.000000\n" +"X-POOTLE-MTIME: 1491426388.000000\n" #: app.src msgctxt "" @@ -454,7 +454,7 @@ "STR_JAVA_EDIT\n" "string.text" msgid "Edit Script" -msgstr "Uredi skriptu" +msgstr "Uređivanje skripte" #: app.src msgctxt "" @@ -1060,7 +1060,7 @@ "STR_AUTHMRK_EDIT\n" "string.text" msgid "Edit Bibliography Entry" -msgstr "Uredi bibliografski unos" +msgstr "Uređivanje bibliografskog unosa" #: app.src msgctxt "" @@ -1528,7 +1528,7 @@ "FN_PAGEBREAK_EDIT\n" "menuitem.text" msgid "Edit Page Break..." -msgstr "Uredi prijelom stranice..." +msgstr "Uređivanje prijeloma stranice..." #: mn.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/dbui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/dbui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/dbui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/dbui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-06-26 10:20+0000\n" -"Last-Translator: Mihovil Stanić \n" +"PO-Revision-Date: 2017-04-05 21:06+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1466936412.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426402.000000\n" #: dbui.src msgctxt "" @@ -370,7 +370,7 @@ "ST_TITLE_EDIT\n" "string.text" msgid "Edit Address Block" -msgstr "Uredi oznaku adrese" +msgstr "Uređivanje oznake adrese" #: mmaddressblockpage.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/index.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/index.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/index.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/index.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-12 08:07+0000\n" +"PO-Revision-Date: 2017-04-05 21:07+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489306059.000000\n" +"X-POOTLE-MTIME: 1491426458.000000\n" #: cnttab.src msgctxt "" @@ -315,7 +315,7 @@ "STR_IDXMRK_EDIT\n" "string.text" msgid "Edit Index Entry" -msgstr "Uredi unos indeksa" +msgstr "Uređivanje unosa indeksa" #: idxmrk.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/shells.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/shells.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/shells.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/shells.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-01-03 14:39+0000\n" -"Last-Translator: Mihovil \n" +"PO-Revision-Date: 2017-04-05 21:07+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420295964.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426466.000000\n" #: shells.src msgctxt "" @@ -180,7 +180,7 @@ "STR_REDLINE_EDIT\n" "string.text" msgid "Edit Changes" -msgstr "Uredi promjene" +msgstr "Uređivanje izmjena" #: shells.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/ui/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-12 09:38+0000\n" +"PO-Revision-Date: 2017-03-30 16:22+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489311482.000000\n" +"X-POOTLE-MTIME: 1490890948.000000\n" #: poolfmt.src msgctxt "" @@ -958,7 +958,7 @@ "STR_POOLCOLL_TOX_CNTNTH\n" "string.text" msgid "Contents Heading" -msgstr "Naslov sadržaja" +msgstr "Naslov tablice sadržaja" #: poolfmt.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/uibase/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/uibase/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/source/uibase/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/source/uibase/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-03 14:51+0000\n" -"Last-Translator: Mihovil \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-05 21:07+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420296672.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491426476.000000\n" #: redlndlg.src msgctxt "" @@ -23,7 +23,7 @@ "MN_EDIT_COMMENT\n" "menuitem.text" msgid "Edit Comment..." -msgstr "Uredi komentar..." +msgstr "Uređivanje komentara..." #: redlndlg.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-12 09:48+0000\n" +"PO-Revision-Date: 2017-04-05 21:37+0000\n" "Last-Translator: Kruno \n" "Language-Team: none\n" "Language: hr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489312128.000000\n" +"X-POOTLE-MTIME: 1491428262.000000\n" #: abstractdialog.ui msgctxt "" @@ -833,7 +833,7 @@ "title\n" "string.text" msgid "Insert Bibliography Entry" -msgstr "Umetni bibliografski unos" +msgstr "Umetanje bibliografskoga unosa" #: bibliographyentry.ui msgctxt "" @@ -2516,7 +2516,7 @@ "title\n" "string.text" msgid "Edit Concordance File" -msgstr "Uredi datoteku podudarnosti" +msgstr "Uređivanje datoteke konkordancije" #: createautomarkdialog.ui msgctxt "" @@ -2714,7 +2714,7 @@ "label\n" "string.text" msgid "_Space to text:" -msgstr "_Razmaci u tekst:" +msgstr "_Odmak od teksta:" #: dropcapspage.ui msgctxt "" @@ -2849,7 +2849,7 @@ "title\n" "string.text" msgid "Edit Sections" -msgstr "Uredi odjeljke" +msgstr "Uređivanje odjeljaka" #: editsectiondialog.ui msgctxt "" @@ -4473,7 +4473,7 @@ "label\n" "string.text" msgid "Maximum footnote _height" -msgstr "_Maksimalna veličina fusnote" +msgstr "_Dopuštena visina prostora za fusnotu" #: footnoteareapage.ui msgctxt "" @@ -4482,7 +4482,7 @@ "label\n" "string.text" msgid "Space to text" -msgstr "Razmaci u tekst" +msgstr "Odmak od teksta" #: footnoteareapage.ui msgctxt "" @@ -10278,7 +10278,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "Uredi stil" +msgstr "Uređivanje stila" #: numparapage.ui msgctxt "" @@ -13310,7 +13310,7 @@ "label\n" "string.text" msgid "Print text in blac_k" -msgstr "Ispiši te_kst na crnome" +msgstr "_Ispiši tekst samo crnom" #: printoptionspage.ui msgctxt "" @@ -14255,7 +14255,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "Ur_eđivanje..." +msgstr "_Uredi..." #: selectaddressdialog.ui msgctxt "" @@ -14336,7 +14336,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "Ur_eđivanje..." +msgstr "_Uredi..." #: selectblockdialog.ui msgctxt "" @@ -14624,7 +14624,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "Uredi konturu" +msgstr "Uređivanje konture" #: sidebarwrap.ui msgctxt "" @@ -16370,7 +16370,7 @@ "label\n" "string.text" msgid "Edit Page Properties" -msgstr "Uredi svojstava stranica" +msgstr "Uređivanje svojstva stranice" #: tocdialog.ui msgctxt "" @@ -16496,7 +16496,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "Ur_eđivanje..." +msgstr "_Uredi..." #: tocentriespage.ui msgctxt "" @@ -16865,7 +16865,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "Ur_eđivanje..." +msgstr "_Uredi..." #: tocindexpage.ui msgctxt "" @@ -17252,7 +17252,7 @@ "label\n" "string.text" msgid "_Concordance file" -msgstr "_Datoteka podudarnosti" +msgstr "_Datoteka konkordancije" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-5.3.3~rc2/translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2017-05-03 16:46:29.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-07-17 09:44+0000\n" -"Last-Translator: Mihovil \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2017-04-05 21:36+0000\n" +"Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1374054262.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491428163.000000\n" #: WikiExtension.xcu msgctxt "" @@ -167,7 +167,7 @@ "Dlg_EditButton\n" "value.text" msgid "~Edit..." -msgstr "Ur~eđivanje..." +msgstr "~Uredi..." #: WikiExtension.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-10 21:17+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484083022.000000\n" +"X-POOTLE-MTIME: 1492671249.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 a LibreOffice hozzájárulói." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 – 2017 a LibreOffice hozzájárulói." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-02 04:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-25 07:25+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Magyar \n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483332363.000000\n" +"X-POOTLE-MTIME: 1493105150.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -51720,7 +51720,7 @@ "19\n" "help.text" msgid "Zero Values" -msgstr "Zérus értékek" +msgstr "Nulla értékek" #: 05070500.xhp msgctxt "" @@ -51738,7 +51738,7 @@ "21\n" "help.text" msgid "Page Order" -msgstr "Oldalak sorrendje" +msgstr "Oldalsorrend" #: 05070500.xhp msgctxt "" @@ -51836,7 +51836,7 @@ "par_idN1096D\n" "help.text" msgid "Scaling mode" -msgstr "Méretezés módja" +msgstr "Méretezési mód" #: 05070500.xhp msgctxt "" @@ -51870,7 +51870,7 @@ "par_idN1099A\n" "help.text" msgid "Scaling factor" -msgstr "Méretezési faktor" +msgstr "Méretarány" #: 05070500.xhp msgctxt "" @@ -51919,7 +51919,7 @@ "par_idN109C3\n" "help.text" msgid "If you clear both boxes, this will result in a scaling factor of 100%." -msgstr "Ha törli a jelölőnégyzeteket, akkor a méretezési faktor 100% lesz." +msgstr "Ha törli a jelölőnégyzeteket, akkor a méretarány 100% lesz." #: 05070500.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-23 13:30+0000\n" +"PO-Revision-Date: 2017-04-22 11:46+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1471959047.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492861604.000000\n" #: 01000000.xhp msgctxt "" @@ -3603,7 +3603,7 @@ "1\n" "help.text" msgid "Activates the wizard for creating reports." -msgstr "" +msgstr "A jelentéseket létrehozó tündért indítja el." #: 01100000.xhp msgctxt "" @@ -6209,7 +6209,7 @@ "6\n" "help.text" msgid "Specifies that you want to save the reference values in a database. The values are written in the data field selected in the list box. The list box displays all the field names from the database table that the form is linked to." -msgstr "" +msgstr "Megadja, hogy a hivatkozások értékét adatbázisban kívánja tárolni. Az értékek beíródnak a listában kiválasztott adatmezőbe. A lista megjeleníti az adatbázistábla összes mezőnevét, amelyhez az űrlap csatolva van." #: 01120400.xhp msgctxt "" @@ -6227,7 +6227,7 @@ "8\n" "help.text" msgid "Select the data field in which the reference values have to be saved." -msgstr "" +msgstr "Válassza ki az adatmezőt, ahová menteni akarja a hivatkozott értékeket." #: 01120400.xhp msgctxt "" @@ -6245,7 +6245,7 @@ "10\n" "help.text" msgid "Specifies that you want to save the reference values in the form only, and not in the database." -msgstr "" +msgstr "Megadja, hogy a hivatkozások értékét csak az űrlapban kívánja tárolni, az adatbázisban nem." #: 01120500.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-10-18 21:00+0000\n" +"PO-Revision-Date: 2017-04-22 11:52+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476824422.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492861959.000000\n" #: 02000000.xhp msgctxt "" @@ -9368,7 +9368,7 @@ "par_idN1064B\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site." -msgstr "" +msgstr "UNIX alatt győződjön meg róla, hogy az Oracle-adatbáziskliens JDBC-támogatással van-e telepítve. A Solaris Oracle kliens 8.x változat JDBC illesztőprogram-osztálya az /product/jdbc/lib/classes111.zip könyvtárban található. A legfrissebb változatot az Oracle webhelyéről is letöltheti." #: dabawiz02jdbc.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-08-23 14:03+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-25 06:12+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1471961002.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493100737.000000\n" #: 01000000.xhp msgctxt "" @@ -2246,7 +2246,7 @@ "tit\n" "help.text" msgid "Color" -msgstr "" +msgstr "Szín" #: 01010500.xhp msgctxt "" @@ -2262,7 +2262,7 @@ "hd_id3150543\n" "help.text" msgid "Color" -msgstr "" +msgstr "Szín" #: 01010500.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "par_id3153104\n" "help.text" msgid "Allows you to select a color from a color palette, edit an existing color, or define new colors." -msgstr "" +msgstr "Színt választhat színpalettáról, szerkeszthet egy létező színt vagy meghatározhat új színeket." #: 01010500.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "hd_id3150767\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Színek" #: 01010500.xhp msgctxt "" @@ -2286,7 +2286,7 @@ "hd_id3150869\n" "help.text" msgid "Palette" -msgstr "" +msgstr "Paletta" #: 01010500.xhp msgctxt "" @@ -2294,7 +2294,7 @@ "par_id3149809\n" "help.text" msgid "Specifies the name of a selected palette. You can select a different palette here." -msgstr "" +msgstr "Megadja a kiválasztott paletta nevét. Itt másik paletta is választható." #: 01010500.xhp msgctxt "" @@ -2302,7 +2302,7 @@ "hd_id3150447\n" "help.text" msgid "Color Set" -msgstr "" +msgstr "Színkészlet" #: 01010500.xhp msgctxt "" @@ -2310,7 +2310,7 @@ "par_id3149560\n" "help.text" msgid "Contains a list of available colors. Click on the desired one in the list to select it." -msgstr "" +msgstr "Az elérhető színek listáját tartalmazza. Kattintson a listában a kívánt színre a kiválasztásához." #: 01010500.xhp msgctxt "" @@ -2318,7 +2318,7 @@ "hd_id31563321\n" "help.text" msgid "Recent Colors" -msgstr "" +msgstr "Legutóbbi színek" #: 01010500.xhp msgctxt "" @@ -2326,7 +2326,7 @@ "par_id31544811\n" "help.text" msgid "Displays the last twelve colors selected and applied. Upon selecting a new color it is added to the left of the list. If the list is full and a new color is selected then the rightmost color is deleted." -msgstr "" +msgstr "Megjeleníti az utoljára kiválasztott és alkalmazott tizenkét színt. Új szín kiválasztásakor az a lista bal oldalához kerül hozzáadásra. Ha a lista tele van és új szín kerül kiválasztásra, akkor a jobb szélső szín törlődik." #: 01010500.xhp msgctxt "" @@ -2334,7 +2334,7 @@ "hd_id3156332\n" "help.text" msgid "Add" -msgstr "" +msgstr "Hozzáadás" #: 01010500.xhp msgctxt "" @@ -2342,7 +2342,7 @@ "par_id3154481\n" "help.text" msgid "Adds the new color to the Custom palette." -msgstr "" +msgstr "Az új színt hozzáadja az Egyéni palettához." #: 01010500.xhp msgctxt "" @@ -2350,7 +2350,7 @@ "hd_id31547578\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #: 01010500.xhp msgctxt "" @@ -2358,7 +2358,7 @@ "par_id3154483\n" "help.text" msgid "Deletes the selected color without confirmation." -msgstr "" +msgstr "Kérdés nélkül törli a kijelölt színt." #: 01010500.xhp msgctxt "" @@ -2366,7 +2366,7 @@ "par_id3154574\n" "help.text" msgid "You can only delete colors from the custom palette." -msgstr "" +msgstr "Csak az egyéni palettáról lehet színeket törölni." #: 01010500.xhp msgctxt "" @@ -2374,7 +2374,7 @@ "hd_id31507671\n" "help.text" msgid "New" -msgstr "" +msgstr "Új" #: 01010500.xhp msgctxt "" @@ -2382,7 +2382,7 @@ "par_id3147426\n" "help.text" msgid "Displays a preview of the color selected from the color palette and the changes you make with the controls below." -msgstr "" +msgstr "Megjeleníti a színpalettáról választott szín és a lenti vezérlőkkel végzett módosítások előnézetét." #: 01010500.xhp msgctxt "" @@ -2390,7 +2390,7 @@ "hd_id3150103\n" "help.text" msgid "R" -msgstr "" +msgstr "V" #: 01010500.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "par_id3152462\n" "help.text" msgid "The color code of the red component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín vörös komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2406,7 +2406,7 @@ "hd_id3145366\n" "help.text" msgid "G" -msgstr "" +msgstr "Z" #: 01010500.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_id3153144\n" "help.text" msgid "The color code of the green component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín zöld komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2422,7 +2422,7 @@ "hd_id3153573\n" "help.text" msgid "B" -msgstr "" +msgstr "K" #: 01010500.xhp msgctxt "" @@ -2430,7 +2430,7 @@ "par_id3153726\n" "help.text" msgid "The color code of the blue component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín kék komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2438,7 +2438,7 @@ "hd_id31535731\n" "help.text" msgid "Hex" -msgstr "" +msgstr "Hexa" #: 01010500.xhp msgctxt "" @@ -2446,15 +2446,15 @@ "par_id31537261\n" "help.text" msgid "The color code of the color expressed as a hexadecimal value." -msgstr "" +msgstr "A szín színkódja hexadecimális értékként kifejezve." #: 01010500.xhp msgctxt "" "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "" +msgid "Pick" +msgstr "Választás" #: 01010501.xhp msgctxt "" @@ -3385,7 +3385,7 @@ "bm_id3155341\n" "help.text" msgid "views; defaults defaults; views settings; views icons; sizes icons; styles WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning clipboard; selection clipboard selection clipboard OpenGL;settings OpenGL;blacklist OpenGL;whitelist OpenGL;graphics output notebook bar;icon size" -msgstr "" +msgstr "nézetek; alapértelmezések alapértelmezések; nézetek beállítások; nézetek ikonméretek ikonstílusok WYSIWYG a betűkészletek listáiban előnézetek; betűkészletek listái betűkészletlista betűkészletnevek egér; pozicionálás vágólap; kijelölési vágólap kijelölési vágólapOpenGL;beállítások OpenGL;feketelista OpenGL;fehérlista OpenGL;grafikus kimenet szalag;ikonméret" #: 01010800.xhp msgctxt "" @@ -3393,7 +3393,7 @@ "hd_id3155341\n" "help.text" msgid "View" -msgstr "" +msgstr "Nézet" #: 01010800.xhp msgctxt "" @@ -3401,7 +3401,7 @@ "par_id3155630\n" "help.text" msgid "Specifies view options." -msgstr "" +msgstr "Megadja a nézet beállításait." #: 01010800.xhp msgctxt "" @@ -3409,7 +3409,7 @@ "hd_id310720161612581529\n" "help.text" msgid "User Interface" -msgstr "" +msgstr "Felhasználói felület" #: 01010800.xhp msgctxt "" @@ -3417,7 +3417,7 @@ "hd_id3149123\n" "help.text" msgid "Toolbar icon size" -msgstr "" +msgstr "Eszköztárikonok mérete" #: 01010800.xhp msgctxt "" @@ -3425,7 +3425,7 @@ "par_id3153947\n" "help.text" msgid "Specifies the display size of toolbar icons.The Automatic option uses the font size settings of your operating system for menus. " -msgstr "" +msgstr "Megadja az eszköztárikonok megjelenítési méretét. Az Automatikus lehetőség választása esetén a program az operációs rendszer menükhöz tartozó betűméret-beállításait használja." #: 01010800.xhp msgctxt "" @@ -3433,7 +3433,7 @@ "hd_id310720161555082010\n" "help.text" msgid "Sidebar icon size" -msgstr "" +msgstr "Oldalsáv ikonmérete" #: 01010800.xhp msgctxt "" @@ -3441,7 +3441,7 @@ "par_id310720161554582186\n" "help.text" msgid "Specifies the display size of sidebar icons." -msgstr "" +msgstr "Megadja az oldalsáv ikonjainak megjelenési méretét." #: 01010800.xhp msgctxt "" @@ -3449,7 +3449,7 @@ "hd_id190920161822223888\n" "help.text" msgid "Notebook bar icon size" -msgstr "" +msgstr "Szalag ikonmérete" #: 01010800.xhp msgctxt "" @@ -3457,7 +3457,7 @@ "par_id190920161825438077\n" "help.text" msgid "Specifies the display size of notebook bar icons." -msgstr "" +msgstr "Megadja a szalag ikonjainak megjelenési méretét." #: 01010800.xhp msgctxt "" @@ -3465,7 +3465,7 @@ "hd_id310720161555238963\n" "help.text" msgid "Icon style" -msgstr "" +msgstr "Ikonstílus" #: 01010800.xhp msgctxt "" @@ -3473,7 +3473,7 @@ "par_id310720161555341027\n" "help.text" msgid "Specifies the icon style for icons in toolbars and dialogs." -msgstr "" +msgstr "Megadja az ikonstílust az eszköztárakon és párbeszédablakokban megjelenő ikonokhoz." #: 01010800.xhp msgctxt "" @@ -3505,7 +3505,7 @@ "hd_id310720161614431319\n" "help.text" msgid "Mouse" -msgstr "" +msgstr "Egér" #: 01010800.xhp msgctxt "" @@ -3513,7 +3513,7 @@ "hd_id3166432\n" "help.text" msgid "Mouse positioning" -msgstr "" +msgstr "Egérpozicionálás" #: 01010800.xhp msgctxt "" @@ -3521,7 +3521,7 @@ "par_id3155530\n" "help.text" msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs." -msgstr "" +msgstr "Megadja, hová kerüljön az egérmutató az újonnan megnyílt párbeszédablakokon." #: 01010800.xhp msgctxt "" @@ -3529,7 +3529,7 @@ "hd_id3146982\n" "help.text" msgid "Middle mouse button" -msgstr "" +msgstr "Középső egérgomb" #: 01010800.xhp msgctxt "" @@ -3537,7 +3537,7 @@ "par_id3150521\n" "help.text" msgid "Defines the function of the middle mouse button." -msgstr "" +msgstr "Beállítja, hogy mit csináljon a középső egérgomb." #: 01010800.xhp msgctxt "" @@ -3545,7 +3545,7 @@ "par_id3152889\n" "help.text" msgid "Automatic scrolling - dragging while pressing the middle mouse button shifts the view." -msgstr "" +msgstr "Automatikus görgetés – a középső egérgomb lenyomása közbeni húzás eltolja a képet." #: 01010800.xhp msgctxt "" @@ -3553,7 +3553,7 @@ "par_id3155810\n" "help.text" msgid "Paste clipboard - pressing the middle mouse button inserts the contents of the \"Selection clipboard\" at the cursor position." -msgstr "" +msgstr "Vágólap beillesztése – a középső egérgomb lenyomása beszúrja a „Kijelölési vágólap” tartalmát a kurzorpozícióra." #: 01010800.xhp msgctxt "" @@ -3561,7 +3561,7 @@ "par_id3148703\n" "help.text" msgid "The \"Selection clipboard\" is independent of the normal clipboard that you use by Edit - Copy/Cut /Insert or the respective keyboard shortcuts. Clipboard and \"Selection clipboard\" can contain different contents at the same time." -msgstr "" +msgstr "A „Kijelölési vágólap” független a normál vágólaptól, amelyet a Szerkesztés - Másolás/Kivágás/Beszúrás menüparanccsal vagy a megfelelő gyorsbillentyűkkel használ. A vágólapnak és a „Kijelölési vágólapnak” lehet különböző a tartalma." #: 01010800.xhp msgctxt "" @@ -3569,7 +3569,7 @@ "par_id3148870\n" "help.text" msgid "Clipboard" -msgstr "" +msgstr "Vágólap" #: 01010800.xhp msgctxt "" @@ -3577,7 +3577,7 @@ "par_id3145076\n" "help.text" msgid "Selection clipboard" -msgstr "" +msgstr "Kijelölési vágólap" #: 01010800.xhp msgctxt "" @@ -3585,7 +3585,7 @@ "par_id3156030\n" "help.text" msgid "Copy content" -msgstr "" +msgstr "Tartalom másolása" #: 01010800.xhp msgctxt "" @@ -3593,7 +3593,7 @@ "par_id3150110\n" "help.text" msgid "Edit - Copy Ctrl+C." -msgstr "" +msgstr "Szerkesztés - Másolás, Ctrl+C." #: 01010800.xhp msgctxt "" @@ -3601,7 +3601,7 @@ "par_id3149588\n" "help.text" msgid "Select text, table, object." -msgstr "" +msgstr "Szöveg, táblázat, objektum kijelölése." #: 01010800.xhp msgctxt "" @@ -3609,7 +3609,7 @@ "par_id3149331\n" "help.text" msgid "Paste content" -msgstr "" +msgstr "Tartalom beillesztése" #: 01010800.xhp msgctxt "" @@ -3617,7 +3617,7 @@ "par_id3156337\n" "help.text" msgid "Edit - Paste Ctrl+V pastes at the cursor position." -msgstr "" +msgstr "Szerkesztés - Beillesztés, Ctrl+V beilleszti a kurzor helyére." #: 01010800.xhp msgctxt "" @@ -3625,7 +3625,7 @@ "par_id3151127\n" "help.text" msgid "Clicking the middle mouse button pastes at the mouse pointer position." -msgstr "" +msgstr "Az egér középső gombjára kattintva beilleszti az egérmutató helyére." #: 01010800.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "par_id3159206\n" "help.text" msgid "Pasting into another document" -msgstr "" +msgstr "Beillesztés más dokumentumba" #: 01010800.xhp msgctxt "" @@ -3641,7 +3641,7 @@ "par_id3148974\n" "help.text" msgid "No effect on the clipboard contents." -msgstr "" +msgstr "Nincs hatással a vágólap tartalmára." #: 01010800.xhp msgctxt "" @@ -3649,7 +3649,7 @@ "par_id3152870\n" "help.text" msgid "The last marked selection is the content of the selection clipboard." -msgstr "" +msgstr "A legutóbbi itteni kijelölés lesz a kijelölési vágólap tartalma." #: 01010800.xhp msgctxt "" @@ -3713,7 +3713,7 @@ "par_id1208200812004445\n" "help.text" msgid "Use the high performance Open Graphics Library (OpenGL) to render all visual elements of the application, including windows, menus, toolbars and icons. OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective." -msgstr "" +msgstr "A nagy teljesítményű OpenGL programkönyvtár használata az alkalmazás minden vizuális elemének megjelenítésére, beleértve az ablakokat, menüket, eszköztárakat és ikonokat. Az OpenGL a számítógép grafikus eszközét használja a grafikai megjelenítés gyorsítására. Ha az eszköz feketelistán van (lásd alább), akkor ez a beállítás nem lesz hatásos." #: 01010800.xhp msgctxt "" @@ -3745,7 +3745,7 @@ "hd_id3156056\n" "help.text" msgid "Icons in menus" -msgstr "" +msgstr "Ikonok a menükben" #: 01010800.xhp msgctxt "" @@ -3753,7 +3753,7 @@ "par_id3155766\n" "help.text" msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes." -msgstr "" +msgstr "Megjeleníti az ikonokat a megfelelő menüparancsok mellett. A választási lehetőségek: Automatikus, Elrejtés, Megjelenítés. Az „Automatikus” a rendszer beállítása és témája szerint jeleníti meg az ikonokat." #: 01010800.xhp msgctxt "" @@ -3761,7 +3761,7 @@ "hd_id310720161619163588\n" "help.text" msgid "Font Lists" -msgstr "" +msgstr "Betűkészlet-listák" #: 01010800.xhp msgctxt "" @@ -3769,7 +3769,7 @@ "hd_id3149262\n" "help.text" msgid "Show preview of fonts" -msgstr "" +msgstr "Betűkészletek előnézete" #: 01010800.xhp msgctxt "" @@ -3777,7 +3777,7 @@ "par_id3155415\n" "help.text" msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar." -msgstr "" +msgstr "A kiválasztható betűkészletek nevét a megfelelő betűkészlettel jeleníti meg például a Betűkészlet mezőben a Formázás eszköztáron." #: 01010900.xhp msgctxt "" @@ -4142,7 +4142,7 @@ "bm_id3153881\n" "help.text" msgid "graphics; cacheimages; cachecache for graphicsQuickstarterundoing; number of steps" -msgstr "" +msgstr "visszavonás; lépések száma kép; gyorsítótár gyorsítótár képekhez gyorsindító>" #: 01011000.xhp msgctxt "" @@ -4159,7 +4159,7 @@ "par_id3154307\n" "help.text" msgid "This tab page lets you define various settings for the image cache." -msgstr "" +msgstr "Ez a lap lehetővé tesz a kép gyorsítótár különféle beállításainak megadását." #: 01011000.xhp msgctxt "" @@ -4167,7 +4167,7 @@ "hd_id3147530\n" "help.text" msgid "Image cache" -msgstr "" +msgstr "Kép gyorsítótár" #: 01011000.xhp msgctxt "" @@ -4175,7 +4175,7 @@ "par_id3145069\n" "help.text" msgid "The image cache saves the images contained in a document in your computer's main memory. This means that the attributes of an image stored in the cache do not have to be re-calculated if you return to the page containing the image after scrolling through a document." -msgstr "" +msgstr "A képgyorsítótár menti a dokumentumban lévő képeket a számítógép főmemóriájába. Ez azt jelenti, hogy a gyorsítótárban tárolt képjellemzőket nem kell újraszámolni, ha oldalgörgetéssel visszatér a képet tartalmazó oldalra a dokumentum átlapozásakor." #: 01011000.xhp msgctxt "" @@ -4192,7 +4192,7 @@ "par_id3152813\n" "help.text" msgid "Specifies the total cache size for all images." -msgstr "" +msgstr "Megadja az összes grafikai elemhez használt gyorsítótár méretét." #: 01011000.xhp msgctxt "" @@ -4227,7 +4227,7 @@ "par_id3148674\n" "help.text" msgid "Specifies the time that each image remains in the cache in hours and minutes." -msgstr "" +msgstr "Megadja az összes kép számára órában és percben, hogy meddig maradhatnak a gyorsítótárban." #: 01011000.xhp msgctxt "" @@ -4579,7 +4579,7 @@ "hd_id3147531\n" "help.text" msgid "Allow animated images" -msgstr "" +msgstr "Animált képek engedélyezése" #: 01013000.xhp msgctxt "" @@ -5212,7 +5212,7 @@ "par_idN1064B\n" "help.text" msgid "Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat, verziókat vagy megjegyzéseket tartalmazó dokumentum mentésekor vagy küldésekor." #: 01030300.xhp msgctxt "" @@ -5228,7 +5228,7 @@ "par_idN10652\n" "help.text" msgid "Select to see a warning dialog when you try to print a document that contains recorded changes or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat vagy megjegyzéseket tartalmazó dokumentum nyomtatásakor." #: 01030300.xhp msgctxt "" @@ -5244,7 +5244,7 @@ "par_idN10659\n" "help.text" msgid "Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat, verziókat, mezőket, más forrásra hivatkozásokat (például hivatkozott szakaszokat vagy hivatkozott képeket) vagy megjegyzéseket tartalmazó dokumentum aláírásának megkísérlésekor." #: 01030300.xhp msgctxt "" @@ -5260,7 +5260,7 @@ "par_idN10660\n" "help.text" msgid "Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni olyan dokumentum PDF-be exportálásakor, amely feljegyezett változtatásokat vagy megjegyzéseket jelenít meg a Writerben." #: 01030300.xhp msgctxt "" @@ -5276,7 +5276,7 @@ "par_idN10667\n" "help.text" msgid "Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the Reset Properties button on File - Properties - General." -msgstr "" +msgstr "Válassza ki, ha mindig el szeretné távolítani a felhasználó adatait a fájltulajdonságokból. Ha ez a beállítás nincs kiválasztva, az aktuális dokumentumból akkor is eltávolíthatja a személyes adatokat a Fájl - Tulajdonságok - Általános lapon a Tulajdonságok visszaállítása gombbal." #: 01030300.xhp msgctxt "" @@ -5292,7 +5292,7 @@ "par_idN10680\n" "help.text" msgid "Select to always enable the Save with password option in the file save dialogs. Deselect the option to save files by default without password." -msgstr "" +msgstr "Válassza ki, ha azt szeretné, hogy a Mentés jelszóval négyzet a fájl mentése párbeszédpanelen alapértelmezésben be legyen jelölve. Vegye le a jelölést, ha jelszavas védelem nélkül kívánja a fájlokat menteni." #: 01030300.xhp msgctxt "" @@ -5308,7 +5308,7 @@ "par_id79042\n" "help.text" msgid "If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink." -msgstr "" +msgstr "Ha engedélyezve van, nyomva kell tartani a Ctrl billentyűt miközben hiperhivatkozásra kattint annak érdekében, hogy a hivatkozás megnyíljon. Ha nincs engedélyezve, a kattintással a hiperhivatkozás megnyílik." #: 01030300.xhp msgctxt "" @@ -5316,7 +5316,7 @@ "hd_id1972107\n" "help.text" msgid "Block any links from documents not among the trusted locations (see Macro Security)" -msgstr "" +msgstr "A megbízható helyek közt nem szereplő dokumentumok hivatkozásainak blokkolása (lásd Makróbiztonság)" #: 01030300.xhp msgctxt "" @@ -5324,7 +5324,7 @@ "par_id79043\n" "help.text" msgid "Blocks the use of links pointing to images not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialog. This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible." -msgstr "" +msgstr "Blokkolja a hivatkozásokat azokra a képekre, amelyek nem a Makróbiztonság ablak Megbízható források lapján megadott megbízható helyeken találhatók. Ez növelheti a biztonságot, ha nem megbízható forrásból (például az internetről) származó dokumentumokkal dolgozik, és aggódik a képfeldolgozó szoftverösszetevőkben lévő sebezhetőségek miatt. A hivatkozások blokkolása azt jelenti, hogy a képek nem kerülnek betöltésre, csak egy helykitöltő keret látható." #: 01030300.xhp msgctxt "" @@ -5750,7 +5750,7 @@ "hd_id3144764\n" "help.text" msgid "Copy local images to Internet" -msgstr "" +msgstr "Helyi képek másolása az internetre" #: 01030500.xhp msgctxt "" @@ -6043,7 +6043,7 @@ "hd_id3153143\n" "help.text" msgid "Images and objects" -msgstr "" +msgstr "Képek és objektumok" #: 01040200.xhp msgctxt "" @@ -6051,7 +6051,7 @@ "par_id3149261\n" "help.text" msgid "Specifies whether to display images and objects on the screen. If these elements are hidden, you will see empty frames as placeholders." -msgstr "" +msgstr "Megadja, hogy a képek és objektumok megjelenjenek-e a képernyőn. Rejtett elemek esetén üres helykitöltő kereteket fog látni." #: 01040200.xhp msgctxt "" @@ -6068,7 +6068,7 @@ "par_id3146898\n" "help.text" msgid "If the Images and objects option is not selected, no graphics will be loaded from the Internet. Graphics within a table and without an indication of their size can cause display problems when using an older HTML standard on the browsed page." -msgstr "" +msgstr "Ha a Képek és objektumok beállítás nincs kijelölve, akkor a képek nem lesznek letöltve az internetről. A táblázatokon belüli méretjelzés nélküli képek megjelenítési problémákat okozhatnak, ha a böngészőoldalon régebbi HTML-szabványok használatosak." #: 01040200.xhp msgctxt "" @@ -6131,7 +6131,7 @@ "45\n" "help.text" msgid "Displays the field names in the document instead of the contents of the fields. You can also choose View - Field Names in a text document." -msgstr "" +msgstr "A mezőnevet jeleníti meg a dokumentumban a mező tartalma helyett. Kiválaszthatja a Nézet - Mezőnevek lehetőséget egy szöveges dokumentumban." #: 01040200.xhp msgctxt "" @@ -6824,7 +6824,7 @@ "par_id3155429\n" "help.text" msgid "Specifies that tables are not split by any type of text flow break. You can also find this option in menu Table - Properties - Text Flow." -msgstr "" +msgstr "Megadja, hogy a táblázatokat semmiféle szövegtörés ne bontsa fel. Ezt a beállítást a Táblázat - Tulajdonságok - Szövegbeosztás menüpontban is megtalálhatja." #: 01040500.xhp msgctxt "" @@ -9181,7 +9181,7 @@ "7\n" "help.text" msgid "Zero values" -msgstr "Zérus értékek" +msgstr "Nulla értékek" #: 01060100.xhp msgctxt "" @@ -10671,7 +10671,7 @@ "par_id3156343\n" "help.text" msgid "To record changes to your work, choose Edit - Track Changes - Record Changes." -msgstr "" +msgstr "A munkája változásainak feljegyzéséhez válassza a Szerkesztés - Változások követése - Változások követése lehetőséget." #: 01060600.xhp msgctxt "" @@ -15377,7 +15377,7 @@ "par_idN105A7\n" "help.text" msgid "Add" -msgstr "" +msgstr "Hozzáadás" #: javaparameters.xhp msgctxt "" @@ -15393,7 +15393,7 @@ "par_idN105C55\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #: javaparameters.xhp msgctxt "" @@ -15401,7 +15401,7 @@ "par_idN105C66\n" "help.text" msgid "Opens a dialog where the selected JRE start parameter can be edited." -msgstr "" +msgstr "Megnyit egy ablakot, amelyben a kijelölt JRE indítóparaméter szerkeszthető." #: javaparameters.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-07 10:40+0000\n" +"PO-Revision-Date: 2017-04-25 07:22+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: none\n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483785631.000000\n" +"X-POOTLE-MTIME: 1493104930.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -9551,7 +9551,7 @@ "label\n" "string.text" msgid "_Objects/Images" -msgstr "_Objektumok/Képek" +msgstr "_Objektumok/képek" #: sheetprintpage.ui msgctxt "" @@ -9614,7 +9614,7 @@ "label\n" "string.text" msgid "_Scaling factor:" -msgstr "_Méretezés aránya:" +msgstr "Méretará_ny:" #: sheetprintpage.ui msgctxt "" @@ -9677,7 +9677,7 @@ "label\n" "string.text" msgid "Scale" -msgstr "Skála" +msgstr "Méretezés" #: showchangesdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-08 20:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:56+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483908295.000000\n" +"X-POOTLE-MTIME: 1492671414.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchikus" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Kitöltés formátummal" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Új stílus a kijelölés alapján" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Stílus frissítése" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-08 20:43+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483908220.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"A %PRODUCTNAME a Mozilla Public License 2.0-ás verziója szerint lett közreadva. Az MPL licenc egy példánya megtalálható a következő weboldalon: http://mozilla.org/MPL/2.0/\n" -"\n" -"A harmadik féltől származó kódok szerzői jogára vonatkozó megjegyzések és a szoftver egyes részeire vonatkozó licencfeltételek a LICENSE.html fájlban találhatóak. A Licenc megjelenítése gomb betölti az angol nyelvű licencdokumentumot.\n" -"\n" -"Minden ebben említett védjegy és bejegyzett védjegy a megfelelő tulajdonos tulajdona.\n" -"\n" -"Copyright © 2000 - 2016 a LibreOffice hozzájárulói. Minden jog fenntartva.\n" -"\n" -"A terméket a %OOOVENDOR készítette az OpenOffice.org alapján, amelynek szerzői joga az Oracle-t és/vagy leányvállalatait illeti, © 2000, 2011. A %OOOVENDOR köszöni minden közösségi tag hozzájárulását. További információ: http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-10 12:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: LANGUAGE \n" "Language: hu\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1455106597.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671285.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Formázott szöveg [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-09 10:31+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483957869.000000\n" +"X-POOTLE-MTIME: 1492671299.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Magyar (Székely-magyar rovás)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Angol (Malajzia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-27 18:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:55+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: LANGUAGE \n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482861733.000000\n" +"X-POOTLE-MTIME: 1492671358.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Nem lehet betölteni minden SmartArtot. Ez elkerülhető a Microsoft Office 2010 vagy újabb használatával való mentéssel." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/hu/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/hu/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/hu/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/hu/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2016-12-30 00:44+0000\n" -"Last-Translator: Andras Timar \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-20 06:56+0000\n" +"Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483058667.000000\n" +"X-POOTLE-MTIME: 1492671381.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Kilépés" +msgid "_Restart in Normal Mode" +msgstr "Újraindítás _normál módban" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/id/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-25 14:45+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482677122.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Hak Cipta © 2000 - 2016 para kontributor LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/extensions/source/bibliography.po libreoffice-l10n-5.3.3~rc2/translations/source/id/extensions/source/bibliography.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/extensions/source/bibliography.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/extensions/source/bibliography.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 12:30+0000\n" +"PO-Revision-Date: 2017-04-26 17:18+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482582616.000000\n" +"X-POOTLE-MTIME: 1493227121.000000\n" #: bib.src msgctxt "" @@ -30,7 +30,7 @@ "RID_BIB_STR_TABWIN_PREFIX\n" "string.text" msgid "Table;Query;Sql;Sql [Native]" -msgstr "Tabel;Kuiri;Sql;Sql [Natif]" +msgstr "Tabel;Kuiri;Sql;Sql [Native]" #: bib.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 03:24+0000\n" +"PO-Revision-Date: 2017-04-26 17:22+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" "Language: id\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467775477.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493227339.000000\n" #: 00000002.xhp msgctxt "" @@ -9272,7 +9272,7 @@ "par_id3150440\n" "help.text" msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]" -msgstr "Input #NomorBerkas As Integer; var1[, var2[, var3[,...]]]" +msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]" #: 03020202.xhp msgctxt "" @@ -9400,7 +9400,7 @@ "par_id3147229\n" "help.text" msgid "Line Input #FileNumber As Integer, Var As String" -msgstr "Line Input #NomorBerkas As Integer, Var As String" +msgstr "Line Input #FileNumber As Integer, Var As String" #: 03020203.xhp msgctxt "" @@ -9680,7 +9680,7 @@ "par_id3145785\n" "help.text" msgid "Write [#FileName], [Expressionlist]" -msgstr "Write [#NamaBerkas], [DaftarEkspresi]" +msgstr "Write [#FileName], [Expressionlist]" #: 03020205.xhp msgctxt "" @@ -10331,7 +10331,7 @@ "7\n" "help.text" msgid "Seek[#FileNumber], Position (As Long)" -msgstr "Seek[#NomorBerkas], Posisi (As Long)" +msgstr "Seek[#FileNumbe], Posisi (As Long)" #: 03020305.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libo_help scalc 4.2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 19:53+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: ID \n" @@ -5714,7 +5714,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5722,7 +5722,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-09-03 02:45+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/id/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-27 06:47+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482821278.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hirarkikal" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/id/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-27 06:52+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482821551.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME tersedia mengikuti persyaratan Mozilla Public License, v. 2.0. Salinan MPL dapat diperoleh di http://mozilla.org/MPL/2.0/.\n" -"\n" -"Kode Pihak Ketiga Pemberitahuan hak cipta tambahan dan persyaratan lisensi yang berlaku untuk bagian dari Perangkat Lunak diatur dalam berkas LICENSE.html; pilih Tampilkan Lisensi untuk melihat rincian persis dalam bahasa Inggris.\n" -"\n" -"Semua merek dagang dan merek dagang terdaftar yang disebutkan di sini adalah milik masing-masing pemiliknya.\n" -"\n" -"Hak Cipta © 2000-2016 para kontributor LibreOffice. Semua hak dilindungi.\n" -"\n" -"Produk ini diciptakan oleh %OOOVENDOR, berdasarkan OpenOffice.org, Hak Cipta 2000, 2011 Oracle dan/atau afiliasinya. %OOOVENDOR mengakui semua anggota masyarakat, silakan lihat http://www.libreoffice.org/ untuk lebih jelasnya." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/id/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-16 18:43+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1463424228.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/id/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 11:25+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hungaria (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/id/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-31 11:09+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483182554.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/id/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/id/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/id/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/id/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libio_ui svx uiconfig master\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-01 02:38+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483238300.000000\n" #: acceptrejectchangesdialog.ui @@ -5077,20 +5077,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Keluar" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Ter_apkan Perubahan dan Start Ulang" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/is/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-09 14:13+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483971195.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Höfundarréttur © 2000 - 2016, þátttakendur í LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 19:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5685,22 +5685,20 @@ msgstr "Bæta við" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 07:07+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/is/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: dialog\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-09 02:14+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483928093.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Stigskipt" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/is/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-09 02:12+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483927950.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME er í boði undir skilmálum Mozilla Public License, útg. 2.0. notkunarleyfisins. Hægt er að skoða afrit af MPL leyfinu á síðunni http://mozilla.org/MPL/2.0/.\n" -"\n" -"Ýmis aukaleg ákvæði vegna höfundarréttar og notkunarskilmála á kóða af hálfu annarra aðila, sem átt geta við hluta af þessum hugbúnaði, má lesa um í skjalinu LICENSE.html, veldu 'Birta notkunarskilmála' til að sjá nánari útlistun á ensku.\n" -"\n" -"Öll vörumerki og skrásett vörumerki eru eign eigenda hvers þeirra um sig.\n" -"\n" -"Höfundarréttur © 2000, 2016, þá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." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/is/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: dialogs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-09-23 21:39+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1443044349.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/is/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "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: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-09 15:02+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483974169.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungverska (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/is/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: stbctrls\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-09 01:54+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483926874.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/is/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/is/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/is/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/is/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-23 09:28+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490261284.000000\n" #: acceptrejectchangesdialog.ui @@ -5072,20 +5072,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Hætta" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Virkj_a breytingar og endurræsa" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/chart2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/chart2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/chart2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/chart2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-10 18:11+0000\n" +"PO-Revision-Date: 2017-04-03 12:31+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481393515.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491222663.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "_None" -msgstr "_Nessuno" +msgstr "_Nessuna" #: dlg_InsertErrorBars.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-23 19:34+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:31+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485200058.000000\n" +"X-POOTLE-MTIME: 1492515072.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Contributori di LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 Contributori di LibreOffice." #: aboutdialog.ui msgctxt "" @@ -752,7 +752,7 @@ "label\n" "string.text" msgid "None" -msgstr "Nessuno" +msgstr "Senza" #: areatabpage.ui msgctxt "" @@ -4253,7 +4253,7 @@ "label\n" "string.text" msgid "_None" -msgstr "_Nessuno" +msgstr "_Nessuna" #: distributionpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-23 18:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485196979.000000\n" +"X-POOTLE-MTIME: 1492515415.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-16 20:38+0000\n" +"PO-Revision-Date: 2017-04-03 15:23+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: LANGUAGE \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484599087.000000\n" +"X-POOTLE-MTIME: 1491232988.000000\n" #: 02130000.xhp msgctxt "" @@ -738,7 +738,7 @@ "3\n" "help.text" msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None." -msgstr "Per cambiare la formula predefinita visualizzata, fate clic con il pulsante destro del mouse sul campo Somma in fondo alla finestra, quindi scegliete la formula desiderata. Le formule disponibili sono: Valore medio, Numero2 (conteggio di valori), Numero (conteggio di numeri), Massimo, Minimo, Somma o Senza." +msgstr "Per cambiare la formula predefinita visualizzata, fate clic col pulsante destro del mouse sul campo Somma in fondo alla finestra, quindi scegliete la formula desiderata. Le formule disponibili sono: Valore medio, Numero2 (conteggio di valori), Numero (conteggio di numeri), Massimo, Minimo, Somma o Senza." #: 08080000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-23 18:46+0000\n" +"PO-Revision-Date: 2017-04-03 15:23+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197180.000000\n" +"X-POOTLE-MTIME: 1491233001.000000\n" #: address_auto.xhp msgctxt "" @@ -3320,7 +3320,7 @@ "par_id8444166\n" "help.text" msgid "Right-click a column in the preview to set the format or to hide the column." -msgstr "Fate clic con il pulsante destro del mouse su una colonna nell'anteprima per impostare il formato o nascondere la colonna." +msgstr "Fate clic col pulsante destro del mouse su una colonna nell'anteprima per impostare il formato o nascondere la colonna." #: csv_files.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/sdraw/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/sdraw/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-05-23 12:10+0000\n" +"PO-Revision-Date: 2017-04-03 15:24+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1464005402.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491233049.000000\n" #: align_arrange.xhp msgctxt "" @@ -1705,7 +1705,7 @@ "5\n" "help.text" msgid "Right-click and choose Modify - Connect." -msgstr "Fate clic con il pulsante destro del mouse e scegliete Collega." +msgstr "Fate clic col pulsante destro del mouse e scegliete Modifica - Collega." #: join_objects.xhp msgctxt "" @@ -1714,7 +1714,7 @@ "11\n" "help.text" msgid "To create a closed object, right-click a line and choose Close Object." -msgstr "Per creare un oggetto chiuso, fate clic con il pulsante destro del mouse su una riga e scegliete Chiudi oggetto." +msgstr "Per creare un oggetto chiuso, fate clic col pulsante destro del mouse su una riga e scegliete Chiudi oggetto." #: join_objects.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-01-22 22:22+0000\n" +"PO-Revision-Date: 2017-04-03 15:25+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485123774.000000\n" +"X-POOTLE-MTIME: 1491233103.000000\n" #: 00000001.xhp msgctxt "" @@ -162,7 +162,7 @@ "44\n" "help.text" msgid "To activate the context menu of an object, first click the object with the left mouse button to select it, and then, while holding down the Ctrl key or the Command and Option keys, click the mouse button again click the right mouse button. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename]." -msgstr "Per attivare il menu di contesto di un oggetto, fate clic sull'oggetto con il pulsante sinistro del mouse per selezionarlo; quindi, tenendo premuto il tasto Ctrl o i tasti Comando e Opzione, fate nuovamente clic con il pulsante del mousefate clic con il pulsante destro del mouse. Alcuni menu di contesto possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu di contesto per un grande numero di funzioni. " +msgstr "Per attivare il menu di contesto di un oggetto, fate clic sull'oggetto col pulsante sinistro del mouse per selezionarlo; quindi, tenendo premuto il tasto Ctrl o i tasti Comando e Opzione, fate nuovamente clic col pulsante del mousefate clic con il pulsante destro del mouse. Alcuni menu di contesto possono essere richiamati anche senza selezionare un oggetto. $[officename] dispone di menu di contesto per un grande numero di funzioni. " #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-23 18:47+0000\n" +"PO-Revision-Date: 2017-04-20 12:09+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197249.000000\n" +"X-POOTLE-MTIME: 1492690140.000000\n" #: 01010000.xhp msgctxt "" @@ -12476,7 +12476,7 @@ "18\n" "help.text" msgid "To delete a record in the current table, right-click the row header of the record, and then select Delete. Deletes the selected record." -msgstr "Per eliminare un record nella tabella attiva, fate clic con il pulsante destro del mouse sull'intestazione di riga del record, quindi selezionate Cancella. Elimina il record selezionato." +msgstr "Per eliminare un record nella tabella attiva, fate clic col pulsante destro del mouse sull'intestazione di riga del record, quindi selezionate Cancella. Elimina il record selezionato." #: 02250000.xhp msgctxt "" @@ -14545,7 +14545,7 @@ "par_idN10CD6\n" "help.text" msgid "To undo the last change, right-click." -msgstr "Per annullare l'ultima modifica, fate clic con il pulsante destro del mouse." +msgstr "Per annullare l'ultima modifica, fate clic col pulsante destro del mouse." #: 05020200.xhp msgctxt "" @@ -20258,7 +20258,7 @@ "40\n" "help.text" msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose Table, and then click the Borders tab. To modify the border of a table cell, select the cell, right-click, choose Table, and then click the Borders tab." -msgstr "Per modificare il bordo di un'intera tabella, posizionate il cursore in una cella, fate clic con il pulsante destro del mouse, scegliete Tabella e fate clic sulla scheda Bordo. Per modificare il bordo di una cella, selezionatela, fate clic con il pulsante destro del mouse, scegliete Tabella e fate clic sulla scheda Bordo." +msgstr "Per modificare il bordo di un'intera tabella, posizionate il cursore in una cella, fate clic col pulsante destro del mouse, scegliete Tabella e fate clic sulla scheda Bordo. Per modificare il bordo di una cella, selezionatela, fate clic col pulsante destro del mouse, scegliete Tabella e fate clic sulla scheda Bordo." #: 05030500.xhp msgctxt "" @@ -23619,7 +23619,7 @@ "2\n" "help.text" msgid "Combines the contents of the selected table cells into a single cell." -msgstr "Unisce in un unica cella il contenuto delle celle selezionate." +msgstr "Unisce in un'unica cella il contenuto delle celle selezionate." #: 05100100.xhp msgctxt "" @@ -28864,7 +28864,7 @@ "8\n" "help.text" msgid "To edit the individual objects of a group, select the group, right-click, and then choose Enter GroupGroup - Enter Group" -msgstr "Per modificare i singoli oggetti di un gruppo, selezionatelo, fate clic con il pulsante destro del mouse, quindi scegliete Modifica gruppoGruppo - Modifica gruppo" +msgstr "Per modificare i singoli oggetti di un gruppo, selezionatelo, fate clic col pulsante destro del mouse, quindi scegliete Modifica gruppoGruppo - Modifica gruppo" #: 05290000.xhp msgctxt "" @@ -28891,7 +28891,7 @@ "11\n" "help.text" msgid "To exit a group, right-click, and then choose Exit GroupGroup - Exit Group" -msgstr "Per uscire da un gruppo, fate clic con il pulsante destro del mouse e scegliete EsciGruppo - Esci" +msgstr "Per uscire da un gruppo, fate clic col pulsante destro del mouse e scegliete EsciGruppo - Esci" #: 05290000.xhp msgctxt "" @@ -30626,7 +30626,7 @@ "28\n" "help.text" msgid "To access the commands for formatting the table, right-click a column header, or a row header." -msgstr "Per accedere ai comandi di formattazione della tabella, fate clic con il pulsante destro del mouse sull'intestazione di una colonna o di una riga." +msgstr "Per accedere ai comandi di formattazione della tabella, fate clic col pulsante destro del mouse sull'intestazione di una colonna o di una riga." #: 05340400.xhp msgctxt "" @@ -34920,7 +34920,7 @@ "2\n" "help.text" msgid "To access this menu, right-click a misspelled word in your document. To view the misspelled words in your document, choose Tools - Automatic Spell Checking." -msgstr "Per accedere a questo menu, fate clic con il pulsante destro del mouse su una parola scritta in modo errato nel documento. Per visualizzare le parole con errori ortografici presenti nel documento, scegliete Strumenti - Controllo ortografico automatico." +msgstr "Per accedere a questo menu, fate clic col pulsante destro del mouse su una parola scritta in modo errato nel documento. Per visualizzare le parole con errori ortografici presenti nel documento, scegliete Strumenti - Controllo ortografico automatico." #: 06040500.xhp msgctxt "" @@ -42445,7 +42445,7 @@ "par_id9313638\n" "help.text" msgid "You will see the Check for Updates dialog with some information about the online update of %PRODUCTNAME." -msgstr "Apparirà la finestra di dialogo Controlla aggiornamenti con informazioni sull'aggiornamento online di %PRODUCTNAME." +msgstr "Apparirà la finestra di dialogo Controlla aggiornamenti con informazioni sull'aggiornamento in linea di %PRODUCTNAME." #: online_update.xhp msgctxt "" @@ -42461,7 +42461,7 @@ "par_id6479384\n" "help.text" msgid "If you need a proxy server, enter the proxy settings in %PRODUCTNAME - PreferencesTools - Options - Internet - Proxy." -msgstr "Se usate un server Proxy, verificate le impostazioni proxy in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet - Proxy." +msgstr "Se usate un server proxy, verificatene le impostazioni in %PRODUCTNAME - PreferenzeStrumenti - Opzioni - Internet - Proxy." #: online_update.xhp msgctxt "" @@ -42477,7 +42477,7 @@ "par_id3722342\n" "help.text" msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:" -msgstr "Se è disponibile una nuova versione e %PRODUCTNAME non è impostato per il download automatico, potete allora scegliere una delle azioni seguenti:" +msgstr "Se è disponibile una nuova versione e %PRODUCTNAME non è impostato per lo scaricamento automatico, potete allora scegliere una delle azioni seguenti:" #: online_update.xhp msgctxt "" @@ -42501,7 +42501,7 @@ "par_id9168980\n" "help.text" msgid "Abort this check for updates for now." -msgstr "Annullate, per adesso, il controllo aggiornamenti." +msgstr "Annulla, per adesso, il controllo aggiornamenti." #: online_update.xhp msgctxt "" @@ -42509,7 +42509,7 @@ "par_id9766533\n" "help.text" msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog." -msgstr "Se %PRODUCTNAME è configurato per scaricare automaticamente i file, il download partirà immediatamente. Il download continua anche se riducete a icona la finestra." +msgstr "Se %PRODUCTNAME è configurato per scaricare automaticamente i file, lo scaricamento partirà immediatamente. Lo scaricamento continua anche se riducete a icona la finestra." #: online_update.xhp msgctxt "" @@ -42533,7 +42533,7 @@ "par_id9219641\n" "help.text" msgid "You need Administrator rights to update %PRODUCTNAME." -msgstr "Per aggiornare %PRODUCTNAME, sono necessari i diritti di amministratore." +msgstr "Per aggiornare %PRODUCTNAME sono necessari i diritti di amministratore." #: online_update_dialog.xhp msgctxt "" @@ -42565,7 +42565,7 @@ "par_id4799340\n" "help.text" msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file." -msgstr "Una volta iniziato il download, nella finestra di dialogo saranno visualizzati una barra di avanzamento e tre pulsanti. Potete mettere in pausa e riprendere il download facendo clic sui pulsanti Pausa e Riprendi. Fate clic su Annulla per interrompere il download ed eliminare la parte già scaricata del file." +msgstr "Una volta avviato lo scaricamento, nella finestra di dialogo saranno visualizzati una barra di avanzamento e tre pulsanti. Potete mettere in pausa e riprendere lo scaricamento facendo clic sui pulsanti Pausa e Riprendi. Fate clic su Annulla per interrompere lo scaricamento ed eliminare la parte già scaricata del file." #: online_update_dialog.xhp msgctxt "" @@ -42581,7 +42581,7 @@ "par_id8266853\n" "help.text" msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME." -msgstr "Una volta terminato il download, potete fare clic su Installa per avviare l'installazione dell'aggiornamento. Vi apparirà una finestra di dialogo in cui potete scegliere di chiudere %PRODUCTNAME." +msgstr "Una volta completato lo scaricamento, potete fare clic su Installa per avviare l'installazione dell'aggiornamento. Vi apparirà una finestra di dialogo in cui potete scegliere di chiudere %PRODUCTNAME." #: online_update_dialog.xhp msgctxt "" @@ -42589,7 +42589,7 @@ "par_id2871181\n" "help.text" msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script." -msgstr "In alcuni sistemi operativi potrebbe essere necessario spostarsi nella cartella di download, decomprimere i file scaricati e avviare manualmente lo script di installazione." +msgstr "In alcuni sistemi operativi potrebbe essere necessario spostarsi nella cartella di scaricamento, decomprimere i file scaricati e avviare manualmente lo script d'installazione." #: online_update_dialog.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-23 18:53+0000\n" +"PO-Revision-Date: 2017-04-03 15:27+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197626.000000\n" +"X-POOTLE-MTIME: 1491233220.000000\n" #: 01110000.xhp msgctxt "" @@ -768,7 +768,7 @@ "5\n" "help.text" msgid "Right-click the control and choose Control. A dialog opens where you can define the properties of the control." -msgstr "Fate clic con il pulsante destro del mouse sul campo di controllo e scegliete Campo di controllo. Si apre una finestra di dialogo in cui potete definite le proprietà del campo di controllo." +msgstr "Fate clic col pulsante destro del mouse sul campo di controllo e scegliete Campo di controllo. Si apre una finestra di dialogo in cui potete definite le proprietà del campo di controllo." #: 01170000.xhp msgctxt "" @@ -10047,7 +10047,7 @@ "3\n" "help.text" msgid "After you have finished editing your form, right-click \"Forms\" in the Form Navigator and deselect Open in Design Mode. Save your form when you are finished." -msgstr "Dopo avere apportato tutte le modifiche desiderate al formulario, fate clic con il pulsante destro del mouse su \"Formulari\" nel Navigatore formulario e deselezionate Apri nel modo bozza. Al termine, salvate il formulario." +msgstr "Dopo avere apportato tutte le modifiche desiderate al formulario, fate clic col pulsante destro del mouse su \"Formulari\" nel Navigatore formulario e deselezionate Apri nel modo bozza. Al termine, salvate il formulario." #: 01171000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/04.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-23 18:54+0000\n" +"PO-Revision-Date: 2017-04-03 15:13+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197667.000000\n" +"X-POOTLE-MTIME: 1491232431.000000\n" #: 01010000.xhp msgctxt "" @@ -1521,7 +1521,7 @@ "355\n" "help.text" msgid "Page Down" -msgstr "(PagGiù)" +msgstr "PagGiù" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/05.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/05.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-01-18 21:02+0000\n" +"PO-Revision-Date: 2017-04-05 12:55+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484773363.000000\n" +"X-POOTLE-MTIME: 1491396931.000000\n" #: 00000001.xhp msgctxt "" @@ -129,7 +129,7 @@ "hd_id3168534\n" "help.text" msgid "Downloads" -msgstr "Download" +msgstr "Scaricamenti" #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-01-23 18:57+0000\n" +"PO-Revision-Date: 2017-04-03 15:53+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197846.000000\n" +"X-POOTLE-MTIME: 1491234817.000000\n" #: aaa_start.xhp msgctxt "" @@ -968,7 +968,7 @@ "15\n" "help.text" msgid "Defining Borders for Paragraphs " -msgstr "Definire bordi per i paragrafi" +msgstr "Definire i bordi per i paragrafi" #: border_paragraph.xhp msgctxt "" @@ -1119,7 +1119,7 @@ "16\n" "help.text" msgid "Defining Borders for Tables and Table Cells" -msgstr "Definire bordi per tabelle e celle di tabella" +msgstr "Definire bordi per le tabelle e le celle di tabella" #: border_table.xhp msgctxt "" @@ -4379,7 +4379,7 @@ "par_id1331217\n" "help.text" msgid "In the Base window, right-click the name of the table to export. Choose Copy from the context menu." -msgstr "Nella finestra Base fate clic con il pulsante destro del mouse sul nome della tabella da esportare. Scegliete Copia dal menu di contesto." +msgstr "Nella finestra Base fate clic col pulsante destro del mouse sul nome della tabella da esportare. Scegliete Copia dal menu di contesto." #: data_im_export.xhp msgctxt "" @@ -9202,7 +9202,7 @@ "par_idN107B2\n" "help.text" msgid "Right-click the button and choose Control." -msgstr "Fate clic con il pulsante destro del mouse e scegliete Campo di controllo." +msgstr "Fate clic col pulsante destro del mouse e scegliete Campo di controllo." #: formfields.xhp msgctxt "" @@ -9253,7 +9253,7 @@ "par_idN10828\n" "help.text" msgid "Right-click the button and choose Form." -msgstr "Fate clic con il pulsante destro del mouse e scegliete Formulario." +msgstr "Fate clic col pulsante destro del mouse e scegliete Formulario." #: formfields.xhp msgctxt "" @@ -9834,7 +9834,7 @@ "par_idN1082C\n" "help.text" msgid "Right-click the \"Internet Link\" or \"Visited Internet Link\" character style, and choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di carattere \"Link Internet\" o \"Link Internet visitato\" e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di carattere \"Collegamento Internet\" o \"Collegamento Internet visitato\" e scegliete Modifica." #: hyperlink_edit.xhp msgctxt "" @@ -17877,7 +17877,7 @@ "par_idN10B7F\n" "help.text" msgid "Right-click the control, then choose Properties." -msgstr "Fate clic con il pulsante destro del mouse sul controllo e scegliete Proprietà." +msgstr "Fate clic col pulsante destro del mouse sul controllo e scegliete Proprietà." #: scripting.xhp msgctxt "" @@ -19934,7 +19934,7 @@ "8\n" "help.text" msgid "Right-click and choose Properties." -msgstr "Fate clic con il pulsante destro del mouse e scegliete Proprietà." +msgstr "Fate clic col pulsante destro del mouse e scegliete Proprietà." #: workfolder.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-01-22 22:26+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485123967.000000\n" #: 01000000.xhp @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Preleva" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-22 22:27+0000\n" +"PO-Revision-Date: 2017-04-03 15:29+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485124030.000000\n" +"X-POOTLE-MTIME: 1491233391.000000\n" #: 01170000.xhp msgctxt "" @@ -5019,7 +5019,7 @@ "4\n" "help.text" msgid "Select the object(s) that you want to move to the foreground. Right-click and choose Arrange – In Front of Object, and then click an object in your slide." -msgstr "Selezionate l'oggetto o gli oggetti da spostare in primo piano. Fate clic con il pulsante destro del mouse e scegliete Disponi - Davanti all'oggetto, quindi fate clic su un oggetto nella diapositiva." +msgstr "Selezionate l'oggetto o gli oggetti da spostare in primo piano. Fate clic col pulsante destro del mouse e scegliete Disponi - Davanti all'oggetto, quindi fate clic su un oggetto nella diapositiva." #: 05250600.xhp msgctxt "" @@ -5062,7 +5062,7 @@ "4\n" "help.text" msgid "Select the object(s) that you want to move behind an other object. Right-click and choose Arrange - Behind Object, and then click an object in your slide." -msgstr "Selezionate l'oggetto o gli oggetti da spostare dietro un altro oggetto. Fate clic con il pulsante destro del mouse e scegliete Disponi - Dietro l'oggetto, quindi fate clic su un oggetto nella diapositiva." +msgstr "Selezionate l'oggetto o gli oggetti da spostare dietro un altro oggetto. Fate clic col pulsante destro del mouse e scegliete Disponi - Dietro l'oggetto, quindi fate clic su un oggetto nella diapositiva." #: 05250600.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-23 18:57+0000\n" +"PO-Revision-Date: 2017-04-03 15:30+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485197875.000000\n" +"X-POOTLE-MTIME: 1491233452.000000\n" #: 3d_create.xhp msgctxt "" @@ -135,7 +135,7 @@ "54\n" "help.text" msgid "Right-click the object and choose Convert - To Curve." -msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete Converti - In curva." +msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete Converti - In curva." #: 3d_create.xhp msgctxt "" @@ -171,7 +171,7 @@ "59\n" "help.text" msgid "Right-click the object and choose Convert - To Polygon." -msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete Converti - In poligono." +msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete Converti - In poligono." #: 3d_create.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_idN1088B\n" "help.text" msgid "Click the Extrusion On/Off iconIcon on the Drawing bar, or right-click the object and choose Convert - To 3D." -msgstr "Fate clic sull'icona Estrusione on/offIcona nella barra Disegno oppure fate clic con il pulsante destro del mouse sull'oggetto e scegliete Converti - In 3D." +msgstr "Fate clic sull'icona Estrusione on/offIcona nella barra Disegno oppure fate clic col pulsante destro del mouse sull'oggetto e scegliete Converti - In 3D." #: 3d_create.xhp msgctxt "" @@ -259,7 +259,7 @@ "69\n" "help.text" msgid "Right-click the object and choose Convert - To 3D Rotation Object" -msgstr "Fate clic con il pulsante destro del mouse sull'oggetto e scegliete Converti - In solido di rotazione 3D." +msgstr "Fate clic col pulsante destro del mouse sull'oggetto e scegliete Converti - In solido di rotazione 3D." #: 3d_create.xhp msgctxt "" @@ -934,7 +934,7 @@ "23\n" "help.text" msgid "To temporarily remove a slide from your presentation, go to Slide Sorter, right-click the slide, and then choose Show/Hide Slide. The number of the hidden slide is crossed out. To show the slide, right-click the slide, and then choose Show/Hide Slide." -msgstr "Per rimuovere temporaneamente una diapositiva dalla presentazione, accedete all'Ordine diapositive, fate clic con il pulsante destro del mouse sulla diapositiva e scegliete Mostra/nascondi diapositiva. Il numero della diapositiva nascosta appare barrato. Per mostrare la diapositiva, fate clic col pulsante destro del mouse sulla stessa e selezionate Mostra/nascondi diapositiva." +msgstr "Per rimuovere temporaneamente una diapositiva dalla presentazione, accedete all'Ordine diapositive, fate clic col pulsante destro del mouse sulla diapositiva e scegliete Mostra/nascondi diapositiva. Il numero della diapositiva nascosta appare barrato. Per mostrare la diapositiva, fate clic col pulsante destro del mouse sulla stessa e selezionate Mostra/nascondi diapositiva." #: background.xhp msgctxt "" @@ -2440,7 +2440,7 @@ "par_idN10643\n" "help.text" msgid "Right-click the layer tab area at the bottom." -msgstr "Fate clic con il pulsante destro del mouse nell'area inferiore della scheda del livello." +msgstr "Fate clic col pulsante destro del mouse nell'area inferiore della scheda del livello." #: layer_new.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/simpress.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/simpress.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-05-09 13:07+0000\n" +"PO-Revision-Date: 2017-04-03 15:29+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1462799255.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491233365.000000\n" #: main0000.xhp msgctxt "" @@ -1101,7 +1101,7 @@ "9\n" "help.text" msgid "To specify the measurement units for a ruler, right-click the ruler, and then choose a new unit from the list." -msgstr "Per specificare l'unità di misura per un righello, fate clic con il pulsante destro del mouse sul righello e scegliete l'unità di misura dall'elenco." +msgstr "Per specificare l'unità di misura per un righello, fate clic col pulsante destro del mouse sul righello e scegliete l'unità di misura dall'elenco." #: main0209.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-23 19:01+0000\n" +"PO-Revision-Date: 2017-04-05 12:56+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1485198119.000000\n" +"X-POOTLE-MTIME: 1491397013.000000\n" #: 01120000.xhp msgctxt "" @@ -5062,7 +5062,7 @@ "par_id7174596\n" "help.text" msgid "Right-click the field on the status line that shows \"Envelope\"." -msgstr "Fate clic con il pulsante destro del mouse sul campo nella barra di stato che contiene \"Busta\"." +msgstr "Fate clic col pulsante destro del mouse sul campo nella barra di stato che contiene \"Busta\"." #: 04070000.xhp msgctxt "" @@ -18477,7 +18477,7 @@ "61\n" "help.text" msgid "loading of the graphic is terminated by the user (for example, when downloading)" -msgstr "L'utente interrompe il caricamento dell'immagine (ad esempio, durante un download)" +msgstr "L'utente interrompe il caricamento dell'immagine (ad esempio, durante uno scaricamento)" #: 05060700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/04.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-07-04 16:53+0200\n" -"PO-Revision-Date: 2017-03-02 16:09+0000\n" +"PO-Revision-Date: 2017-04-03 15:14+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488470946.000000\n" +"X-POOTLE-MTIME: 1491232460.000000\n" #: 01020000.xhp msgctxt "" @@ -1575,7 +1575,7 @@ "187\n" "help.text" msgid "PageDown" -msgstr "(PagGiù)" +msgstr "PagGiù" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-23 19:10+0000\n" +"PO-Revision-Date: 2017-04-03 16:25+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1485198611.000000\n" +"X-POOTLE-MTIME: 1491236737.000000\n" #: anchor_object.xhp msgctxt "" @@ -1470,7 +1470,7 @@ "17\n" "help.text" msgid "Defining Borders for Objects" -msgstr "Definire bordi per gli oggetti" +msgstr "Definire i bordi per gli oggetti" #: border_object.xhp msgctxt "" @@ -1479,7 +1479,7 @@ "1\n" "help.text" msgid "In Writer, you can define borders around OLE objects, plug-ins, diagrams/charts, graphics and frames. The name of the menu to be used depends on the object selected." -msgstr "In Writer potete definire bordi attorno ad oggetti OLE, plugin, diagrammi/grafici, immagini e cornici. Il nome del menu da utilizzare dipende dall'oggetto selezionato." +msgstr "In Writer potete definire bordi attorno a oggetti OLE, plugin, diagrammi/grafici, immagini e cornici. Il nome del menu da utilizzare dipende dall'oggetto selezionato." #: border_object.xhp msgctxt "" @@ -1515,7 +1515,7 @@ "6\n" "help.text" msgid "Click one of the predefined border styles. This replaces the current border style of the object with the selected style." -msgstr "Fate clic su uno degli stili bordo predefiniti. Lo stile bordo attuale dell'oggetto verrà sostituito con lo stile selezionato." +msgstr "Fate clic su uno degli stili bordo predefiniti. Lo stile bordo attuale dell'oggetto sarà sostituito con lo stile selezionato." #: border_object.xhp msgctxt "" @@ -1612,7 +1612,7 @@ "15\n" "help.text" msgid "Defining Borders for Pages " -msgstr "Definire bordi per le pagine" +msgstr "Definire i bordi per le pagine" #: border_page.xhp msgctxt "" @@ -3639,7 +3639,7 @@ "par_id3153153\n" "help.text" msgid "In the list of page styles, right-click \"Left Page\" and choose Modify." -msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su \"Pagina sinistra\" e scegliete Modifica." +msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su \"Pagina sinistra\" e scegliete Modifica." #: even_odd_sdw.xhp msgctxt "" @@ -3663,7 +3663,7 @@ "par_id3145299\n" "help.text" msgid "In the list of page styles, right-click \"Right Page\" and choose Modify." -msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su \"Pagina destra\" e scegliete Modifica." +msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su \"Pagina destra\" e scegliete Modifica." #: even_odd_sdw.xhp msgctxt "" @@ -5262,7 +5262,7 @@ "par_id3145029\n" "help.text" msgid "To change the format of a footnote, click in the footnote, press Command+TF11 to open the Styles and Formatting window, right-click \"Footnote\" in the list, and then choose Modify." -msgstr "Per cambiare il formato di una nota a piè pagina, fate clic all'interno della nota, premete Comando+TF11 per aprire la finestra Stili e Formattazione, fate clic con il pulsante destro del mouse su \"Nota a piè di pagina\" e scegliete Modifica." +msgstr "Per cambiare il formato di una nota a piè pagina, fate clic all'interno della nota, premete Comando+TF11 per aprire la finestra Stili e Formattazione, fate clic col pulsante destro del mouse su \"Nota a piè di pagina\" e scegliete Modifica." #: footnote_usage.xhp msgctxt "" @@ -5358,7 +5358,7 @@ "par_id3154251\n" "help.text" msgid "Right-click the Paragraph Style that you want to modify, for example, \"Footnote\", and choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo da modificare, ad esempio \"Nota a piè pagina\", e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo da modificare, ad esempio \"Nota a piè pagina\", e scegliete Modifica." #: footnote_with_line.xhp msgctxt "" @@ -5868,7 +5868,7 @@ "par_id3153022\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 "Per aggiungere un indice, ad esempio un indice generale, fate clic con il pulsante destro del mouse nell'elenco del Navigatore e scegliete Inserisci - Indice." +msgstr "Per aggiungere un indice, ad esempio un indice generale, fate clic col pulsante destro del mouse nell'elenco del Navigatore e scegliete Inserisci - Indice." #: globaldoc_howtos.xhp msgctxt "" @@ -5924,7 +5924,7 @@ "par_id3153907\n" "help.text" msgid "Right-click \"Heading 1\" and choose Modify." -msgstr "Fate clic con il pulsante destro del mouse su \"Intestazione 1\" e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse su \"Intestazione 1\" e scegliete Modifica." #: globaldoc_howtos.xhp msgctxt "" @@ -6164,7 +6164,7 @@ "par_id3150510\n" "help.text" msgid "Right-click \"Right Page\" in the list of page styles and choose Modify." -msgstr "Fate clic con il pulsante destro del mouse su \"Pagina destra\" e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse su \"Pagina destra\" e scegliete Modifica." #: header_pagestyles.xhp msgctxt "" @@ -6204,7 +6204,7 @@ "par_id3150714\n" "help.text" msgid "In the Styles and Formatting window, right-click \"Left Page\" in the list of page styles and choose Modify." -msgstr "Nella finestra Stili e formattazione, fate clic con il pulsante destro del mouse su \"Pagina sinistra\" e scegliete Modifica." +msgstr "Nella finestra Stili e formattazione, fate clic col pulsante destro del mouse su \"Pagina sinistra\" e scegliete Modifica." #: header_pagestyles.xhp msgctxt "" @@ -7156,7 +7156,7 @@ "par_id4013794\n" "help.text" msgid "Choose Format - Paragraph - Indents & Spacing to change the indents for the current paragraph or for all selected paragraphs. You can also set indents using the ruler." -msgstr "Scegliete Formato - Paragrafo - Rientro e spaziaturaper cambiare i rientri del paragrafo attivo o per tutti i paragrafi selezionati. Potete anche impostare i rientri usando il righello." +msgstr "Scegliete Formato - Paragrafo - Rientro e spaziatura per cambiare i rientri del paragrafo attivo o per tutti i paragrafi selezionati. Potete anche impostare i rientri usando il righello." #: indenting.xhp msgctxt "" @@ -7164,7 +7164,7 @@ "par_id1631824\n" "help.text" msgid "Right-click a paragraph and choose Edit Paragraph Style - Indents & Spacing to change the indents for all paragraphs that have the same Paragraph Style." -msgstr "Fate clic con il pulsante destro del mouse su un paragrafo e scegliete Modifica modello paragrafo - Rientri e spaziatura per cambiare i rientri per tutti i paragrafi che hanno il medesimo Modello di paragrafo." +msgstr "Fate clic col pulsante destro del mouse su un paragrafo e scegliete Modifica modello paragrafo - Rientri e spaziatura per cambiare i rientri per tutti i paragrafi che hanno il medesimo Modello di paragrafo." #: indenting.xhp msgctxt "" @@ -7319,7 +7319,7 @@ "58\n" "help.text" msgid "Right-click and choose an editing option from the menu." -msgstr "Fate clic con il pulsante destro del mouse su un'opzione di modifica del menu." +msgstr "Fate clic col pulsante destro del mouse su un'opzione di modifica del menu." #: indices_edit.xhp msgctxt "" @@ -9654,7 +9654,7 @@ "par_id3154853\n" "help.text" msgid "Right-click the \"Default\" paragraph style and choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo \"Predefinito\" e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo \"Predefinito\" e scegliete Modifica." #: numbering_lines.xhp msgctxt "" @@ -10043,7 +10043,7 @@ "11\n" "help.text" msgid "Right-click in the table, and choose Table." -msgstr "Fate clic con il pulsante destro del mouse nella tabella e scegliete Tabella." +msgstr "Fate clic col pulsante destro del mouse nella tabella e scegliete Tabella." #: page_break.xhp msgctxt "" @@ -10134,7 +10134,7 @@ "par_idN10837\n" "help.text" msgid "In the list of page styles, right-click an item, and then choose New." -msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su un elemento e scegliete Nuovo." +msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete Nuovo." #: pagebackground.xhp msgctxt "" @@ -10790,7 +10790,7 @@ "par_idN10749\n" "help.text" msgid "Right-click a page style and choose New. The new page style initially gets all properties of the selected page style." -msgstr "Fate clic con il pulsante destro del mouse su un modello di pagina e scegliete Nuovo. Al nuovo modello di pagina inizialmente vengono assegnate le proprietà del modello di pagina selezionato." +msgstr "Fate clic col pulsante destro del mouse su un modello di pagina e scegliete Nuovo. Al nuovo modello di pagina inizialmente vengono assegnate le proprietà del modello di pagina selezionato." #: pageorientation.xhp msgctxt "" @@ -11014,7 +11014,7 @@ "par_id3149641\n" "help.text" msgid "In the list of page styles, right-click an item, and then choose New." -msgstr "Nell'elenco degli stili di pagina, fate clic con il pulsante destro del mouse su un elemento e scegliete Nuovo." +msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete Nuovo." #: pagestyles.xhp msgctxt "" @@ -11467,7 +11467,7 @@ "par_id3155066\n" "help.text" msgid "Right-click the page style in the list that you want to specify the paper source for, and then choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di pagina per il quale volete specificare un determinato cassetto di alimentazione della stampante e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di pagina per il quale volete specificare un determinato cassetto di alimentazione della stampante e scegliete Modifica." #: printer_tray.xhp msgctxt "" @@ -12345,7 +12345,7 @@ "par_idN1068C\n" "help.text" msgid "Open the Styles and Formatting window, click the Paragraph Style you want to exempt, right-click that style, choose Modify. In the dialog, click the Indents & Spacing tab." -msgstr "Aprite la finestra Stili e formattazione, fate clic con il pulsante destro del mouse sullo stile di paragrafo da escludere e scegliete Modifica. Nella finestra di dialogo, fate clic sulla scheda Rientro e spaziatura." +msgstr "Aprite la finestra Stili e formattazione, fate clic col pulsante destro del mouse sullo stile di paragrafo da escludere e scegliete Modifica. Nella finestra di dialogo, fate clic sulla scheda Rientro e spaziatura." #: registertrue.xhp msgctxt "" @@ -15455,7 +15455,7 @@ "9\n" "help.text" msgid "Select the text that you want to capitalize." -msgstr "Selezionate il testo da formattare con lettere maiuscole." +msgstr "Selezionate il testo da formattare in lettere maiuscole." #: text_capital.xhp msgctxt "" @@ -15498,7 +15498,7 @@ "12\n" "help.text" msgid "Select the text that you want to change to lowercase." -msgstr "Selezionate il testo da formattare a lettere minuscole." +msgstr "Selezionate il testo da formattare in lettere minuscole." #: text_capital.xhp msgctxt "" @@ -15754,7 +15754,7 @@ "68\n" "help.text" msgid "Right-click in a paragraph, choose Paragraph, set the options that you want, for example, the background color, and then click OK." -msgstr "Fate clic con il pulsante destro del mouse in un paragrafo, scegliete Paragrafo, impostate le opzioni desiderate, ad esempio il colore di sfondo, e fate clic su OK." +msgstr "Fate clic col pulsante destro del mouse in un paragrafo, scegliete Paragrafo, impostate le opzioni desiderate, ad esempio il colore di sfondo, e fate clic su OK." #: text_emphasize.xhp msgctxt "" @@ -15867,7 +15867,7 @@ "14\n" "help.text" msgid "To edit a frame, select the frame, right-click, and then choose a formatting option. You can also right-click the selected frame, and choose Frame." -msgstr "Per modificare una cornice, selezionatela, fate clic con il pulsante destro del mouse e scegliete un'opzione di formattazione. In alternativa, potete fare clic con il pulsante destro del mouse sulla cornice selezionata e scegliere Cornice." +msgstr "Per modificare una cornice, selezionatela, fate clic col pulsante destro del mouse e scegliete un'opzione di formattazione. In alternativa, potete fare clic col pulsante destro del mouse sulla cornice selezionata e scegliere Cornice." #: text_frame.xhp msgctxt "" @@ -16329,7 +16329,7 @@ "53\n" "help.text" msgid "PgDn" -msgstr "(PagGiù)" +msgstr "PagGiù" #: text_nav_keyb.xhp msgctxt "" @@ -16654,7 +16654,7 @@ "32\n" "help.text" msgid "Right-click in a paragraph, and choose Paragraph." -msgstr "Fate clic con il pulsante destro del mouse in un paragrafo e scegliete Paragrafo." +msgstr "Fate clic col pulsante destro del mouse in un paragrafo e scegliete Paragrafo." #: using_hyphen.xhp msgctxt "" @@ -16725,7 +16725,7 @@ "55\n" "help.text" msgid "Right-click the paragraph style that you want to hyphenate, and then choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo da sillabare e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo da sillabare e scegliete Modifica." #: using_hyphen.xhp msgctxt "" @@ -17151,7 +17151,7 @@ "36\n" "help.text" msgid "Right-click the paragraph style that you want to apply numbering to, and then choose Modify." -msgstr "Fate clic con il pulsante destro del mouse sullo stile di paragrafo a cui applicare la numerazione e scegliete Modifica." +msgstr "Fate clic col pulsante destro del mouse sullo stile di paragrafo a cui applicare la numerazione e scegliete Modifica." #: using_numbering.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-04 22:31+0000\n" +"PO-Revision-Date: 2017-04-20 12:15+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483569110.000000\n" +"X-POOTLE-MTIME: 1492690526.000000\n" #: classificationbar.xhp msgctxt "" @@ -1206,7 +1206,7 @@ "par_idN1062C\n" "help.text" msgid "Selects the current column." -msgstr "Seleziona la colonna su cui si trova il cursore." +msgstr "Seleziona la colonna attiva." #: main0110.xhp msgctxt "" @@ -1222,7 +1222,7 @@ "par_idN10632\n" "help.text" msgid "Selects the current row." -msgstr "Seleziona la riga in cui si trova il cursore." +msgstr "Seleziona la riga attiva." #: main0110.xhp msgctxt "" @@ -1238,7 +1238,7 @@ "par_idN10638\n" "help.text" msgid "Selects the current cell." -msgstr "Seleziona la cella in cui si trova il cursore." +msgstr "Seleziona la cella attiva." #: main0110.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/reportdesign/source/ui/inspection.po libreoffice-l10n-5.3.3~rc2/translations/source/it/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/reportdesign/source/ui/inspection.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/reportdesign/source/ui/inspection.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-14 21:31+0000\n" +"PO-Revision-Date: 2017-04-03 12:27+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481751087.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491222445.000000\n" #: inspection.src msgctxt "" @@ -65,7 +65,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "Nessuno" +msgstr "Nessuna" #: inspection.src msgctxt "" @@ -258,7 +258,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "Nessuno" +msgstr "Nessuna" #: inspection.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/it/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-29 19:24+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:31+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485717876.000000\n" +"X-POOTLE-MTIME: 1492515100.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Gerarchico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Modo riempimento" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Nuovo stile dalla selezione" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Aggiorna stile" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-29 19:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:32+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485719106.000000\n" +"X-POOTLE-MTIME: 1492515161.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,9 +804,9 @@ "\n" "Tutti i marchi, registrati e non registrati, qui menzionati sono di proprietà dei loro rispettivi proprietari.\n" "\n" -"Copyright © 2000-2016 Contributori di LibreOffice. Tutti i diritti riservati.\n" +"Copyright © 2000-2017 Contributori di LibreOffice. Tutti i diritti riservati.\n" "\n" -"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o suoi affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli." +"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o loro affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2017-01-29 20:13+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 13:47+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485720829.000000\n" +"X-POOTLE-MTIME: 1492523255.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Testo formattato [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-29 20:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 13:50+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485721259.000000\n" +"X-POOTLE-MTIME: 1492523414.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungherese antico (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Inglese (Malesia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/svtools/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/svtools/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-11 20:17+0000\n" +"PO-Revision-Date: 2017-04-03 12:28+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484165857.000000\n" +"X-POOTLE-MTIME: 1491222516.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "None" -msgstr "Nessuno" +msgstr "Nessuna" #: graphicexport.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/it/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-31 12:21+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:35+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1483186881.000000\n" +"X-POOTLE-MTIME: 1492515353.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Impossibile caricare tutte le SmartArts. Il salvataggio in Microsoft Office versione 2010 o successiva dovrebbe evitare questo problema." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-29 22:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-18 11:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485727975.000000\n" +"X-POOTLE-MTIME: 1492515388.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Esci" +msgid "_Restart in Normal Mode" +msgstr "_Riavvia in modalità normale" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/it/sw/source/ui/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/it/sw/source/ui/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/it/sw/source/ui/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/it/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -1,17 +1,20 @@ #. extracted from sw/source/ui/utlui msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-02-16 15:52+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-30 07:59+0000\n" +"Last-Translator: Valter Mura \n" +"Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493539185.000000\n" #: poolfmt.src msgctxt "" @@ -1216,6 +1219,14 @@ #: poolfmt.src msgctxt "" +"poolfmt.src\n" +"STR_POOLCOLL_HTML_BLOCKQUOTE\n" +"string.text" +msgid "Quotations" +msgstr "Testo citato" + +#: poolfmt.src +msgctxt "" "poolfmt.src\n" "STR_POOLCOLL_HTML_PRE\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-18 02:17+0000\n" "Last-Translator: Naruhiko Ogasawara \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489803465.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-08 11:07+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483873664.000000\n" #: 01120000.xhp @@ -5719,7 +5719,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5727,7 +5727,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-01-09 11:22+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483960926.000000\n" #: 01000000.xhp @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-18 02:38+0000\n" -"Last-Translator: Naruhiko Ogasawara \n" +"PO-Revision-Date: 2017-04-01 16:53+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489804698.000000\n" +"X-POOTLE-MTIME: 1491065633.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -17791,7 +17791,7 @@ "Label\n" "value.text" msgid "Highlight Color" -msgstr "ハイライトの色" +msgstr "ラインマーカーの色" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/sd/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/sd/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/sd/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-23 08:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-04-01 16:54+0000\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1469263384.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491065670.000000\n" #: popup.src msgctxt "" @@ -2447,7 +2447,7 @@ "STR_CUSTOMANIMATIONPANE\n" "string.text" msgid "Animation" -msgstr "" +msgstr "アニメーション" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/sd/uiconfig/simpress/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-30 10:52+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2017-04-01 16:56+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485773535.000000\n" +"X-POOTLE-MTIME: 1491065778.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -410,7 +410,7 @@ "label\n" "string.text" msgid "Animation Deck" -msgstr "" +msgstr "アニメーションデッキ" #: customanimationspanel.ui msgctxt "" @@ -419,7 +419,7 @@ "label\n" "string.text" msgid "Animation List" -msgstr "" +msgstr "アニメーションリスト" #: customanimationspanelhorizontal.ui msgctxt "" @@ -572,7 +572,7 @@ "tooltip_text\n" "string.text" msgid "Select the speed of the Animation." -msgstr "" +msgstr "アニメーションの速度を選択します。" #: customanimationspanelhorizontal.ui msgctxt "" @@ -779,7 +779,7 @@ "tooltip_text\n" "string.text" msgid "Select the speed of the Animation." -msgstr "" +msgstr "アニメーションの速度を選択します。" #: customanimationtimingtab.ui msgctxt "" @@ -1751,7 +1751,7 @@ "label\n" "string.text" msgid "Animation" -msgstr "" +msgstr "アニメーション" #: notebookbar.ui msgctxt "" @@ -2057,7 +2057,7 @@ "label\n" "string.text" msgid "Animation" -msgstr "" +msgstr "アニメーション" #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-08 13:53+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483883609.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "階層" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-15 09:32+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484472757.000000\n" #: alienwarndialog.ui @@ -794,10 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." -msgstr "%PRODUCTNAME は Mozilla Public License (MPL) バージョン 2.0 の下で利用できます。MPL ライセンスの写しは次で見ることができます。http://mozilla.org/MPL/2.0/このソフトウェアの一部に適用されるサードパーティコードの追加の著作権通知とライセンス条件は LICENSE.html ファイルに分けられています。 英語で正確な詳細を見るには「ライセンスを表示(Show License)」をクリックしてください。ここで言及されている全ての商標および登録商標はそれぞれの所有者の所有物です。Copyright © 2000-2016 LibreOffice contributors. All rights reserved.This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." +msgstr "" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-04 11:44+0000\n" "Last-Translator: baffclan \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1462362263.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-23 01:02+0000\n" -"Last-Translator: nishbone \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 06:17+0000\n" +"Last-Translator: baffclan \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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1469235769.000000\n" +"X-POOTLE-MTIME: 1481177825.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:35+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 15:02+0000\n" +"Last-Translator: baffclan \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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449855323.000000\n" +"X-POOTLE-MTIME: 1481209352.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ja/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ja/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ja/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ja/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 12:12+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485000747.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "終了(_Q)" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 13:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 01:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ka\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476798893.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480729371.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 08:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5719,7 +5719,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5727,7 +5727,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 07:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2465,7 +2465,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 09:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457690035.000000\n" +"X-POOTLE-MTIME: 1457690033.000000\n" #: dialog.src msgctxt "" @@ -726,6 +726,30 @@ msgid "Hierarchical" msgstr "იერარქიული" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 00:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467679078.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467679073.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 16:48+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:24+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385484513.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449854681.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 16:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3924,6 +3924,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 19:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ka\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449854993.000000\n" +"X-POOTLE-MTIME: 1431458900.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ka/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ka/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ka/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ka/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 00:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5080,16 +5080,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/basic/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/basic/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/basic/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-28 09:27+0000\n" +"PO-Revision-Date: 2017-04-19 14:42+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451294832.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492612969.000000\n" #: sb.src msgctxt "" @@ -905,7 +905,7 @@ "ERRCODE_BASIC_PROC_DEFINED & ERRCODE_RES_MASK\n" "string.text" msgid "Sub procedure or function procedure $(ARG1) already defined." -msgstr "$(ARG1) ішкі процедура немесе функциясы анықталмаған болып тұр." +msgstr "$(ARG1) ішкі процедура немесе функциясы сипатталған болып тұр." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-12 14:35+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 03:57+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: none\n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484231750.000000\n" +"X-POOTLE-MTIME: 1492315060.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice үлесін қосушылары." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000–2017 LibreOffice үлесін қосушылары." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/formula/source/core/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/formula/source/core/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/formula/source/core/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 20:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-28 17:08+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" +"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493399328.000000\n" #: core_resource.src msgctxt "" @@ -2706,6 +2709,15 @@ #: core_resource.src msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_RANK_EQ\n" +"string.text" +msgid "RANK.EQ" +msgstr "RANK.EQ" + +#: core_resource.src +msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_PERCENTILE_EXC\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/librelogo/source/pythonpath.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/librelogo/source/pythonpath.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/librelogo/source/pythonpath.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/librelogo/source/pythonpath.po 2017-05-03 16:46:29.000000000 +0000 @@ -1,19 +1,20 @@ +#. extracted from librelogo/source/pythonpath msgid "" 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-05-18 13:09+0000\n" -"Last-Translator: Baurzhan \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-14 12:10+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: none\n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1400418595.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492171805.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -1053,7 +1054,7 @@ "ERR_NAME\n" "property.text" msgid "Unknown name: ‘%s”." -msgstr "Аты белгісіз: ‘%s”." +msgstr "Аты белгісіз: \"%s\"." #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-01-23 08:29+0000\n" +"PO-Revision-Date: 2017-04-22 12:23+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485160184.000000\n" +"X-POOTLE-MTIME: 1492863837.000000\n" #: filter.src msgctxt "" @@ -3026,7 +3026,7 @@ "STR_TABINSERT_ERROR\n" "string.text" msgid "The table could not be inserted." -msgstr "Кестені кірістіру мүмкіндік емес." +msgstr "Кестені кірістіру мүмкін емес." #: globstr.src msgctxt "" @@ -11774,7 +11774,7 @@ "Rounds number towards zero to the nearest multiple of absolute value of significance.\n" "This function exists for interoperability with Microsoft Excel 2007 or older versions." msgstr "" -"Санды көрсетілген дәлдіктің абсолютті шамасының ең жақын еселі мәніне дейін нөлге қарай дөңгелектейді.\n" +"Санды көрсетілген дәлдіктің абсолюттік шамасының ең жақын еселі мәніне дейін нөлге қарай дөңгелектейді.\n" "Бұл функция ескі Microsoft Excel 2007 және ескілеу құжаттарымен үйлесімділігі үшін арналған." #: scfuncs.src @@ -21425,7 +21425,7 @@ "7\n" "string.text" msgid "The range from which data is to be taken." -msgstr "Деректер алынатын ұяшықтар ауқымы. " +msgstr "Деректер алынатын ұяшықтар ауқымы." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2015-11-14 16:37+0000\n" +"PO-Revision-Date: 2017-04-23 02:43+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447519071.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492915423.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -59,7 +59,7 @@ "STR_ANOVA_TWO_FACTOR_LABEL\n" "string.text" msgid "ANOVA - Two Factor" -msgstr "Дисперсиялық анализ - қос фактор " +msgstr "Дисперсиялық анализ - қос фактор" #: StatisticsDialogs.src msgctxt "" @@ -275,7 +275,7 @@ "STRID_CALC_SKEWNESS\n" "string.text" msgid "Skewness" -msgstr "Ассимметрия" +msgstr "Асимметрия" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-11-14 16:34+0000\n" +"PO-Revision-Date: 2017-04-25 08:54+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447518845.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493110451.000000\n" #: analysis.src msgctxt "" @@ -472,7 +472,7 @@ "5\n" "string.text" msgid "The initial power to which x is to be raised" -msgstr "x дәрежеленетін бастапқы дәреже." +msgstr "x дәрежеленетін бастапқы дәреже" #: analysis.src msgctxt "" @@ -1488,7 +1488,7 @@ "5\n" "string.text" msgid "The upper limit for integration" -msgstr "Интегралдаудың төменгі шекарасы" +msgstr "Интегралдаудың жоғарғы шекарасы" #: analysis.src msgctxt "" @@ -1596,7 +1596,7 @@ "1\n" "string.text" msgid "Returns the absolute value (modulus) of a complex number" -msgstr "Комплексті санның абсолютті мәнін (модулін) қайтарады" +msgstr "Комплексті санның абсолюттік мәнін (модулін) қайтарады" #: analysis.src msgctxt "" @@ -1650,7 +1650,7 @@ "1\n" "string.text" msgid "Returns a complex number raised to a real power" -msgstr "Нақты дәрежеге шығарылғын комплексті санды қайтарады" +msgstr "Нақты дәрежеге шығарылған комплексті санды қайтарады" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/sd/source/ui/slideshow.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/sd/source/ui/slideshow.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/sd/source/ui/slideshow.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/sd/source/ui/slideshow.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-12-27 05:20+0000\n" -"Last-Translator: Baurzhan \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-21 03:52+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388121635.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492746720.000000\n" #: slideshow.src msgctxt "" @@ -68,7 +68,7 @@ "CM_PEN_MODE\n" "menuitem.text" msgid "Mouse pointer as ~Pen" -msgstr "Тышқан курсоры қарында~ш ретінде" +msgstr "Тышқан курсоры қа~лам ретінде" #: slideshow.src msgctxt "" @@ -131,7 +131,7 @@ "CM_COLOR_PEN\n" "menuitem.text" msgid "~Change pen Color..." -msgstr "Қарындаш түсін ө~згерту..." +msgstr "Қалам түсін ө~згерту..." #: slideshow.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-17 08:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 17:25+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484640380.000000\n" +"X-POOTLE-MTIME: 1493400342.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Иерархия бойынша" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Стильдік бояу" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Таңдалғаннан жаңа стильді жасау" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Стильді жаңарту" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-17 08:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 04:01+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: none\n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484640245.000000\n" +"X-POOTLE-MTIME: 1492315264.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Осында аталатын барлық сауда белгілері және тіркелген сауда белгілері өз cәйкес иелерінің жеке меншігі болып табылады.\n" "\n" -"Copyright © 2000-2016 LibreOffice үлесін қосушылар. Барлық құқықтары қорғалған.\n" +"Copyright © 2000–2017 LibreOffice үлесін қосушылар. Барлық құқықтары қорғалған.\n" "\n" "Бұл өнімді %OOOVENDOR жасады, ол OpenOffice.org өніміне негізделген, ол болса, Copyright 2000, 2011 Oracle және/немесе оның аффиляцияланған өкілдерінің жеке меншігі болып табылады. %OOOVENDOR қоғамдастықтың барлық мүшелерін мойындайды, көбірек білу үшін, http://www.libreoffice.org/ қараңыз." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-15 09:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 03:58+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450170930.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492315095.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Пішімделген мәтін [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-27 05:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 03:58+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482816492.000000\n" +"X-POOTLE-MTIME: 1492315108.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Венгрлық (венгрлық руналар)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Ағылшын (Малайзия)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-14 12:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 03:59+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484396612.000000\n" +"X-POOTLE-MTIME: 1492315163.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Барлық SmartArt жүктеу мүмкін емес. Microsoft Office 2010 немесе кейінірек шыққан нұсқасында сақтау бұл мәселені шешеді." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kk/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kk/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kk/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kk/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-18 04:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-16 03:59+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484712177.000000\n" +"X-POOTLE-MTIME: 1492315180.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Шығу" +msgid "_Restart in Normal Mode" +msgstr "Қалыпты режимде қа_йта іске қосу" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/km/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:08+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 03:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: km\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799681.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480737120.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–2016 LibreOffice contributors." -msgstr "រក្សាសិទ្ធិ​ឆ្នាំ ២០០០-២០១៤ ដោយ​អ្នក​ចែកចាយ LibreOffice ។" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/km/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: 01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 10:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" @@ -5724,7 +5724,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5732,7 +5732,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/km/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: optionen\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 10:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" @@ -2456,7 +2456,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/km/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 12:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: km-KH\n" -"X-POOTLE-MTIME: 1457701184.000000\n" +"X-POOTLE-MTIME: 1457701182.000000\n" #: dialog.src msgctxt "" @@ -726,6 +726,30 @@ msgid "Hierarchical" msgstr "​ឋានានុក្រម" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/km/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 01:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467682253.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467682234.000000\n" #: alienwarndialog.ui msgctxt "" @@ -812,7 +812,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/km/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-27 07:55+0000\n" -"Last-Translator: Sokhem Khoem \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:51+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" "Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Language: km-KH\n" -"X-POOTLE-MTIME: 1385538949.000000\n" +"X-POOTLE-MTIME: 1449856283.000000\n" #: addresstemplate.src msgctxt "" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/km/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "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: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 18:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Language: km-KH\n" -"X-POOTLE-MTIME: 1462731433.000000\n" +"X-POOTLE-MTIME: 1462731431.000000\n" #: imagemgr.src msgctxt "" @@ -3892,6 +3892,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/km/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:55+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 20:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: km\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449856543.000000\n" +"X-POOTLE-MTIME: 1431464115.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/km/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/km/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/km/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/km/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 01:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5126,16 +5126,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:01+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 10:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: kmr-Latn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799297.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480760561.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 13:08+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-11 13:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kmr-Latn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457701697.000000\n" +"X-POOTLE-MTIME: 1457701672.000000\n" #: dialog.src msgctxt "" @@ -733,6 +733,30 @@ msgid "Hierarchical" msgstr "Hiyerarşîk" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 01:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467682039.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467682038.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 17:22+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:43+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kmr-Latn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385486521.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449855809.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 17:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-08 17:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kmr-Latn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462728361.000000\n" +"X-POOTLE-MTIME: 1462728309.000000\n" #: imagemgr.src msgctxt "" @@ -3917,6 +3917,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 21:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kmr-Latn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449855986.000000\n" +"X-POOTLE-MTIME: 1431465607.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kmr-Latn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kmr-Latn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 01:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 21:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" "Language: kn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799757.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480799222.000000\n" #: aboutconfigdialog.ui #, fuzzy @@ -180,14 +180,13 @@ msgstr "%PRODUCTNAME ಎನ್ನುವುದು ಪದ ಸಂಸ್ಕರಣೆ, ಸ್ಪ್ರೆಡ್‌ಶೀಟ್‌ಗಳು, ಪ್ರಸ್ತುತಿಗಳು ಮತ್ತು ಇನ್ನೂ ಹೆಚ್ಚಿನದಕ್ಕಾಗಿನ ಆಧುನಿಕ, ಸುಲಭವಾಗಿ ಬಳಸಬಹುದಾದ, ಮುಕ್ತ ತಂತ್ರಾಂಶ ಉತ್ಪನ್ನ ಸೂಟ್ ಆಗಿದೆ." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "ಹಕ್ಕು © 2000 - 2014 LibreOffice ಗೆ ನೆರವಾದವರು." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 14:55+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-11 14:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" "Language: kn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457708114.000000\n" +"X-POOTLE-MTIME: 1457708074.000000\n" #: dialog.src msgctxt "" @@ -731,6 +731,30 @@ msgid "Hierarchical" msgstr "ಶ್ರೇಣೀಕೃತ" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 01:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467683688.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467683672.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,6 @@ msgstr "ಪರವಾನಗಿಯನ್ನು ತೋರಿಸು (_S)" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -814,19 +813,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n" -"\n" -"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n" -"\n" -"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" -"\n" -"Copyright © 2000, 2014 LibreOffice contributors. All rights reserved.\n" -"\n" -"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-10-29 06:53+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:41+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: RHEL7_Tier1 \n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1414565587.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449855704.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 18:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462732382.000000\n" +"X-POOTLE-MTIME: 1462732380.000000\n" #: imagemgr.src msgctxt "" @@ -3891,6 +3891,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:43+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-11-11 23:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" "Language: kn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449855799.000000\n" +"X-POOTLE-MTIME: 1447284328.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" @@ -5151,16 +5151,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-03 23:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ko\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799542.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480806051.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–2016 LibreOffice contributors." -msgstr "저작권 © 2000-2015 LibreOffice 기여자." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 13:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5724,7 +5724,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5732,7 +5732,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-12-22 13:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 13:57+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-11 13:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ko\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457704677.000000\n" +"X-POOTLE-MTIME: 1457704581.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "계층" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 02:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 02:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ko\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467684725.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467684701.000000\n" #: alienwarndialog.ui msgctxt "" @@ -784,7 +784,6 @@ msgstr "라이선스 표시(_S)" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -797,19 +796,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME 은(는) 모질라 공개 라이센스(Mozilla Public License) v. 2.0 에 근거하여 배포됩니다. MPL의 복사본은 http://mozilla.org/MPL/2.0/ 에서 볼 수 있습니다.\n" -"\n" -"응용 프로그램의 일부에 포함된 제3사 코드에 대한 추가적인 저작권 공지와 라이센스 내용은 LICENSE.html 파일에 명시되어 있습니다. 자세한 내용을 보려면 [라이센스 보기] 를 클릭하십시오.\n" -"\n" -"모든 상표 및 본 문서에 언급된 등록 상표는 해당 소유자의 자산입니다.\n" -"\n" -"저작권 © 2000, 2015 리브레오피스 제공자. 판권 소유.\n" -"\n" -"이 제품은 %OOOVENDOR 의 OpenOffice.org 를 기반으로 제작되었습니다.(Oracle 및 그 자회사의 2000, 2011년 판권 버전) %OOOVENDOR 은(는) 모든 커뮤니티 회원들을 존중합니다. 더 자세한 내용은 http://www.libreoffice.org/ 를 참조하십시오." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-07-03 07:27+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 17:56+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435908433.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449856572.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 19:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-08 19:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ko\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462734375.000000\n" +"X-POOTLE-MTIME: 1462734357.000000\n" #: imagemgr.src msgctxt "" @@ -3907,6 +3907,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 17:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 21:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ko\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449856758.000000\n" +"X-POOTLE-MTIME: 1431467134.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ko/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ko/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ko/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ko/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5083,16 +5083,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:07+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-04 08:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799644.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480841781.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-02 00:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 05:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kok\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462148584.000000\n" +"X-POOTLE-MTIME: 1481174201.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "क्रमान रचिल्ले" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 02:11+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 06:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467684713.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1481179601.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-09-26 09:21+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:04+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kok\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411723309.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449857084.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-08 18:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 11:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kok\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462730431.000000\n" +"X-POOTLE-MTIME: 1481194858.000000\n" #: imagemgr.src msgctxt "" @@ -3909,6 +3909,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:11+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-08 16:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: kok\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449857476.000000\n" +"X-POOTLE-MTIME: 1481215834.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/kok/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/kok/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/kok/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/kok/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-08 22:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:08+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-04 11:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ks\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476799710.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1480852589.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 13:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457701295.000000\n" +"X-POOTLE-MTIME: 1457701290.000000\n" #: dialog.src msgctxt "" @@ -727,6 +727,30 @@ msgid "Hierarchical" msgstr "درجہ وار" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467684134.000000\n" #: alienwarndialog.ui @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 17:40+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:06+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ks\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385487651.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449857165.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 18:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3931,6 +3931,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 22:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ks\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449857544.000000\n" +"X-POOTLE-MTIME: 1431469694.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ks/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ks/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ks/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ks/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476799990.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-24 13:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5673,22 +5673,20 @@ msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-05-08 01:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 00:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "ການປົກຄອງ" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467685466.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467685465.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-08-25 22:22+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1440541379.000000\n" #: addresstemplate.src @@ -416,6 +416,14 @@ msgstr "" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 19:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -4035,6 +4035,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-12 22:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: lo\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449856824.000000\n" +"X-POOTLE-MTIME: 1431471505.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lo/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lo/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lo/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lo/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/connectivity/source/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/connectivity/source/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/connectivity/source/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/connectivity/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,18 +4,18 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-06-26 11:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-21 05:32+0000\n" +"Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1435316716.000000\n" +"X-POOTLE-MTIME: 1492752761.000000\n" #: conn_error_message.src msgctxt "" @@ -457,7 +457,7 @@ "STR_CANNOT_CONVERT_STRING\n" "string.text" msgid "The string '$string$' cannot be converted using the encoding '$charset$'." -msgstr "Eilutės „$string$“ koduotės negalima pakeisti į „$charset“." +msgstr "Eilutės „$string$“ koduotės negalima pakeisti į „$charset$“." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-20 20:57+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-28 20:43+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: none\n" "Language: lt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490043474.000000\n" +"X-POOTLE-MTIME: 1493412225.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "© 2000–2016 „LibreOffice“ bendradarbiai." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" @@ -16412,7 +16412,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "Įterpti" +msgstr "Įterpti lūžį" #: textflowpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/extensions/source/scanner.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/extensions/source/scanner.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/extensions/source/scanner.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/extensions/source/scanner.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-26 12:20+0000\n" +"PO-Revision-Date: 2017-04-21 05:34+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435321245.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492752867.000000\n" #: strings.src msgctxt "" @@ -50,4 +50,8 @@ "Vendor: %s\n" "Model: %s\n" "Type: %s" -msgstr "Įrenginys: %sPardavėjas %sModelis: %sTipas: %s" +msgstr "" +"Įrenginys: %s\n" +"Pardavėjas %s\n" +"Modelis: %s\n" +"Tipas: %s" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-21 00:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5673,22 +5673,20 @@ msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-03-20 21:10+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490044237.000000\n" #: 01000000.xhp @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-27 18:22+0000\n" +"PO-Revision-Date: 2017-04-21 05:35+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435429377.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492752954.000000\n" #: description.xml msgctxt "" @@ -30,4 +30,4 @@ "extdesc\n" "description.text" msgid "This extension integrates into Calc and offers new Solver engines to use for optimizing nonlinear programming models.\n" -msgstr "Šis plėtinys, integruojamas į skaičiuoklę „Calc“, įdiegia naujus sprendiklio algoritmus netiesinio programavimo modeliams optimizuoti." +msgstr "Šis plėtinys, integruojamas į skaičiuoklę „Calc“, įdiegia naujus sprendiklio algoritmus netiesinio programavimo modeliams optimizuoti.\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-08-07 08:38+0000\n" +"PO-Revision-Date: 2017-04-21 05:40+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1470559088.000000\n" +"X-POOTLE-MTIME: 1492753208.000000\n" #: readme.xrm msgctxt "" @@ -407,7 +407,7 @@ "otherinstall2\n" "readmeitem.text" msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (http://en.wikipedia.org/wiki/Freedesktop.org), and is provided for installation on other Linux distributions not covered in the aforementioned instructions." -msgstr "Aplanke RPMS (arba DEBS) taip pat yra paketas „libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm“ (arba panašus). Jis skirtas visoms su „Freedesktop.org“ specifikacijomis ir (arba) rekomendacijomis (http://en.wikipedia.org/wiki/Freedesktop.org) suderinamoms „Linux“ atmainoms. Šį paketą ir reikėtų diegti visose anksčiau nepaminėtose „Linux“ atmainose." +msgstr "Aplanke RPMS (arba DEBS) taip pat yra paketas „libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm“ („libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb“ arba panašus). Jis skirtas visoms su „Freedesktop.org“ specifikacijomis ir (arba) rekomendacijomis (http://en.wikipedia.org/wiki/Freedesktop.org) suderinamoms „Linux“ atmainoms. Šį paketą ir reikėtų diegti visose anksčiau nepaminėtose „Linux“ atmainose." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-06 09:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-26 19:46+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488792584.000000\n" +"X-POOTLE-MTIME: 1493236004.000000\n" #: dialog.src msgctxt "" @@ -120,7 +120,7 @@ "ID_HIDE\n" "menuitem.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: dialog.src msgctxt "" @@ -724,6 +724,30 @@ msgid "Hierarchical" msgstr "Stilių hierarchija" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-06 09:30+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488792632.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"„%PRODUCTNAME“ programų paketas pateikiamas pagal „Mozilla“ viešosios licencijos 2.0 versijos sąlygas. Šią licenciją galima peržiūrėti tinkalapyje http://mozilla.org/MPL/2.0/.\n" -"\n" -"Šioje programoje panaudotiems trečiųjų šalių komponentams taikomos papildomos autorių teisių apsaugos ir licencijų sąlygos, išdėstytos faile „LICENSE.html“. Spustelėjus „Rodyti licenciją“ bus parodytas failo tekstas anglų kalba.\n" -"\n" -"Visi čia paminėti prekių ženklai ir registruoti prekių ženklai yra jų savininkų nuosavybė.\n" -"\n" -"© 2000–2016 „LibreOffice“ bendradarbiai. Visos teisės saugomos.\n" -"\n" -"Šį produktą sukūrė „%OOOVENDOR“ „OpenOffice.org“ pagrindu: © 2000, 2011 „Oracle“ ir (arba) bendrovės filialai. „%OOOVENDOR“ dėkoja visiems bendruomenės nariams, žr. http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/shell/source/win32/shlxthandler/res.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/shell/source/win32/shlxthandler/res.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/shell/source/win32/shlxthandler/res.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/shell/source/win32/shlxthandler/res.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-02-18 07:27+0000\n" -"Last-Translator: Modestas \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-14 13:40+0000\n" +"Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.5.0\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1392708438.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492177247.000000\n" #: shlxthdl.ulf msgctxt "" @@ -254,7 +254,7 @@ "%DOCUMENT_NUMBER%\n" "LngText.text" msgid "Revision number" -msgstr "Peržiūrėjimo numeris" +msgstr "Taisymų skaičius" #: shlxthdl.ulf msgctxt "" @@ -262,7 +262,7 @@ "%DOCUMENT_NUMBER_COLON%\n" "LngText.text" msgid "Revision number:" -msgstr "Peržiūrėjimo numeris:" +msgstr "Taisymų skaičius:" #: shlxthdl.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-08-11 06:46+0000\n" "Last-Translator: embar \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1470897970.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-11-06 16:02+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1478448121.000000\n" @@ -3890,6 +3890,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-11 19:49+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484164181.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-14 19:51+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484423463.000000\n" #: acceptrejectchangesdialog.ui @@ -5077,20 +5077,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Baigti darbą" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Taikyti pakeitimus ir paleisti iš naujo" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-18 19:28+0000\n" +"PO-Revision-Date: 2017-04-26 19:46+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: none\n" "Language: lt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489865317.000000\n" +"X-POOTLE-MTIME: 1493236011.000000\n" #: abstractdialog.ui msgctxt "" @@ -2994,7 +2994,7 @@ "label\n" "string.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: editsectiondialog.ui msgctxt "" @@ -14175,7 +14175,7 @@ "label\n" "string.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: sectionpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lt/wizards/source/formwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/lt/wizards/source/formwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lt/wizards/source/formwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lt/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-10-02 14:36+0000\n" +"PO-Revision-Date: 2017-04-22 16:29+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1475419006.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492878554.000000\n" #: dbwizres.src msgctxt "" @@ -3362,7 +3362,7 @@ "RID_LETTERWIZARDROADMAP_START + 3\n" "string.text" msgid "Printed items" -msgstr "Išspausdinti elementai" +msgstr "Spausdintini elementai" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-17 05:48+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484632126.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Autortiesības © 2000 - 2016 LibreOffice veidotāji." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 19:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5679,22 +5679,20 @@ msgstr "Funkcijas" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-12-04 11:32+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: LANGUAGE \n" @@ -2456,7 +2456,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-15 13:39+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484487551.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarhisks" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-28 14:51+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485615090.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME ir pieejams ar Mozilla Public License, v. 2.0. MPL kopiju var iegūt vietnē http://mozilla.org/MPL/2.0/.\n" -"\n" -"Trešās puses koda papildu autortiesību paziņojumi un licenču nosacījumi, kas attiecas uz šīs programmatūras daļām, ir izklāstīti datnē LICENSE.html; izvēlieties 'Rādīt licenci', lai redzētu precīzu informāciju angļu valodā.\n" -"\n" -"Visas šeit minētās preču zīmes un reģistrētās preču zīmes pieder to attiecīgajiem īpašniekiem.\n" -"\n" -"Autortiesības © 2000, 2016 LibreOffice veidotāji. Visas tiesības ir rezervētas.\n" -"\n" -"Šo produktu ir veidojis %OOOVENDOR, balstoties uz OpenOffice.org, kura autortiesības 2000, 2011 pieder Oracle un/vai tā partneriem. %OOOVENDOR atzīst visus kopienas dalībniekus, pilna informācija atrodama http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-15 08:22+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476519777.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-15 13:39+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484487555.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungāru (Senungāru rūnas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-15 13:39+0000\n" "Last-Translator: Tranzistors \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484487558.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/lv/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/lv/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/lv/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/lv/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 06:15+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484806512.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Iziet" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Pielietot izmaiņas un pārstartēt" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476800174.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 00:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -726,6 +726,30 @@ msgid "Hierarchical" msgstr "पदक्रमीय" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 02:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467687556.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467687555.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 18:22+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:19+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mai\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385490151.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449857958.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 20:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3916,6 +3916,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:24+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 00:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mai\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449858294.000000\n" +"X-POOTLE-MTIME: 1431476342.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mai/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mai/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mai/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mai/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476800179.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 13:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5723,7 +5723,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5731,7 +5731,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 13:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 14:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457707722.000000\n" +"X-POOTLE-MTIME: 1457707698.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Хиерархиски" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\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%10==1 ? 0 : 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467688757.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467688752.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 18:27+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:13+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mk\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%10==1 ? 0 : 1;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385490460.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449857632.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 21:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462741373.000000\n" +"X-POOTLE-MTIME: 1462741372.000000\n" #: imagemgr.src msgctxt "" @@ -3906,6 +3906,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:17+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 00:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449857835.000000\n" +"X-POOTLE-MTIME: 1431477570.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mk/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mk/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mk/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mk/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:18+0000\n" +"Last-Translator: ansonjacob \n" "Language-Team: American English \n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476800481.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800314.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "പകര്‍പ്പവകാശം © 2000 - 2016 ലിബര്‍ഓഫീസ് പ്രവര്‍ത്തകര്‍." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: dialog\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 15:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457708758.000000\n" +"X-POOTLE-MTIME: 1457708757.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "സ്ഥാനം അനുസരിച്ച്" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:25+0000\n" "Last-Translator: ansonjacob \n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467689147.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467689135.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-19 19:15+0000\n" "Last-Translator: Anish Sheela \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1453230918.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "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: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 21:05+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"Last-Translator: ansonjacob \n" "Language-Team: \n" "Language: ml\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462741525.000000\n" +"X-POOTLE-MTIME: 1462741524.000000\n" #: imagemgr.src msgctxt "" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:35+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 01:04+0000\n" +"Last-Translator: ansonjacob \n" "Language-Team: LANGUAGE \n" "Language: ml\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449858901.000000\n" +"X-POOTLE-MTIME: 1431479047.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ml/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ml/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ml/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ml/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:35+0000\n" "Last-Translator: ansonjacob \n" "Language-Team: LANGUAGE \n" @@ -5087,16 +5087,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:19+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: mn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476800368.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800321.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Хуулбарлах эрхийг © 2000–2016 ЛибреОфис-той хамтрагчдад." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 01:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -728,6 +728,30 @@ msgid "Hierarchical" msgstr "Шатлах" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467690263.000000\n" #: alienwarndialog.ui @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 18:36+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:20+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385490989.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449858049.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 21:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462742427.000000\n" +"X-POOTLE-MTIME: 1462742426.000000\n" #: imagemgr.src msgctxt "" @@ -3909,6 +3909,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 01:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449858324.000000\n" +"X-POOTLE-MTIME: 1431480436.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: mni\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476800586.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800460.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 16:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457712164.000000\n" +"X-POOTLE-MTIME: 1457712143.000000\n" #: dialog.src msgctxt "" @@ -726,6 +726,30 @@ msgid "Hierarchical" msgstr "মথং-মনাও নাইবা" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467690177.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467690167.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 18:41+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:38+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mni\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385491301.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449859132.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 21:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3907,6 +3907,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:43+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 01:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: mni\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449859438.000000\n" +"X-POOTLE-MTIME: 1431482337.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mni/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mni/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mni/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mni/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5094,16 +5094,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" "Language: mr\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476801047.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800899.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–2016 LibreOffice contributors." -msgstr "सर्वहक्काधिकार © 2000 - 2014 LibreOffice योगदानकर्ते." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 17:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457717370.000000\n" +"X-POOTLE-MTIME: 1457717348.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "श्रेणी" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467690765.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467690729.000000\n" #: alienwarndialog.ui msgctxt "" @@ -812,7 +812,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 18:45+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:47+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385491548.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449859644.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 22:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462745671.000000\n" +"X-POOTLE-MTIME: 1462745646.000000\n" #: imagemgr.src msgctxt "" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:51+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 02:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" "Language: mr\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449859897.000000\n" +"X-POOTLE-MTIME: 1431484429.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/mr/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/mr/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/mr/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/mr/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 04:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" @@ -5128,16 +5128,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/my/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476800897.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800814.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/my/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 19:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457724036.000000\n" +"X-POOTLE-MTIME: 1457724034.000000\n" #: dialog.src msgctxt "" @@ -732,6 +732,30 @@ msgid "Hierarchical" msgstr "အဆင့်လိုက်တည်ရှိမှု" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/my/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467690335.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467690324.000000\n" #: alienwarndialog.ui msgctxt "" @@ -800,7 +800,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/my/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 19:01+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:39+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385492475.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449859188.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/my/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 22:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462746702.000000\n" +"X-POOTLE-MTIME: 1462746686.000000\n" #: imagemgr.src msgctxt "" @@ -3892,6 +3892,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/my/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 03:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: my\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449859487.000000\n" +"X-POOTLE-MTIME: 1431486072.000000\n" #: stbctrls.src msgctxt "" @@ -149,6 +149,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/my/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/my/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/my/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/my/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 03:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5079,16 +5079,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-24 23:35+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:19+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485300918.000000\n" +"X-POOTLE-MTIME: 1492427957.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Opphavsrett © 2000 - 2016 LibreOffice (bidragsyterne)." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Opphavsrett © 2000 - 2017 LibreOffice (bidragsyterne)." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 14:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5704,22 +5704,20 @@ msgstr "Funksjoner" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-02-25 22:36+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488062201.000000\n" #: 01000000.xhp @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Velg" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-26 00:07+0000\n" +"PO-Revision-Date: 2017-04-17 11:19+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485389251.000000\n" +"X-POOTLE-MTIME: 1492427968.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6266,7 +6266,7 @@ "label\n" "string.text" msgid " " -msgstr "" +msgstr " " #: notebookbar_groups.ui msgctxt "" @@ -6275,7 +6275,7 @@ "label\n" "string.text" msgid " " -msgstr "" +msgstr " " #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 02:27+0000\n" +"PO-Revision-Date: 2017-04-17 11:19+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: none\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485311259.000000\n" +"X-POOTLE-MTIME: 1492427977.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -2003,7 +2003,7 @@ "label\n" "string.text" msgid " " -msgstr "" +msgstr " " #: notebookbar_groups.ui msgctxt "" @@ -2012,7 +2012,7 @@ "label\n" "string.text" msgid " " -msgstr "" +msgstr " " #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 00:36+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:19+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485304593.000000\n" +"X-POOTLE-MTIME: 1492427999.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkisk" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Fyllformatmodus" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Ny stil fra markeringen" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Oppdater stil" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-25 01:13+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:20+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: none\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485306838.000000\n" +"X-POOTLE-MTIME: 1492428008.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,11 +794,11 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME er gjort tilgjengelig under vilkårene i «GNU Lesser General Public License Versjon 3». Du kan få en kopi av LGPL-lisensen på http://www.gnu.org/licenses/lgpl-3.0.html\n" +"%PRODUCTNAME er gjort tilgjengelig under vilkårene i «Mozilla Public License, v. 2.0. A ». Du kan få en kopi av MPL-lisensen på http://mozilla.org/MPL/2.0/.\n" "\n" "Meldinger om opphavsrett på kode fra tredjepart og lisensvilkårene som ble brukt på deler av programmet finner du i fila LICENSE.html. Velg «Vis lisens» for å se detaljene på engelsk.\n" "\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-03-02 18:24+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:20+0000\n" +"Last-Translator: Karl Morten Ramberg \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456943087.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492428016.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ msgstr "Formatert tekst [RTF]" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Formatert tekst [RTF]" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-24 18:47+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:20+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485283649.000000\n" +"X-POOTLE-MTIME: 1492428025.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungarsk (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Engelsk (Malaysia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 17:38+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:20+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485365930.000000\n" +"X-POOTLE-MTIME: 1492428031.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Kunne ikke laste alle smarttaggene. Lagring i MS Office 2010 eller senere versjoner vil unggå dette problemet." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nb/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nb/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nb/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nb/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-26 01:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-17 11:20+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485393401.000000\n" +"X-POOTLE-MTIME: 1492428042.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Avslutt" +msgid "_Restart in Normal Mode" +msgstr "Restart i normalmodus" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ne\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476800942.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476800898.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 14:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5717,22 +5717,20 @@ msgstr "प्रकार्यहरू" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 13:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 19:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457724104.000000\n" +"X-POOTLE-MTIME: 1457724081.000000\n" #: dialog.src msgctxt "" @@ -727,6 +727,30 @@ msgid "Hierarchical" msgstr "सोपानक्रमिक" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 04:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467693938.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467693910.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 19:09+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:50+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ne\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385492961.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449859810.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-08 22:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462745949.000000\n" +"X-POOTLE-MTIME: 1462745948.000000\n" #: imagemgr.src msgctxt "" @@ -3894,6 +3894,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:53+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 03:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ne\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449860012.000000\n" +"X-POOTLE-MTIME: 1431489504.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ne/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ne/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ne/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ne/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 04:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5080,16 +5080,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/basic/source/classes.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/basic/source/classes.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/basic/source/classes.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-13 07:37+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:31+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449992268.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492842665.000000\n" #: sb.src msgctxt "" @@ -275,7 +275,7 @@ "ERRCODE_BASIC_READ_PAST_EOF & ERRCODE_RES_MASK\n" "string.text" msgid "Reading exceeds EOF." -msgstr "Lezen gaat over bestandseinde heen (EOF)." +msgstr "Lezen gaat over bestandseinde (EOF) heen." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-24 07:19+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-14 07:31+0000\n" "Last-Translator: kees538 \n" "Language-Team: none\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487920747.000000\n" +"X-POOTLE-MTIME: 1492155071.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice bijdragers." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 LibreOffice bijdragers." #: aboutdialog.ui msgctxt "" @@ -14116,7 +14116,7 @@ "label\n" "string.text" msgid "Scaling" -msgstr "Op schaal brengen" +msgstr "Schaalfactor" #: positionpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/formula/source/core/resource.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/formula/source/core/resource.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/formula/source/core/resource.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-02-20 13:26+0100\n" +"POT-Creation-Date: 2017-05-03 12:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1442,6 +1442,15 @@ "SC_OPCODE_EXP_DIST\n" "string.text" msgid "EXPONDIST" +msgstr "EXPONVERD" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_EXP_DIST_MS\n" +"string.text" +msgid "EXPON.DIST" msgstr "EXPON.VERD" #: core_resource.src @@ -1451,6 +1460,15 @@ "SC_OPCODE_BINOM_DIST\n" "string.text" msgid "BINOMDIST" +msgstr "BINOMIALEVERD" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_BINOM_DIST_MS\n" +"string.text" +msgid "BINOM.DIST" msgstr "BINOMIALE.VERD" #: core_resource.src @@ -2315,6 +2333,15 @@ "SC_OPCODE_F_DIST\n" "string.text" msgid "FDIST" +msgstr "FVERDELING" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_DIST_LT\n" +"string.text" +msgid "F.DIST" msgstr "F.VERDELING" #: core_resource.src @@ -2702,7 +2729,7 @@ "SC_OPCODE_F_TEST\n" "string.text" msgid "FTEST" -msgstr "F.TOETS" +msgstr "FTOETS" #: core_resource.src msgctxt "" @@ -2990,7 +3017,7 @@ "SC_OPCODE_T_INV_2T\n" "string.text" msgid "T.INV.2T" -msgstr "F.INV.RECHTS" +msgstr "T.INV.2Z" #: core_resource.src msgctxt "" @@ -3008,12 +3035,30 @@ "SC_OPCODE_F_INV\n" "string.text" msgid "FINV" +msgstr "FINVERSE" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_INV_LT\n" +"string.text" +msgid "F.INV" msgstr "F.INVERSE" #: core_resource.src msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_INV_RT\n" +"string.text" +msgid "F.INV.RT" +msgstr "F.INV.RECHTS" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_CHI_TEST\n" "string.text" msgid "CHITEST" @@ -3086,6 +3131,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_BETA_INV_MS\n" +"string.text" +msgid "BETA.INV" +msgstr "BETA.INV" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_WEEK\n" "string.text" msgid "WEEKNUM" @@ -3287,7 +3341,7 @@ "SC_OPCODE_CHISQ_DIST_MS\n" "string.text" msgid "CHISQ.DIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADR.VERD" #: core_resource.src msgctxt "" @@ -3305,7 +3359,7 @@ "SC_OPCODE_CHISQ_INV_MS\n" "string.text" msgid "CHISQ.INV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADR.INV" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-01-07 10:54+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-13 21:46+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786473.000000\n" +"X-POOTLE-MTIME: 1492119962.000000\n" #: access2base.xhp msgctxt "" @@ -78,7 +78,7 @@ "par_idA2B007\n" "help.text" msgid "The library is documented online on http://www.access2base.com" -msgstr "De bibliotheek is online gedocumenteerd op http://www.access2base.com" +msgstr "De bibliotheek is online gedocumenteerd op http://www.access2base.com" #: access2base.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-26 17:58+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-24 10:23+0000\n" +"Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480183097.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493029434.000000\n" #: 00000002.xhp msgctxt "" @@ -174,7 +174,7 @@ "110\n" "help.text" msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (/) is used as a path separator. For example, a file referred to as C:\\My File.odt on the local host in \"Windows notation\" becomes file:///C|/My%20File.odt in URL notation." -msgstr "" +msgstr "Voor de URL-notatie zijn bepaalde speciale tekens niet toegestaan. Deze worden door andere tekens vervangen of gecodeerd. Een slash (/) wordt gebruikt als padscheidingsteken. Zo wordt een bestand waarnaar in \"Windows-notatie\" verwezen wordt met C:\\My File.sxw op de lokale host, file:///C|/My%20File.sxw in URL-notatie." #: 00000003.xhp msgctxt "" @@ -10788,7 +10788,7 @@ "par_id3154012\n" "help.text" msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments." -msgstr "" +msgstr "U kunt als volgt een lijst van alle bestaande bestanden in een specifieke map genereren: Wanneer u de Dir-functie voor het eerst aanroept, specificeert u het volledige zoekpad voor de bestanden, bijvoorbeeld 'D:\\Files\\*.ods'. Is het pad juist en vindt de zoekopdracht ten minste één bestand, dan geeft de Dir-functie de naam van het eerste bestand dat met het zoekpad overeenkomt. Voor extra bestandsnamen die met het pad overeenkomen, roept u 'Dir' nogmaals op, maar zonder argumenten." #: 03020404.xhp msgctxt "" @@ -26897,7 +26897,7 @@ "par_id3148797\n" "help.text" msgid "[Dimension]: Integer that specifies which dimension to return the upper(Ubound) or lower (LBound) boundary for. If no value is specified, the boundary of the first dimension is returned." -msgstr "[Dimensie]: Integer die specificeert welke dimensie wordt teruggegeven voor de boven- (Ubound) of ondergrens (LBound). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven." +msgstr "[Dimension]: Integer die specificeert welke dimensie wordt teruggegeven voor de bovengrens(Ubound) of ondergrens (LBound). Als er geen waarde is gespecificeerd, wordt de grenswaarde van de eerste dimensie teruggegeven." #: 03103000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-07-01 05:24+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-21 19:58+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467350670.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492804692.000000\n" #: 00000004.xhp msgctxt "" @@ -554,7 +554,7 @@ "28\n" "help.text" msgid "Choose Insert - Named Ranges and Expressions" -msgstr "" +msgstr "Kies Invoegen - Benoemde bereiken en expressies" #: 00000404.xhp msgctxt "" @@ -563,7 +563,7 @@ "37\n" "help.text" msgid "Choose Sheet - Link to External Data" -msgstr "" +msgstr "Kies Blad - Koppeling naar externe gegevens" #: 00000404.xhp msgctxt "" @@ -572,7 +572,7 @@ "29\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Define" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Definiëren" #: 00000404.xhp msgctxt "" @@ -590,7 +590,7 @@ "30\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Insert" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Invoegen" #: 00000404.xhp msgctxt "" @@ -599,7 +599,7 @@ "31\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Create" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Maken" #: 00000404.xhp msgctxt "" @@ -608,7 +608,7 @@ "32\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Labels" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Labels" #: 00000405.xhp msgctxt "" @@ -1051,7 +1051,7 @@ "par_id3149020\n" "help.text" msgid "Choose Tools - Protect Sheet" -msgstr "" +msgstr "Kies Extra - Blad beveiligen" #: 00000406.xhp msgctxt "" @@ -1059,7 +1059,7 @@ "par_id3154256\n" "help.text" msgid "Choose Tools - Protect Spreadsheet" -msgstr "" +msgstr "Kies Extra - Werkblad beveiligen" #: 00000406.xhp msgctxt "" @@ -1135,7 +1135,7 @@ "par_id3153663\n" "help.text" msgid "Choose View - Freeze Cells - Freeze Rows and Columns" -msgstr "" +msgstr "Kies Beeld - Cellen vastzetten - Rijen en kolommen vastzetten" #: 00000412.xhp msgctxt "" @@ -1714,7 +1714,7 @@ "par_id3149095\n" "help.text" msgid "Choose Sheet - Insert Page Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen" #: sheet_menu.xhp msgctxt "" @@ -1722,7 +1722,7 @@ "par_id3149398\n" "help.text" msgid "Choose Sheet - Insert Page Break - Row Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen - Rijeinde" #: sheet_menu.xhp msgctxt "" @@ -1730,7 +1730,7 @@ "par_id3150084\n" "help.text" msgid "Choose Sheet - Insert Page Break - Column Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen - Kolomeinde" #: sheet_menu.xhp msgctxt "" @@ -1738,7 +1738,7 @@ "par_id3153093\n" "help.text" msgid "Choose Sheet - Delete Page Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen" #: sheet_menu.xhp msgctxt "" @@ -1746,7 +1746,7 @@ "par_id3153191\n" "help.text" msgid "Choose Sheet - Delete Page Break - Row Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen - Rijeinde" #: sheet_menu.xhp msgctxt "" @@ -1754,4 +1754,4 @@ "par_id3145645\n" "help.text" msgid "Choose Sheet - Delete Page Break - Column Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen - Kolomeinde" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-02-26 10:21+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-03 09:28+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104478.000000\n" +"X-POOTLE-MTIME: 1493803683.000000\n" #: 01120000.xhp msgctxt "" @@ -139,7 +139,7 @@ "5\n" "help.text" msgid "Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row." -msgstr "" +msgstr "Voer de kolomletter in. Druk op de Enter-toets om de celcursor in de gespecificeerde kolom van dezelfde rij te plaatsen." #: 02110000.xhp msgctxt "" @@ -157,7 +157,7 @@ "7\n" "help.text" msgid "Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column." -msgstr "" +msgstr "Voer het rijcijfer in. Druk op de Enter-toets om de celcursor in de gespecificeerde rij van dezelfde kolom te plaatsen." #: 02110000.xhp msgctxt "" @@ -175,7 +175,7 @@ "10\n" "help.text" msgid "Specifies the current data range denoted by the position of the cell cursor." -msgstr "" +msgstr "Specificeert het huidige gegevens bereik, zoals aangegeven door de positie van de cel cursor." #: 02110000.xhp msgctxt "" @@ -210,7 +210,7 @@ "16\n" "help.text" msgid "Moves to the cell at the beginning of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "Verplaatst naar de cel naar het begin van het huidige gegevensbereik, welke u kunt markeren met de knop Gegevensbereik." #: 02110000.xhp msgctxt "" @@ -245,7 +245,7 @@ "19\n" "help.text" msgid "Moves to the cell at the end of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "Verplaatst naar de cel naar het einde van het huidige gegevensbereik, welke u kunt markeren met de knop Gegevensbereik." #: 02110000.xhp msgctxt "" @@ -280,7 +280,7 @@ "22\n" "help.text" msgid "Toggles the content view. Only the selected Navigator element and its subelements are displayed. Click the icon again to restore all elements for viewing." -msgstr "" +msgstr "Klik hier om de inhoudsopgave om te schakelen. Alleen het geselecteerde Navigatorelement en zijn subelementen zullen worden weergegeven. Klik nogmaals op dit pictogram om alle elementen weer te geven." #: 02110000.xhp msgctxt "" @@ -315,7 +315,7 @@ "13\n" "help.text" msgid "Allows you to hide/show the contents." -msgstr "" +msgstr "Laat toe om de inhoud te verbergen/tonen." #: 02110000.xhp msgctxt "" @@ -350,7 +350,7 @@ "25\n" "help.text" msgid "Displays all available scenarios. Double-click a name to apply that scenario. The result is shown in the sheet. For more information, choose Tools - Scenarios." -msgstr "" +msgstr "Toont alle beschikbare scenario's w. Dubbelklik op een naam om het scenario uit te voeren. Het resultaat van uw keuze wordt weergegeven in het blad. Voor meer informatie, kies Extra - Scenario's." #: 02110000.xhp msgctxt "" @@ -425,7 +425,7 @@ "28\n" "help.text" msgid "Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created." -msgstr "" +msgstr "Opent een submenu waarin u de sleepmodus kunt selecteren. U kunt beslissen welke actie er wordt uitgevoerd wanneer u een object uit de Navigator in een document sleept. Het picotogram geeft aan of er een hyperlink, koppeling of kopie wordt gemaakt, afhankelijk van de geselecteerde modus." #: 02110000.xhp msgctxt "" @@ -522,7 +522,7 @@ "39\n" "help.text" msgid "Displays all objects in your document." -msgstr "" +msgstr "Toont alle objecten in uw document." #: 02110000.xhp msgctxt "" @@ -540,7 +540,7 @@ "36\n" "help.text" msgid "Displays the names of all open documents. To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the Window menu." -msgstr "" +msgstr "Toont alle namen van alle geopende documenten. Om in de Navigator over te schakelen naar een ander geopend document, klikt u op de naam van het document. De status (actief, inactief) van het document wordt tussen haakjes weergegeven achter de naam. Selecteer het actieve document via het Venstermenu." #: 02120000.xhp msgctxt "" @@ -556,7 +556,7 @@ "hd_id3145251\n" "help.text" msgid "Headers & Footers" -msgstr "Koptekst/Voettekst" +msgstr "Koptekst & Voettekst" #: 02120000.xhp msgctxt "" @@ -564,7 +564,7 @@ "par_id3151073\n" "help.text" msgid "Allows you to define and format headers and footers. " -msgstr "Definieer en bepaal de opmaak van kop- en voetteksten." +msgstr "Definieer en bepaal de opmaak van kop- en voetteksten." #: 02120000.xhp msgctxt "" @@ -2281,7 +2281,7 @@ "par_id082520160232335032\n" "help.text" msgid "Delete cells dialog" -msgstr "" +msgstr "Dialoogvenster Cellen verwijderen" #: 02160000.xhp msgctxt "" @@ -2562,7 +2562,7 @@ "tit\n" "help.text" msgid "Delete Page Break" -msgstr "" +msgstr "Pagina einde verwijderen" #: 02190000.xhp msgctxt "" @@ -2570,7 +2570,7 @@ "hd_id3150541\n" "help.text" msgid "Delete Page Break" -msgstr "" +msgstr "Page einde verwijderen" #: 02190000.xhp msgctxt "" @@ -2620,7 +2620,7 @@ "par_id3151041\n" "help.text" msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose Sheet - Delete Page Break - Row Break. The manual row break is removed." -msgstr "" +msgstr "Plaats de cursor in een cel direct onder het rij-einde, aangegeven door een horizontale lijn en kies Bewerken - Pagina einde verwijderen - Rij-einde. Het handmatig ingevoegde rij-einde wordt verwijderd." #: 02190200.xhp msgctxt "" @@ -2662,7 +2662,7 @@ "par_id3145173\n" "help.text" msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose Sheet - Delete Page Break - Column Break. The manual column break is removed." -msgstr "" +msgstr "Plaats de cursor in de cel rechts van het kolomeinde aangegeven door een verticale lijn en kies Bewerken - Pagina einde verwijderen - Kolomeinde. Het handmatig ingevoegde kolomeinde wordt verwijderd." #: 02200000.xhp msgctxt "" @@ -2810,7 +2810,7 @@ "par_id3154366\n" "help.text" msgid "Displays cell contents in different colors, depending on type." -msgstr "Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type." +msgstr "Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type." #: 03080000.xhp msgctxt "" @@ -2922,7 +2922,7 @@ "hd_id3154731\n" "help.text" msgid "Delete Page Breaks" -msgstr "" +msgstr "Pagina-einde verwijderen" #: 03100000.xhp msgctxt "" @@ -2954,7 +2954,7 @@ "tit\n" "help.text" msgid "Insert Page Break" -msgstr "" +msgstr "Pagina-einde invoegen" #: 04010000.xhp msgctxt "" @@ -2971,7 +2971,7 @@ "1\n" "help.text" msgid "Insert Page Break" -msgstr "" +msgstr "Pagina-einde invoegen" #: 04010000.xhp msgctxt "" @@ -2988,7 +2988,7 @@ "par_id3155133\n" "help.text" msgid "Choose Sheet - Delete Page Break to remove breaks created manually." -msgstr "" +msgstr "Kies Blad - Pagina-einde verwijderen om de aangemaakt pagina-einden handmatig te verwijderen." #: 04010100.xhp msgctxt "" @@ -4034,7 +4034,7 @@ "16\n" "help.text" msgid "Functions by Category" -msgstr "" +msgstr "Functies per categorie" #: 04060100.xhp msgctxt "" @@ -4151,7 +4151,7 @@ "14\n" "help.text" msgid "Operators" -msgstr "" +msgstr "Operatoren" #: 04060101.xhp msgctxt "" @@ -4499,7 +4499,7 @@ "86\n" "help.text" msgid "DatabaseField specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name." -msgstr "" +msgstr "Databaseveld specificeert de kolom waar de functie op zal werken nadat de zoekcriteria van de eerste parameter zijn toegewezen en de gegevensrijen zijn geselecteerd. Het is niet aan de zoekcriteria zelf gerelateerd. Gebruik het getal 0 om het gehele gegevensbereik te specificeren. Plaats aanhalingstekens rondom de naam van de koprij om naar een kolom te verwijzen met behulp van de naam van de koprij. " #: 04060101.xhp msgctxt "" @@ -4578,7 +4578,7 @@ "187\n" "help.text" msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. " -msgstr "" +msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DCOUNT het aantal terug van alle records die voldoen aan het criterium. " #: 04060101.xhp msgctxt "" @@ -4667,7 +4667,7 @@ "189\n" "help.text" msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. " -msgstr "" +msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DBAANTALC het aantal terug van alle records die voldoen aan het criterium. " #: 04060101.xhp msgctxt "" @@ -5510,7 +5510,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "" +msgstr "datum en tijd functies functies; datum en tijd Functie-assistent; datum en tijd" #: 04060102.xhp msgctxt "" @@ -5518,7 +5518,7 @@ "hd_id3154536\n" "help.text" msgid "Date & Time Functions" -msgstr "" +msgstr "Datum- en tijdfuncties" #: 04060102.xhp msgctxt "" @@ -5526,7 +5526,7 @@ "par_id3153973\n" "help.text" msgid "These spreadsheet functions are used for inserting and editing dates and times. " -msgstr "" +msgstr "Deze functies worden gebruikt voor het invoegen en bewerken van datums en tijden." #: 04060102.xhp msgctxt "" @@ -5542,7 +5542,7 @@ "par_id3150437\n" "help.text" msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select Format Cells. The Numbers tab page contains the functions for defining the number format." -msgstr "" +msgstr "$[officename] behandelt de datum/tijdwaarden intern als een numerieke waarde. Als u de numerieke opmaak \"Getal\" aan een datum- of tijdwaarde toewijst, zal bijvoorbeeld 01/01/2000 12:00 PM worden omgezet in 36526,5. De waarde die aan de komma voorafgaat komt overeen met de datum; de waarde achter de komma komt overeen met de tijd. Als u deze numerieke weergave van een datum of tijd niet wil zien moet u de getalnotatie wijzigen in een datum- of tijdweergave. Teneinde dit te doen selecteert u de cel die de datum- of tijdwaarde bevat, roep dan het contextmenu op en selecteer Cellen opmaken. Het tabblad Getallen bevat de functies voor het definiëren van de getalnotatie." #: 04060102.xhp msgctxt "" @@ -5654,7 +5654,7 @@ "par_id3149720\n" "help.text" msgid "In %PRODUCTNAME - PreferencesTools - Options - $[officename] - General you find the area Year (two digits). This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions." -msgstr "" +msgstr "In %PRODUCTNAME - VoorkeurenExtra - Opties - $[officename] - Algemeen vindt u het gebied Jaar (twee cijfers). Dit stelt de periode in waarvoor de tweecijferige informatie van toepassing is. Merk op dat aanpassingen die hier worden gemaakt gevolgen hebben voor sommige van de volgende functies." #: 04060102.xhp msgctxt "" @@ -5662,7 +5662,7 @@ "par_id3150654\n" "help.text" msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings." -msgstr "" +msgstr "Wanneer datums onderdeel van een formule zijn, worden schuine strepen of koppeltekens als scheidingstekens gebruikt. Daarom worden datums, die in deze opmaak worden ingevoerd, niet als datums herkend en leidt dit tot foutieve onderdeel van de formule geïnterpreteerd worden. Bijvoorbeeld DATUM(1954;7;20) of plaats de datum tussen aanhalingstekens volgens de ISO 8601-notatie, bijvoorbeeld \"1954-07-20\". Vermijd het gebruik van locale afhankelijke datum formaten zoals \"07/20/54\". De berekening kan fouten opleveren als het document geladen wordt met andere locale instellingen." #: 04060102.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -7702,7 +7702,7 @@ "par_idN10E621\n" "help.text" msgid "If the payments take place at irregular intervals, use the XIRR function." -msgstr "" +msgstr "Gebruik de functie XIRR, als de betalingen op onregelmatige basis plaatsvinden." #: 04060103.xhp msgctxt "" @@ -10129,7 +10129,7 @@ "par_id3150245\n" "help.text" msgid "=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2) returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2." -msgstr "" +msgstr "=CEL(\"ADRES\";'X:\\dr\\test.sxc'#$Blad1.D2) geeft 'file:///X:/dr/test.sxc'#$Blad1.$D$2 terug." #: 04060104.xhp msgctxt "" @@ -10153,7 +10153,7 @@ "par_id3148896\n" "help.text" msgid "=CELL(\"FILENAME\";D2) returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1." -msgstr "" +msgstr "=CEL(\"FILENAME\";D2) geeft 'file:///X:/dr/own.sxc'#$Blad1 terug als de formule in het huidige document X:\\dr\\own.sxc aanwezig is op Blad1." #: 04060104.xhp msgctxt "" @@ -10161,7 +10161,7 @@ "par_id3155144\n" "help.text" msgid "=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2) returns 'file:///X:/dr/test.ods'#$Sheet1." -msgstr "" +msgstr "=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2) geeft 'file:///X:/dr/test.ods'#$Blad1 terug." #: 04060104.xhp msgctxt "" @@ -10177,7 +10177,7 @@ "par_id3151004\n" "help.text" msgid "Returns the complete cell address in Lotus™ notation." -msgstr "" +msgstr "Geeft het volledige celadres in Lotus™-notatie." #: 04060104.xhp msgctxt "" @@ -12919,7 +12919,7 @@ "bm_id3151221\n" "help.text" msgid "GCD_EXCEL2003 function" -msgstr "" +msgstr "GGD_ADD-functie" #: 04060106.xhp msgctxt "" @@ -12927,7 +12927,7 @@ "hd_id3151221\n" "help.text" msgid "GCD_EXCEL2003" -msgstr "" +msgstr "GCD_EXCEL2003" #: 04060106.xhp msgctxt "" @@ -12951,7 +12951,7 @@ "par_id3156205\n" "help.text" msgid "GCD_EXCEL2003(Number(s))" -msgstr "" +msgstr "GCD_EXCEL2003(Getal(len))" #: 04060106.xhp msgctxt "" @@ -12975,7 +12975,7 @@ "par_id3159192\n" "help.text" msgid "=GCD_EXCEL2003(5;15;25) returns 5." -msgstr "" +msgstr "=GCD_EXCEL2003(5;15;25) geeft 5 terug." #: 04060106.xhp msgctxt "" @@ -13047,7 +13047,7 @@ "bm_id3154230\n" "help.text" msgid "LCM_EXCEL2003 function" -msgstr "" +msgstr "LCM_EXCEL2003-functie" #: 04060106.xhp msgctxt "" @@ -13055,7 +13055,7 @@ "hd_id3154230\n" "help.text" msgid "LCM_EXCEL2003" -msgstr "" +msgstr "LCM_EXCEL2003" #: 04060106.xhp msgctxt "" @@ -13079,7 +13079,7 @@ "par_id3154395\n" "help.text" msgid "LCM_EXCEL2003(Number(s))" -msgstr "" +msgstr "LCM_EXCEL2003(Getal(len))" #: 04060106.xhp msgctxt "" @@ -13103,7 +13103,7 @@ "par_id3145135\n" "help.text" msgid "=LCM_EXCEL2003(5;15;25) returns 75." -msgstr "" +msgstr "=LCM_EXCEL2003(5;15;25) geeft 75 terug." #: 04060106.xhp msgctxt "" @@ -13647,7 +13647,7 @@ "par_id3155020\n" "help.text" msgid "Mode is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero." -msgstr "" +msgstr "Modus is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond." #: 04060106.xhp msgctxt "" @@ -16103,7 +16103,7 @@ "par_id3157517\n" "help.text" msgid "Mode is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded towards zero. If the Mode value is equal to zero or is not given, negative numbers are rounded away from zero." -msgstr "" +msgstr "Modus is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond." #: 04060106.xhp msgctxt "" @@ -17303,7 +17303,7 @@ "par_idN10DD0\n" "help.text" msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:" -msgstr "De volgende functies bieden afgedwongen matrixverwerking: CORRELATIE, COVARIANTIE, VOORSPELLEN, F.TOETS, SNIJPUNT, DETERMINANT.MAT, INVERSEMAT, PRODUCTMAT, MODUS, PEARSON, KANS, R.KWADRAAT, STIJGING, STFOUTYX, SOMPRODUCT, SOM.X2MINY2, SOM.X2PLUSY2, SOM.XMINY.2, T.TOETS. Als u gebiedsverwijzingen als argumenten gebruikt wanneer u een van de functies aanroept, gedragen ze zich als matrixfuncties. In de volgende tabel vindt u een voorbeeld van afgedwongen matrixverwerking:" +msgstr "De volgende functies bieden afgedwongen matrixverwerking: CORRELATIE, COVARIANTIE, VOORSPELLEN, FTOETS, SNIJPUNT, DETERMINANT.MAT, INVERSEMAT, PRODUCTMAT, MODUS, PEARSON, KANS, R.KWADRAAT, STIJGING, STFOUTYX, SOMPRODUCT, SOM.X2MINY2, SOM.X2PLUSY2, SOM.XMINY.2, TTOETS. Als u gebiedsverwijzingen als argumenten gebruikt wanneer u een van de functies aanroept, gedragen ze zich als matrixfuncties. In de volgende tabel vindt u een voorbeeld van afgedwongen matrixverwerking:" #: 04060107.xhp msgctxt "" @@ -18015,7 +18015,7 @@ "par_idN11635\n" "help.text" msgid "You can find a general introduction to using Array functions on top of this page." -msgstr "" +msgstr "Boven aan deze pagina vindt u een algemene inleiding tot het gebruik van matrixfuncties." #: 04060107.xhp msgctxt "" @@ -18239,7 +18239,7 @@ "par_id3166145\n" "help.text" msgid "TRANSPOSE(A1:D2)" -msgstr "" +msgstr "TRANSPOSE(A1:D2)" #: 04060107.xhp msgctxt "" @@ -18319,7 +18319,7 @@ "par_id3154448\n" "help.text" msgid "If linearType is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, linearType defaults to TRUE (the line is not forced through the origin)." -msgstr "" +msgstr "Als Lineairtype ONWAAR is wordt de gevonden rechte lijn gedwongen door het punt van oorsprong te gaan (de constante a is nul; y = bx). Indien weggelaten, gaat Lineairtype standaard naar WAAR (de lijn wordt niet gedwongen dor het punt van oorsprong te gaan)." #: 04060107.xhp msgctxt "" @@ -18327,7 +18327,7 @@ "par_id3154142\n" "help.text" msgid "If stats is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned." -msgstr "" +msgstr "Als Statistieken wordt weggelaten of ONWAAR is wordt alleen de bovenste lijn van de tabel met statistieken teruggegeven. Indien WAAR wordt de gehele tabel teruggegeven." #: 04060107.xhp msgctxt "" @@ -19680,7 +19680,7 @@ "1\n" "help.text" msgid "Statistics Functions" -msgstr "" +msgstr "Statistische functies" #: 04060108.xhp msgctxt "" @@ -20456,7 +20456,7 @@ "36\n" "help.text" msgid "=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\") reads the contents of cell A1 in sheet1 of the %PRODUCTNAME Calc spreadsheet data1.ods." -msgstr "" +msgstr "=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"blad1.A1\") leest de inhoud van cel A1 in blad1 van het %PRODUCTNAME Calc-werkblad data1.sxc." #: 04060109.xhp msgctxt "" @@ -20465,7 +20465,7 @@ "37\n" "help.text" msgid "=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\") returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named Today's Motto (in %PRODUCTNAME Writer under Insert - Section). If the motto is modified (and saved) in the %PRODUCTNAME Writer document, the motto is updated in all %PRODUCTNAME Calc cells in which this DDE link is defined." -msgstr "" +msgstr "=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Motto van vandaag\") geeft een motto terug in de cel die deze formule bevat. Eerst moet u een regel invoeren in het document motto.odt dat de tekst van het motto bevat en het definiëren als de eerste regel van een sectie genaamd Motto van vandaag (in %PRODUCTNAME Writer onder Invoegen - Sectie). Als het motto is aangepast (en opgeslagen) in het %PRODUCTNAME Writerdocument wordt het motto bijgewerkt in alle cellen van %PRODUCTNAME Calc waarin deze DDE-koppeling is gedefiniëerd." #: 04060109.xhp msgctxt "" @@ -20652,7 +20652,7 @@ "57\n" "help.text" msgid "=INDEX(SumX;4;1) returns the value from the range SumX in row 4 and column 1 as defined in Sheet - Named Ranges and Expressions - Define." -msgstr "" +msgstr "=INDEX(SomX;4;1) geeft de waarde uit het bereik SomX in rij 4 en kolom 1 zoals gedefiniëerd in Blad - Namen - Definiëren." #: 04060109.xhp msgctxt "" @@ -20677,7 +20677,7 @@ "58\n" "help.text" msgid "=INDEX((multi);4;1) indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under Sheet - Named Ranges and Expressions - Define as multi. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number 2 as the range parameter." -msgstr "" +msgstr "=INDEX((multi);4;1) geeft de waarde aan die rij 4 en kolom 1 van het (meervoudige) bereik bevat, die u hebt genoemd onder Blad - Namen - Definiëren als multi. Het meervoudige bereik kan bestaan uit verschillende rechthoekige bereiken, elk met een rij 4 en kolom 1. Als u nu het tweede blok van dit meervoudige bereik wilt aanroepen voer dan het nummer 2 in als de reeksparameter." #: 04060109.xhp msgctxt "" @@ -21030,7 +21030,7 @@ "88\n" "help.text" msgid "Vertical search with reference to adjacent cells to the right. This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by Index. If the Sorted parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact SearchCriterion is not found, the last value that is smaller than the criterion will be returned. If Sorted is set to FALSE or zero, an exact match must be found, otherwise the error Error: Value Not Available will be the result. Thus with a value of zero the data does not need to be sorted in ascending order." -msgstr "" +msgstr "Verticaal zoeken met verwijzing naar de aanliggende cellen aan de rechterzijde. Deze functie controleert of een specifieke waarde is opgenomen in de eerste kolom van een matrix. De functie geeft dan de waarde terug in dezelfde rij van de kolom die wordt genoemd bij Index. Als de parameter Sorteren wordt weggelaten of ingesteld op WAAR of één, wordt aangenomen dat de gegevens zijn gesorteerd in oplopende volgorde. In dit geval zal, als het exacte Zoekcriterium niet wordt gevonden, de laatste waarde die kleiner is dan het criterium worden teruggegeven. Als Sorteren is ingesteld op ONWAAR of nul moet een exacte overeenkomst worden gevonden, anders zal de fout FOUT: Waarde niet beschikbaar het resultaat zijn. Dus met de waarde nul behoeven de gegevens niet te zijn gesorteerd in oplopende volgorde." #: 04060109.xhp msgctxt "" @@ -21048,7 +21048,7 @@ "90\n" "help.text" msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)" -msgstr "" +msgstr "=VERT.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteervolgorde)" #: 04060109.xhp msgctxt "" @@ -21084,7 +21084,7 @@ "94\n" "help.text" msgid "Sorted is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: Error: Value Not Available." -msgstr "" +msgstr "Sorteren is een optionele parameter die aangeeft of de eerste kolom in de matrix is gesorteerd in oplopende volgorde. Voer de Booleaanse waarde ONWAAR of nul in als de eerste kolom niet is gesorteerd in oplopende volgorde. Gesorteerde kolommen kunnen veel sneller worden doorzocht en de functie geeft altijd een waarde terug, zelfs als de zoekwaarde niet exact overeenkomt, indien die tussen de hoogste en laagste waarde van de gesorteerde lijst ligt. In ongesorteerde lijsten moet de zoekwaarde exact overeenkomen. In andere gevallen zal de functie dit bericht teruggeven: Fout: Waarde niet beschikbaar." #: 04060109.xhp msgctxt "" @@ -21102,7 +21102,7 @@ "96\n" "help.text" msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains 100, E1 contains the name Vegetable Soup, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional Sorted parameter is not necessary." -msgstr "" +msgstr "U wilt het nummer van een gerecht uit het menu in cel A1 invoeren en de naam van het gerecht moet onmiddellijk als tekst verschijnen in de naastgelegen cel (B1). De toewijzing Nummer aan Naam is opgenomen in de matrix D1:E100. D1 bevat 100, E1 bevat de naam Groentensoep enzovoort, voor 100 menu-items. De getallen in kolom D zijn oplopend gesorteerd; dus, de optionele parameter Sorteren is niet nodig." #: 04060109.xhp msgctxt "" @@ -21576,7 +21576,7 @@ "124\n" "help.text" msgid "Returns the contents of a cell either from a one-row or one-column range. Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to VLOOKUP and HLOOKUP, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results." -msgstr "" +msgstr "Geeft de inhoud van een cel weer of uit een één-rij of één-kolom bereik. Optioneel wordt de toegewezen waarde (van dezelfde index) teruggegeven in een andere kolom en rij. Tegengesteld aan VERT.ZOEKEN en HORIZ.ZOEKEN mogen de zoek- en resultaatvector op verschillende posities liggen; zij hoeven niet aanliggend te zijn. Aansluitend daarop moet de zoekvector voor ZOEKEN oplopend gesorteerd zijn, anders zal de zoekactie geen bruikbare resultaten teruggeven." #: 04060109.xhp msgctxt "" @@ -21884,7 +21884,7 @@ "154\n" "help.text" msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)" -msgstr "" +msgstr "HORIZ.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteren)" #: 04060109.xhp msgctxt "" @@ -21893,7 +21893,7 @@ "155\n" "help.text" msgid "See also: VLOOKUP (columns and rows are exchanged)" -msgstr "" +msgstr "Zie ook:VERT.ZOEKEN (kolommen en rijen worden omgewisseld)" #: 04060109.xhp msgctxt "" @@ -22444,7 +22444,7 @@ "1\n" "help.text" msgid "Text Functions" -msgstr "" +msgstr "Tekstfuncties" #: 04060110.xhp msgctxt "" @@ -25603,7 +25603,7 @@ "1\n" "help.text" msgid "Add-in Functions" -msgstr "" +msgstr "Invoegfuncties" #: 04060111.xhp msgctxt "" @@ -32422,7 +32422,7 @@ "par_idN10E62\n" "help.text" msgid "If the payments take place at regular intervals, use the IRR function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie IRR." #: 04060118.xhp msgctxt "" @@ -32662,7 +32662,7 @@ "par_id3153904\n" "help.text" msgid "Calculates the capital value (net present value) for a list of payments which take place on different dates. The calculation is based on a 365 days per year basis, ignoring leap years." -msgstr "" +msgstr "Berekent de kapitaalwaarde (netto contante waarde) voor een lijst van betalingen die op verschillende datums vallen. De berekening is gebaseerd op basis van een jaar met 365 dagen, waarbij schrikkeljaren genegeerd worden." #: 04060118.xhp msgctxt "" @@ -32670,7 +32670,7 @@ "par_idN11138\n" "help.text" msgid "If the payments take place at regular intervals, use the NPV function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie NVP." #: 04060118.xhp msgctxt "" @@ -32934,7 +32934,7 @@ "par_id3155586\n" "help.text" msgid "=RATE(3;-10;900) = -75.63% The interest rate is therefore 75.63%." -msgstr "" +msgstr "=KOERS(3;10;900) = -75.63% De rentekoers is daarom 75.63%." #: 04060118.xhp msgctxt "" @@ -35391,7 +35391,7 @@ "par_id3145308\n" "help.text" msgid "Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value." -msgstr "" +msgstr "Retourneert de huidige waarde van een investering op basis van een reeks periodieke cashflows en een discontovoet. Teneinde de netto huidige waarde te verkrijgen, trekt u de kosten van het project (de eerste cashflow op het tijdstip nul) van de retourwaarde af." #: 04060119.xhp msgctxt "" @@ -35399,7 +35399,7 @@ "par_idN111381\n" "help.text" msgid "If the payments take place at irregular intervals, use the XNPV function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie XNVP." #: 04060119.xhp msgctxt "" @@ -37891,7 +37891,7 @@ "bm_id3156096\n" "help.text" msgid "BETADIST function cumulative probability density function;calculating" -msgstr "BÈTA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" +msgstr "BETAVERD-functie cumulatieve kansdichtheidsfunctie;berekenen" #: 04060181.xhp msgctxt "" @@ -37899,7 +37899,7 @@ "hd_id3156096\n" "help.text" msgid "BETADIST" -msgstr "BÈTA.VERD" +msgstr "BETAVERD" #: 04060181.xhp msgctxt "" @@ -37923,7 +37923,7 @@ "par_id3147571\n" "help.text" msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)" -msgstr "BÈTA.VERD(Getal; Alfa; Bèta; Start; Einde; Cumulatief)" +msgstr "BETAVERD(Getal; Alfa; Bèta; Start; Einde; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -37987,7 +37987,7 @@ "par_id3156118\n" "help.text" msgid "=BETADIST(0.75;3;4) returns the value 0.96" -msgstr "=BÈTA.VERD(0,75;3;4) geeft de waarde 0,96 terug" +msgstr "=BETAVERD(0,75;3;4) geeft de waarde 0,96 terug" #: 04060181.xhp msgctxt "" @@ -37995,7 +37995,7 @@ "bm_id2956096\n" "help.text" msgid "BETA.DIST function cumulative probability density function;calculating" -msgstr "BÈTA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" +msgstr "BETA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" #: 04060181.xhp msgctxt "" @@ -38027,7 +38027,7 @@ "par_id2947571\n" "help.text" msgid "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)" -msgstr "BÈTA.VERD(Getal; Alfa; Bèta; Cumulatieve; Start; Einde)" +msgstr "BETA.VERD(Getal; Alfa; Bèta; Cumulatieve; Start; Einde)" #: 04060181.xhp msgctxt "" @@ -38091,7 +38091,7 @@ "par_id2956118\n" "help.text" msgid "=BETA.DIST(2;8;10;1;1;3) returns the value 0.6854706" -msgstr "=BÈTA.VERD(2;8;10;1;1;3) geeft de waarde 0,6854706 terug" +msgstr "=BETA.VERD(2;8;10;1;1;3) geeft de waarde 0,6854706 terug" #: 04060181.xhp msgctxt "" @@ -38099,7 +38099,7 @@ "par_id2956119\n" "help.text" msgid "=BETA.DIST(2;8;10;0;1;3) returns the value 1.4837646" -msgstr "=BÈTA.VERD(2;8;10;0;1;) geeft de waarde 1,4837646 terug" +msgstr "=BETA.VERD(2;8;10;0;1;) geeft de waarde 1,4837646 terug" #: 04060181.xhp msgctxt "" @@ -38107,7 +38107,7 @@ "bm_id3143228\n" "help.text" msgid "BINOMDIST function" -msgstr "BINOMIALE.VERD-functie" +msgstr "BINOMIALEVERD-functie" #: 04060181.xhp msgctxt "" @@ -38115,7 +38115,7 @@ "hd_id3143228\n" "help.text" msgid "BINOMDIST" -msgstr "BINOMIALE.VERD" +msgstr "BINOMIALEVERD" #: 04060181.xhp msgctxt "" @@ -38139,7 +38139,7 @@ "par_id3156009\n" "help.text" msgid "BINOMDIST(X; Trials; SP; C)" -msgstr "BINOMIALE.VERD(X; Experimenten; KS; C)" +msgstr "BINOMIALEVERD(X; Experimenten; KS; C)" #: 04060181.xhp msgctxt "" @@ -38187,7 +38187,7 @@ "par_id3145666\n" "help.text" msgid "=BINOMDIST(A1;12;0.5;0) shows (if the values 0 to 12 are entered in A1) the probabilities for 12 flips of a coin that Heads will come up exactly the number of times entered in A1." -msgstr "=BINOMIALE.VERD(A1;12;0,5;0) toont (als de waarden 0 tot en met 12 zijn ingevoerd in A1) de mogelijkheden voor het 12 keer opgooien van een munt waarbij Kop exact het aantal keren zal vallen als werd ingevoerd in A1." +msgstr "=BINOMIALEVERD(A1;12;0,5;0) toont (als de waarden 0 tot en met 12 zijn ingevoerd in A1) de mogelijkheden voor het 12 keer opgooien van een munt waarbij Kop exact het aantal keren zal vallen als werd ingevoerd in A1." #: 04060181.xhp msgctxt "" @@ -38195,7 +38195,7 @@ "par_id3150120\n" "help.text" msgid "=BINOMDIST(A1;12;0.5;1) shows the cumulative probabilities for the same series. For example, if A1 = 4, the cumulative probability of the series is 0, 1, 2, 3 or 4 times Heads (non-exclusive OR)." -msgstr "=BINOMIALE.VERD(A1;12;0,5;1) toont de cumulatieve kansen voor dezelfde reeksen. Als bijvoorbeeld A1 = 4 is de cumulatieve kans van de reeks 0, 1, 2, 3 of 4 keer Kop (niet-exclusieve OF)." +msgstr "=BINOMIALEVERD(A1;12;0,5;1) toont de cumulatieve kansen voor dezelfde reeksen. Als bijvoorbeeld A1 = 4 is de cumulatieve kans van de reeks 0, 1, 2, 3 of 4 keer Kop (niet-exclusieve OF)." #: 04060181.xhp msgctxt "" @@ -38299,7 +38299,7 @@ "bm_id2843228\n" "help.text" msgid "BINOM.INV function" -msgstr "BINOMIALE.VERD-functie" +msgstr "BINOMIALE.INV-functie" #: 04060181.xhp msgctxt "" @@ -38379,7 +38379,7 @@ "bm_id0119200902432928\n" "help.text" msgid "CHISQINV function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADRINV-functie" #: 04060181.xhp msgctxt "" @@ -38387,7 +38387,7 @@ "hd_id0119200902421451\n" "help.text" msgid "CHISQINV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADRINV" #: 04060181.xhp msgctxt "" @@ -38395,7 +38395,7 @@ "par_id0119200902421449\n" "help.text" msgid "Returns the inverse of CHISQDIST." -msgstr "Geeft als resultaat de inverse van CHI.KWADR.VERD." +msgstr "Geeft als resultaat de inverse van CHIKWADRVERD." #: 04060181.xhp msgctxt "" @@ -38427,7 +38427,7 @@ "bm_id2919200902432928\n" "help.text" msgid "CHISQ.INV function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADR.INV-functie" #: 04060181.xhp msgctxt "" @@ -38435,7 +38435,7 @@ "hd_id2919200902421451\n" "help.text" msgid "CHISQ.INV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADR.INV" #: 04060181.xhp msgctxt "" @@ -38459,7 +38459,7 @@ "par_id1150504\n" "help.text" msgid "CHISQ.INV(Probability; DegreesFreedom)" -msgstr "CHI.KWADR.INV(Waarschijnlijkheid; Vrijheidsgraden)" +msgstr "CHIKWADR.INV(Waarschijnlijkheid; Vrijheidsgraden)" #: 04060181.xhp msgctxt "" @@ -38611,7 +38611,7 @@ "bm_id2948835\n" "help.text" msgid "CHISQ.INV.RT function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADR.INV.RT-functie" #: 04060181.xhp msgctxt "" @@ -39299,7 +39299,7 @@ "hd_id2848690\n" "help.text" msgid "CHISQ.DIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADR.VERD" #: 04060181.xhp msgctxt "" @@ -39323,7 +39323,7 @@ "par_id2858439\n" "help.text" msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)" -msgstr "CHI.KWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" +msgstr "CHIKWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -39467,7 +39467,7 @@ "bm_id0119200902231887\n" "help.text" msgid "CHISQDIST function chi-square distribution" -msgstr "CHI.KWADR.VERD-functie chi-kwadraat verdeling" +msgstr "CHIKWADRVERD-functie chi-kwadraat verdeling" #: 04060181.xhp msgctxt "" @@ -39475,7 +39475,7 @@ "hd_id0119200901583452\n" "help.text" msgid "CHISQDIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADRVERD" #: 04060181.xhp msgctxt "" @@ -39499,7 +39499,7 @@ "par_id0119200902395679\n" "help.text" msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)" -msgstr "CHI.KWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" +msgstr "CHIKWADRVERD(Getal; Vrijheidsgraden; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -39531,7 +39531,7 @@ "bm_id3150603\n" "help.text" msgid "EXPONDIST function exponential distributions" -msgstr "EXPON.VERD-functie exponentiële verdelingen" +msgstr "EXPONVERD-functie exponentiële verdelingen" #: 04060181.xhp msgctxt "" @@ -39539,7 +39539,7 @@ "hd_id3150603\n" "help.text" msgid "EXPONDIST" -msgstr "EXPON.VERD" +msgstr "EXPONVERD" #: 04060181.xhp msgctxt "" @@ -39563,7 +39563,7 @@ "par_id3150987\n" "help.text" msgid "EXPONDIST(Number; Lambda; C)" -msgstr "EXPON.VERD(Getal; Lambda; C)" +msgstr "EXPONVERD(Getal; Lambda; C)" #: 04060181.xhp msgctxt "" @@ -39603,7 +39603,7 @@ "par_id3150357\n" "help.text" msgid "=EXPONDIST(3;0.5;1) returns 0.78." -msgstr "=EXPON.VERD(3;0,5;1) geeft 0,78 terug." +msgstr "=EXPONVERD(3;0,5;1) geeft 0,78 terug." #: 04060181.xhp msgctxt "" @@ -39708,7 +39708,7 @@ "bm_id3145388\n" "help.text" msgid "FINV function inverse F probability distribution" -msgstr "F.INVERSE-functie inverse F-kansverdeling" +msgstr "FINVERSE-functie inverse F-kansverdeling" #: 04060182.xhp msgctxt "" @@ -39717,7 +39717,7 @@ "2\n" "help.text" msgid "FINV" -msgstr "F.INVERSE" +msgstr "FINVERSE" #: 04060182.xhp msgctxt "" @@ -39744,7 +39744,7 @@ "5\n" "help.text" msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.INVERSE(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "FINVERSE(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -39789,7 +39789,7 @@ "10\n" "help.text" msgid "=FINV(0.5;5;10) yields 0.93." -msgstr "=F.INVERSE(0,5;5;10) levert 0,93 op." +msgstr "=FINVERSE(0,5;5;10) levert 0,93 op." #: 04060182.xhp msgctxt "" @@ -40117,7 +40117,7 @@ "bm_id3151390\n" "help.text" msgid "FTEST function" -msgstr "F.TOETS-functie" +msgstr "FTOETS-functie" #: 04060182.xhp msgctxt "" @@ -40126,7 +40126,7 @@ "28\n" "help.text" msgid "FTEST" -msgstr "F.TOETS" +msgstr "FTOETS" #: 04060182.xhp msgctxt "" @@ -40153,7 +40153,7 @@ "31\n" "help.text" msgid "FTEST(Data1; Data2)" -msgstr "F.TOETS(Gegevens1; Gegevens2)" +msgstr "FTOETS(Gegevens1; Gegevens2)" #: 04060182.xhp msgctxt "" @@ -40189,7 +40189,7 @@ "35\n" "help.text" msgid "=FTEST(A1:A30;B1:B12) calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population." -msgstr "=F.TOETS(A1:A30;B1:B12) berekent of de twee gegevensverzamelingen verschillend zijn in hun variantie en geeft de waarschijnlijkheid terug die beide verzamelingen zouden kunnen hebben uit dezelfde totale populatie." +msgstr "=FTOETS(A1:A30;B1:B12) berekent of de twee gegevensverzamelingen verschillend zijn in hun variantie en geeft de waarschijnlijkheid terug die beide verzamelingen zouden kunnen hebben uit dezelfde totale populatie." #: 04060182.xhp msgctxt "" @@ -40277,7 +40277,7 @@ "bm_id3150372\n" "help.text" msgid "FDIST function" -msgstr "F.VERDELING-functie" +msgstr "FVERDELING-functie" #: 04060182.xhp msgctxt "" @@ -40286,7 +40286,7 @@ "37\n" "help.text" msgid "FDIST" -msgstr "F.VERDELING" +msgstr "FVERDELING" #: 04060182.xhp msgctxt "" @@ -40313,7 +40313,7 @@ "40\n" "help.text" msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.VERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "FVERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -40358,7 +40358,7 @@ "45\n" "help.text" msgid "=FDIST(0.8;8;12) yields 0.61." -msgstr "=F.VERDELING(0,8;8;12) levert 0,61 op." +msgstr "=FVERDELING(0,8;8;12) levert 0,61 op." #: 04060182.xhp msgctxt "" @@ -40473,7 +40473,7 @@ "bm_id2850372\n" "help.text" msgid "F.DIST.RT function" -msgstr "F.VERDELING-functie" +msgstr "F.VERDELING.RT-functie" #: 04060182.xhp msgctxt "" @@ -40509,7 +40509,7 @@ "40\n" "help.text" msgid "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.VERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "F.VERDELING.RT(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -40554,7 +40554,7 @@ "45\n" "help.text" msgid "=F.DIST.RT(0.8;8;12) yields 0.6143396437." -msgstr "=F.VERDELING(0,8;8;12) levert 0,61 op." +msgstr "=F.VERDELING.RT(0,8;8;12) levert 0,61 op." #: 04060182.xhp msgctxt "" @@ -43057,7 +43057,7 @@ "77\n" "help.text" msgid "Returns the values of a lognormal distribution." -msgstr "Geeft de waarden van een lognormale verdeling als resultaat." +msgstr "Geeft de waarden van een lognormale verdeling als resultaat." #: 04060183.xhp msgctxt "" @@ -43692,7 +43692,7 @@ "39\n" "help.text" msgid "Number1; Number2;...Number30 are numerical values or ranges." -msgstr "" +msgstr "Getal1, Getal2,...Getal30 zijn numerieke waarden of bereiken." #: 04060184.xhp msgctxt "" @@ -44020,7 +44020,7 @@ "bm_id3149879\n" "help.text" msgid "NEGBINOMDIST functionnegative binomial distribution" -msgstr "NEG.BINOM.VERD-functienegatieve binomiale verdeling" +msgstr "NEGBINOMVERD-functienegatieve binomiale verdeling" #: 04060184.xhp msgctxt "" @@ -44109,7 +44109,7 @@ "bm_id2949879\n" "help.text" msgid "NEGBINOM.DIST functionnegative binomial distribution" -msgstr "NEG.BINOM.VERD-functienegatieve binomiale verdeling" +msgstr "NEGBINOM.VERD-functienegatieve binomiale verdeling" #: 04060184.xhp msgctxt "" @@ -49848,7 +49848,7 @@ "tit\n" "help.text" msgid "Named Ranges and Expressions" -msgstr "" +msgstr "Benoemde bereiken en expressies" #: 04070000.xhp msgctxt "" @@ -49857,7 +49857,7 @@ "1\n" "help.text" msgid "Named Ranges and Expressions" -msgstr "" +msgstr "Benoemde bereiken en expressies" #: 04070000.xhp msgctxt "" @@ -50512,7 +50512,7 @@ "par_id3151118\n" "help.text" msgid "Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document. The Function List deck is similar to the Functions tab page of the Function Wizard. The functions are inserted with placeholders to be replaced with your own values." -msgstr "Deze opdracht opent het venster Functielijst met alle functies die u in uw document kunt invoegen. Het venster Functielijst lijkt op het tabblad Functies van de Functie-Assistent. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." +msgstr "Deze opdracht opent het venster Functielijst met alle functies die u in uw document kunt invoegen. Het venster Functielijst lijkt op het tabblad Functies van de Functie-Assistent. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." #: 04080000.xhp msgctxt "" @@ -50544,7 +50544,7 @@ "par_id3149412\n" "help.text" msgid "Displays the available functions. When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the Insert Function into calculation sheet icon." -msgstr "" +msgstr "Geeft de functies van de geselecteerde categorie weer. Wanneer u een functie selecteert geeft het gebied onder het functievenster een korte beschrijving van deze functie weer. Teneinde de geselecteerde functie in het document toe te passen hoeft u er alleen maar op te dubbelklikken of klik op het pictogram Functie invoegen in blad." #: 04080000.xhp msgctxt "" @@ -50568,7 +50568,7 @@ "par_id3147345\n" "help.text" msgid "Inserts the selected function into the document." -msgstr "" +msgstr "Voegt de geselecteerde functie in het document in." #: 04090000.xhp msgctxt "" @@ -50788,7 +50788,7 @@ "par_id3156283\n" "help.text" msgid "This cell protection only takes effect if you also protect the sheet (Tools - Protect Sheet)." -msgstr "" +msgstr "Deze celbeveiling wordt actief als u het blad ook beveiligt (Extra - Werkblad beveiligen)." #: 05020600.xhp msgctxt "" @@ -51475,7 +51475,7 @@ "par_id1001240\n" "help.text" msgid "Three options are available:" -msgstr "" +msgstr "Er zijn drie opties beschikbaar:" #: 05060000.xhp msgctxt "" @@ -52876,7 +52876,7 @@ "par_id2414014\n" "help.text" msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Data - Calculate - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)." -msgstr "Automatisch berekenen moet ingeschakeld zijn om voorwaardelijke opmaak toe te kunnen passen. Kies 'Extra - Celinhoud - Automatisch berekenen' (er verschijnt een vinkje naast de opdracht wanneer Automatisch berekenen ingeschakeld is)." +msgstr "Automatisch berekenen moet ingeschakeld zijn om voorwaardelijke opmaak toe te kunnen passen. Kies Extra - Celinhoud - Automatisch berekenen (er verschijnt een vinkje naast de opdracht wanneer Automatisch berekenen ingeschakeld is)." #: 05120000.xhp msgctxt "" @@ -54581,7 +54581,7 @@ "par_id3156289\n" "help.text" msgid "Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable." -msgstr "Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar." +msgstr "Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar." #: 12010000.xhp msgctxt "" @@ -59708,7 +59708,7 @@ "par_id231020162249545526\n" "help.text" msgid "Number 1 to 7 for two-day weekends and 11 to 17 for one-day weekends." -msgstr "" +msgstr "Nummers 1 t/m 7 voor tweedaagse weekenden en 11 t/m 17 voor ééndaagse weekenden." #: common_func_workdaysintl.xhp msgctxt "" @@ -59716,7 +59716,7 @@ "par_id231020162249542082\n" "help.text" msgid "Number" -msgstr "" +msgstr "Getal" #: common_func_workdaysintl.xhp msgctxt "" @@ -59724,7 +59724,7 @@ "par_id23102016224954936\n" "help.text" msgid "Weekend" -msgstr "" +msgstr "Weekend" #: common_func_workdaysintl.xhp msgctxt "" @@ -59740,7 +59740,7 @@ "par_id231020162249544419\n" "help.text" msgid "Saturday and Sunday" -msgstr "" +msgstr "Zaterdag en zondag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59748,7 +59748,7 @@ "par_id231020162249543229\n" "help.text" msgid "Sunday and Monday" -msgstr "" +msgstr "Zondag en maandag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59756,7 +59756,7 @@ "par_id231020162249541638\n" "help.text" msgid "Monday and Tuesday" -msgstr "" +msgstr "Maandag en dinsdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59764,7 +59764,7 @@ "par_id231020162249548854\n" "help.text" msgid "Tuesday and Wednesday" -msgstr "" +msgstr "Dinsdag en woensdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59772,7 +59772,7 @@ "par_id23102016224954803\n" "help.text" msgid "Wednesday and Thursday" -msgstr "" +msgstr "Woensdag en donderdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59780,7 +59780,7 @@ "par_id231020162249545913\n" "help.text" msgid "Thursday and Friday" -msgstr "" +msgstr "Donderdag en vrijdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59788,7 +59788,7 @@ "par_id231020162249546426\n" "help.text" msgid "Friday and Saturday" -msgstr "" +msgstr "Vrijdag en zaterdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59796,7 +59796,7 @@ "par_id231020162249548630\n" "help.text" msgid "Sunday only" -msgstr "" +msgstr "Alleen zondag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59804,7 +59804,7 @@ "par_id231020162249547536\n" "help.text" msgid "Monday only" -msgstr "" +msgstr "Alleen maandag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59812,7 +59812,7 @@ "par_id231020162249545002\n" "help.text" msgid "Tuesday only" -msgstr "" +msgstr "Alleen dinsdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59820,7 +59820,7 @@ "par_id231020162249554939\n" "help.text" msgid "Wednesday only" -msgstr "" +msgstr "Alleen woensdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59828,7 +59828,7 @@ "par_id231020162249558942\n" "help.text" msgid "Thursday only" -msgstr "" +msgstr "Alleen donderdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59836,7 +59836,7 @@ "par_id231020162249558763\n" "help.text" msgid "Friday only" -msgstr "" +msgstr "Alleen vrijdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59844,7 +59844,7 @@ "par_id231020162249552635\n" "help.text" msgid "Saturday only" -msgstr "" +msgstr "Alleen zaterdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -64974,7 +64974,7 @@ "hd_id231020162249551873\n" "help.text" msgid "Example" -msgstr "" +msgstr "Voorbeeld" #: func_networkdays.intl.xhp msgctxt "" @@ -65102,7 +65102,7 @@ "hd_id3148677\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaxis" #: func_networkdays.xhp msgctxt "" @@ -65110,7 +65110,7 @@ "par_id3145775\n" "help.text" msgid "NETWORKDAYS(StartDate; EndDate; Holidays; Workdays)" -msgstr "" +msgstr "NETTO.WERKDAGEN(Startdatum; Einddatum; Feestdagen; Werkdagen)" #: func_networkdays.xhp msgctxt "" @@ -65118,7 +65118,7 @@ "par_id3153885\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Startdatum is de datum vanaf wanneer de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag opgenomen in de berekening." #: func_networkdays.xhp msgctxt "" @@ -65126,7 +65126,7 @@ "par_id3151110\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Einddatum is de datum tot wanneer de berekening wordt uitgevoerd. Als de einddatum een werkdag is, wordt die dag opgenomen in de berekening." #: func_networkdays.xhp msgctxt "" @@ -65134,7 +65134,7 @@ "par_id3154115\n" "help.text" msgid "Holidays is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually." -msgstr "" +msgstr "Feestdagen is een optionele lijst van feestdagen. Dit zijn geen werkdagen. Voer een celbereik in waarin de feestdagen individueel zijn opgesomd." #: func_networkdays.xhp msgctxt "" @@ -65150,7 +65150,7 @@ "hd_id3146902\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Voorbeelden" #: func_networkdays.xhp msgctxt "" @@ -65158,7 +65158,7 @@ "par_id3154661\n" "help.text" msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"." -msgstr "" +msgstr "Hoeveel werkdagen vallen er tussen 15-12-2001 en 15-01-2002? De startdatume staat in C3 en de einddatum in D3. Cellen F3 tot en met J3 bevatten de volgende Kerst- en Nieuwjaarfeestdagen: \"24-12-2001\", \"25-12-2001\", \"26-12-2001\", \"31-12-2001\", \"01-01-2002\"." #: func_networkdays.xhp msgctxt "" @@ -65214,7 +65214,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_now.xhp msgctxt "" @@ -66155,7 +66155,7 @@ "189\n" "help.text" msgid "WEBSERVICE(URI)" -msgstr "WEBSERVICE(URI)" +msgstr "WEBSERVICE(URL)" #: func_webservice.xhp msgctxt "" @@ -66164,7 +66164,7 @@ "190\n" "help.text" msgid "URI: URI text of the web service." -msgstr "URI: URI-tekst van de webservice." +msgstr "URL: URL-tekst van de webservice." #: func_webservice.xhp msgctxt "" @@ -67024,7 +67024,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_workdays.intl.xhp msgctxt "" @@ -67032,7 +67032,7 @@ "tit\n" "help.text" msgid "WORKDAYS.INTL" -msgstr "" +msgstr "WERKDAGEN.INT" #: func_workdays.intl.xhp msgctxt "" @@ -67040,7 +67040,7 @@ "bm_id231020162341219565\n" "help.text" msgid "WORKDAYS.INTL function" -msgstr "" +msgstr "WERKDAGEN.INT-functie" #: func_workdays.intl.xhp msgctxt "" @@ -67048,7 +67048,7 @@ "hd_id231020162348002143\n" "help.text" msgid "WORKDAYS.INTL" -msgstr "" +msgstr "WERKDAGEN.INT" #: func_workdays.intl.xhp msgctxt "" @@ -67064,7 +67064,7 @@ "hd_id241020160008306802\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaxis" #: func_workdays.intl.xhp msgctxt "" @@ -67072,7 +67072,7 @@ "par_id241020160008306838\n" "help.text" msgid "WORKDAY.INTL(StartDate; Days; Weekend; Holidays)" -msgstr "" +msgstr "WERKDAG.INT(Startdatum; Dagen; Weekend; Feestdagen)" #: func_workdays.intl.xhp msgctxt "" @@ -67080,7 +67080,7 @@ "par_id241020160008308885\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required." -msgstr "" +msgstr "Startdatum is de datum van waaraf de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag in de berekening meegenomen. Dit is vereist." #: func_workdays.intl.xhp msgctxt "" @@ -67088,7 +67088,7 @@ "par_id241020160008305329\n" "help.text" msgid "Days is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date." -msgstr "" +msgstr "Dagen is het aantal werkdagen. Positieve waarden voor een resultaat na de startdatum, negatieve waarden voor een resultaat voor de startdatum." #: func_workdays.intl.xhp msgctxt "" @@ -67096,7 +67096,7 @@ "hd_id241020160012172138\n" "help.text" msgid "Example" -msgstr "" +msgstr "Voorbeeld" #: func_workdays.intl.xhp msgctxt "" @@ -67136,7 +67136,7 @@ "par_id24102016001217206\n" "help.text" msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7." -msgstr "" +msgstr "Gebruik de weekendparameter 7 om vrijdag en zaterdag als weekenddagen te definieren." #: func_workdays.intl.xhp msgctxt "" @@ -67152,7 +67152,7 @@ "par_id241020160012176149\n" "help.text" msgid "To define Sunday only the weekend day, use the weekend parameter 11." -msgstr "" +msgstr "Gebruik de weekendparameter 11 om zondag alleen als weekenddag te definieren." #: func_workdays.intl.xhp msgctxt "" @@ -67216,7 +67216,7 @@ "par_id241030160012187036\n" "help.text" msgid "WORKDAYS" -msgstr "" +msgstr "WERKDAGEN" #: func_workdays.intl.xhp msgctxt "" @@ -67224,7 +67224,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_year.xhp msgctxt "" @@ -67998,7 +67998,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Sampling" -msgstr "" +msgstr "Kies Gegevens - Statistieken - Steekproefneming" #: statistics.xhp msgctxt "" @@ -69798,7 +69798,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Regression" -msgstr "" +msgstr "Kies Gegevens - Statistieken - Regressie" #: statistics_regression.xhp msgctxt "" @@ -69825,7 +69825,6 @@ msgstr "Stel het soort regressie in. Er zijn drie soorten beschikbaar:" #: statistics_regression.xhp -#, fuzzy msgctxt "" "statistics_regression.xhp\n" "par_id1701201620334364\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 14:48+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-24 19:23+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467816527.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493061806.000000\n" #: 01020000.xhp msgctxt "" @@ -739,7 +739,7 @@ "17\n" "help.text" msgid "Shift+CommandCtrl+F4" -msgstr "" +msgstr "Shift+CommandoCtrl+F4" #: 01020000.xhp msgctxt "" @@ -757,7 +757,7 @@ "19\n" "help.text" msgid "F4" -msgstr "" +msgstr "F4" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-02-26 10:21+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-24 19:45+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104483.000000\n" +"X-POOTLE-MTIME: 1493063156.000000\n" #: address_auto.xhp msgctxt "" @@ -1242,7 +1242,7 @@ "par_id3149207\n" "help.text" msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the Data menu, the menu item Calculate - AutoCalculate is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet." -msgstr "" +msgstr "De tijd sinds uw geboortedatum wordt berekend en weergegeven in de verschillende eenheden. De waarden worden berekend vanaf het moment dat u op de laatse formule ingaf en op de Enter-toets drukte. Deze waarde wordt niet automatisch bijgewerkt, hoewel \"NU\" natuurlijk steeds verandert. In het menu Gegevens, is het menu-item Berekenen - Automatisch berekenen normaal gesproken actief. Automatisch berekenen werkt echter niet bij de functie NU. Als dat wel zo was, was uw computer constant bezig het blad bij te werken." #: calc_series.xhp msgctxt "" @@ -1872,7 +1872,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed / viewed / printed according to your settings in the Format - Cells dialog, choose Tools - Protect Sheet." -msgstr "" +msgstr "Kies Extra - Blad beveiligen om te voorkomen dat de cellen volgens uw instellingen in het dialoogvenster Opmaak - Cellen gewijzigd / bekeken / afgedrukt worden." #: cell_protect.xhp msgctxt "" @@ -1947,7 +1947,7 @@ "par_id3149656\n" "help.text" msgid "Select Tools - Protect Sheet or Tools - Protect Spreadsheet to remove the check mark indicating the protected status." -msgstr "" +msgstr "Selecteer Extra - Blad beveiligen of Extra - Werkblad beveiligen om de controlemarkering van de beveiligingsstatus te verwijderen." #: cell_unprotect.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "40\n" "help.text" msgid "Choose Sheet - Link to External Data. The External Data dialog appears." -msgstr "" +msgstr "Kies Blad - Koppeling naar externe gegevens. Het dialloogvensterExterne gegevens opent." #: cellreferences_url.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/scalc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-04-27 06:44+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-13 21:50+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1461739466.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492120256.000000\n" #: main0000.xhp msgctxt "" @@ -165,7 +165,7 @@ "hd_id0914201502131542\n" "help.text" msgid "Object" -msgstr "Object" +msgstr "Object" #: main0103.xhp msgctxt "" @@ -365,7 +365,7 @@ "par_id3145171\n" "help.text" msgid "The Format menu contains commands for formatting selected cells, objects, and cell contents in your document." -msgstr "Het menu Opmaak bevat opdrachten voor het opmaken van geselecteerde cellen, objecten en de celinhoud in uw document." +msgstr "Het menu Opmaak bevat opdrachten voor het opmaken van geselecteerde cellen, objecten en de celinhoud in uw document." #: main0105.xhp msgctxt "" @@ -524,7 +524,7 @@ "par_id3150398\n" "help.text" msgid "Contains commands for manipulating and displaying document windows." -msgstr "Bevat opdrachten voor het manipuleren en weergeven van documentvensters." +msgstr "Bevat opdrachten voor het manipuleren en weergeven van documentvensters." #: main0112.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sdraw.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sdraw.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/sdraw.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sdraw.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-07 10:56+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-13 21:54+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786595.000000\n" +"X-POOTLE-MTIME: 1492120483.000000\n" #: main0000.xhp msgctxt "" @@ -30,7 +30,7 @@ "hd_id3155960\n" "help.text" msgid "Welcome to the $[officename] Draw Help" -msgstr "" +msgstr "Welkom bij de Help van $[officename] Draw" #: main0000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-02-19 09:44+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-02 21:01+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487497465.000000\n" +"X-POOTLE-MTIME: 1493758891.000000\n" #: 00000001.xhp msgctxt "" @@ -617,7 +617,7 @@ "bm_id3150702\n" "help.text" msgid "Internet glossary common terms;Internet glossary glossaries;Internet terms terminology;Internet glossary" -msgstr "" +msgstr "internetwoordenlijst algemene termen; internetwoordenlijst woordenlijsten; internettermen terminologie; internetwoordenlijst" #: 00000002.xhp msgctxt "" @@ -625,7 +625,7 @@ "hd_id3150702\n" "help.text" msgid "Glossary of Internet Terms" -msgstr "" +msgstr "Woordenlijst met internettermen" #: 00000002.xhp msgctxt "" @@ -633,7 +633,7 @@ "par_id3155577\n" "help.text" msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news." -msgstr "" +msgstr "Als u niet vertrouwd bent met internet, zult u onbekende termen tegenkomen, zoals browser, bladwijzer, e-mail, homepage, zoekmachine en vele andere termen. In deze woordenlijst vindt u een aantal van de belangrijkste termen die u kunt tegenkomen op het internet, intranet, in e-mail en nieuws om uw eerste stappen te vergemakkelijken." #: 00000002.xhp msgctxt "" @@ -641,7 +641,7 @@ "hd_id18082016234439503\n" "help.text" msgid "CMIS" -msgstr "" +msgstr "CMIS" #: 00000002.xhp msgctxt "" @@ -657,7 +657,7 @@ "hd_id180820162344393005\n" "help.text" msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: 00000002.xhp msgctxt "" @@ -673,7 +673,7 @@ "hd_id3153146\n" "help.text" msgid "Frames" -msgstr "" +msgstr "Frames" #: 00000002.xhp msgctxt "" @@ -681,7 +681,7 @@ "par_id3157909\n" "help.text" msgid "Frames are useful for designing the layout of HTML pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in Edit - Object when the frame is selected." -msgstr "" +msgstr "Frames zijn handig bij het ontwerpen van de lay-out van HTML-pagina's. $[officename] gebruikt zwevende kaders waarin u objecten kunt plaatsen zoals afbeeldingen, filmbestanden en geluiden. In het contextmenu van een frame worden de opties weergegeven voor het herstellen en bewerken van de frame-inhoud. Sommige opdrachten in contextmenu's worden ook weergegeven in Bewerken - Object als het frame is geselecteerd." #: 00000002.xhp msgctxt "" @@ -689,7 +689,7 @@ "hd_id3147077\n" "help.text" msgid "FTP" -msgstr "" +msgstr "FTP" #: 00000002.xhp msgctxt "" @@ -697,7 +697,7 @@ "par_id3147335\n" "help.text" msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, HTTP (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients." -msgstr "" +msgstr "FTP staat voor File Transfer Protocol en is het standaardoverdrachtsprotocol voor bestanden op het internet. Een FTP-server is een programma op een computer die met het internet is verbonden en waarop de bestanden worden opgeslagen die met behulp van FTP verstuurd moeten worden. Terwijl FTP verantwoordelijk is voor het verzenden en downloaden van internetbestanden, verzorgt HTTP (Hypertext Transfer Protocol) de verbindingsinstellingen en gegevensoverdracht tussen WWW-servers en clients." #: 00000002.xhp msgctxt "" @@ -713,7 +713,7 @@ "hd_id3145609\n" "help.text" msgid "HTML" -msgstr "" +msgstr "HTML" #: 00000002.xhp msgctxt "" @@ -721,7 +721,7 @@ "par_id3161459\n" "help.text" msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from SGML and integrates text, graphics, videos and sound." -msgstr "" +msgstr "HTML (HyperText Markup Language) is een document codetaal die wordt gebruikt als bestandsindeling voor WWW-documenten. De taal is ontleend aan SGML en integreert tekst, afbeeldingen, video's en geluid." #: 00000002.xhp msgctxt "" @@ -729,7 +729,7 @@ "par_id3154346\n" "help.text" msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type Text and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type Text and not with the file type Web pages." -msgstr "" +msgstr "Als u HTML-opdrachten direct wilt invoeren, wanneer u bijvoorbeeld oefeningen uit een van de vele beschikbare HTML-boeken maakt, dient u er rekening mee te houden dat HTML-pagina's zuivere tekstbestanden zijn. Sla uw document op met het documenttype Tekst en geef het de bestandsnaamextensie .HTML. Zorg dat de extensie geen umlaut of andere speciale tekens uit de uitgebreide tekenset bevat. Als u dit bestand later opnieuw wilt openen in $[officename] om de HTML-code te bewerken, moet u het bestand laden met het bestandstype Tekst en niet met het bestandstype Webpagina's." #: 00000002.xhp msgctxt "" @@ -737,7 +737,7 @@ "par_id3153960\n" "help.text" msgid "There are several references on the Internet providing an introduction to the HTML language." -msgstr "" +msgstr "Op het internet kunt u referentiemateriaal vinden met een inleiding tot de HTML-taal." #: 00000002.xhp msgctxt "" @@ -745,7 +745,7 @@ "hd_id3147423\n" "help.text" msgid "HTTP" -msgstr "" +msgstr "HTTP" #: 00000002.xhp msgctxt "" @@ -753,7 +753,7 @@ "par_id3153379\n" "help.text" msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)." -msgstr "" +msgstr "HTTP (Hypertext Transfer Protocol) is een verzendrecord van WWW-documenten tussen WWW-servers (hosts) en browsers (clients)." #: 00000002.xhp msgctxt "" @@ -769,7 +769,7 @@ "hd_id3149290\n" "help.text" msgid "Hyperlink" -msgstr "" +msgstr "Hyperlink" #: 00000002.xhp msgctxt "" @@ -777,7 +777,7 @@ "par_id3145420\n" "help.text" msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents." -msgstr "" +msgstr "Hyperlinks zijn kruisverwijzingen, geaccentueerd in tekst van verscheidene kleuren, en worden geactiveerd door een muisklik. Met behulp van hyperlinks kunnen lezers naar specifieke informatie binnen een document springen en naar verwante informatie in andere documenten." #: 00000002.xhp msgctxt "" @@ -785,7 +785,7 @@ "par_id3156281\n" "help.text" msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)." -msgstr "" +msgstr "In $[officename] kunt u hyperlinks aan tekst, evenals afbeeldingen en tekstframes toewijzen (zie het pictogram voor het hyperlink-dialoogvenster op de Standaardbalk)." #: 00000002.xhp msgctxt "" @@ -801,7 +801,7 @@ "hd_id3152805\n" "help.text" msgid "ImageMap" -msgstr "" +msgstr "Imagetoewijzing" #: 00000002.xhp msgctxt "" @@ -809,7 +809,7 @@ "par_id3154685\n" "help.text" msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (URL), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the ImageMap Editor." -msgstr "" +msgstr "Een ImageMap is een verwijzingsgevoelige afbeelding of tekstframe. U kunt op een gedefinieerd gebied van de afbeelding of het tekstframe klikken om naar een doel (URL) te springen dat aan dat gebied is gekoppeld. De verwijzingsgebieden, samen met de gekoppelde URL's en bijbehorende tekst die worden weergegeven wanneer de muisaanwijzer op deze gebieden wordt geplaatst, worden gedefinieerd in de ImageMap-editor." #: 00000002.xhp msgctxt "" @@ -817,7 +817,7 @@ "par_id3153178\n" "help.text" msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the HTML page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap." -msgstr "" +msgstr "Er zijn twee verschillende typen ImageMaps. Een ImageMap aan de clientzijde wordt geanalyseerd op de clientcomputer, waarop de afbeelding vanaf het internet geladen is, terwijl de ImageMap aan de serverzijde wordt geanalyseerd op de computer die de HTML-pagina op het internet aanbiedt. Tijdens de serveranalyse worden bij het klikken op een ImageMap de relatieve coördinaten van de cursor binnen de afbeelding naar de server verzonden, waarop vervolgens door een toegewezen programma op de server gereageerd wordt. Tijdens de clientanalyse wordt bij het klikken op een gedefinieerde hotspot van de ImageMap de URL geactiveerd, alsof het een normale tekstkoppeling is. De URL verschijnt onder de muisaanwijzer wanneer deze over de ImageMap bewogen wordt." #: 00000002.xhp msgctxt "" @@ -825,7 +825,7 @@ "par_id3150740\n" "help.text" msgid "As ImageMaps can be used in different ways, they can be stored in different formats." -msgstr "" +msgstr "Aangezien ImageMaps op verschillende manieren kunnen worden gebruikt, kunnen ze in verschillende indelingen worden opgeslagen." #: 00000002.xhp msgctxt "" @@ -833,7 +833,7 @@ "hd_id3146874\n" "help.text" msgid "ImageMap Formats" -msgstr "" +msgstr "Indelingen voor ImageMaps" #: 00000002.xhp msgctxt "" @@ -841,7 +841,7 @@ "par_id3145153\n" "help.text" msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer." -msgstr "" +msgstr "ImageMaps kunnen worden onderverdeeld in twee groepen: de ImageMaps die worden geanalyseerd op de server (uw internetprovider) en de ImageMaps die worden geanalyseerd op de webbrowser op de computer van de lezer." #: 00000002.xhp msgctxt "" @@ -857,7 +857,7 @@ "hd_id3152881\n" "help.text" msgid "Server Side ImageMaps" -msgstr "" +msgstr "ImageMaps aan serverzijde" #: 00000002.xhp msgctxt "" @@ -865,7 +865,7 @@ "par_id3153057\n" "help.text" msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:" -msgstr "" +msgstr "ImageMaps aan de serverzijde verschijnen voor de lezer als een afbeelding of frame op de pagina. Klik met de muis op de ImageMap, waarna de coördinaten van de relatieve positie naar de server worden verzonden. Met behulp van een extra programma wordt op de server bepaald wat de volgende stap is. Er zijn verschillende niet-compatibele methoden om deze verwerking te definiëren, de twee meest gebruikelijke zijn:" #: 00000002.xhp msgctxt "" @@ -873,7 +873,7 @@ "par_id3147502\n" "help.text" msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)" -msgstr "" +msgstr "W3C (CERN) HTTP-server (bestandstype: MAP - CERN)" #: 00000002.xhp msgctxt "" @@ -881,7 +881,7 @@ "par_id3154011\n" "help.text" msgid "NCSA HTTP Server (Format type: MAP - NCSA)" -msgstr "" +msgstr "NCSA HTTP-server (bestandstype: MAP - NCSA)" #: 00000002.xhp msgctxt "" @@ -889,7 +889,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "" +msgstr "$[officename] maakt voor beide methoden ImageMaps. Selecteer de indeling in de keuzelijst Bestandstype van het dialoogvenster Opslaan als in de ImageMap-editor. Er worden afzonderlijke Map-bestanden gemaakt die u moet uploaden naar de server. U moet uw provider of netwerkbeheerder vragen welk type ImageMap wordt ondersteund door de server en hoe u toegang krijgt tot het evaluatieprogramma." #: 00000002.xhp msgctxt "" @@ -905,7 +905,7 @@ "hd_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "" +msgstr "ImageMaps aan clientzijde" #: 00000002.xhp msgctxt "" @@ -913,7 +913,7 @@ "par_id3151290\n" "help.text" msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked URL when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time." -msgstr "" +msgstr "Het gebied van de afbeelding of frame waar de lezer kan klikken wordt aangegeven bij het verschijnen van de gekoppelde URL als de muis over het gebied wordt bewogen. De ImageMap is opgeslagen in een laag onder de afbeelding en bevat informatie over de gebieden waarnaar verwezen wordt. Het enige nadeel van Client Side ImageMaps is dat oudere webbrowsers ze niet kunnen lezen; een nadeel dat echter in de loop van de tijd vanzelf verdwijnt." #: 00000002.xhp msgctxt "" @@ -921,7 +921,7 @@ "par_id3149664\n" "help.text" msgid "When saving the ImageMap, select the file type SIP - StarView ImageMap. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click Apply. Nothing more is necessary. Client Side ImageMaps saved in HTML format are inserted directly into the page in HTML code." -msgstr "" +msgstr "Bij het opslaan van de ImageMap selecteert u het bestandstype SIP - StarView ImageMap. Hiermee wordt de ImageMap rechtstreeks opgeslagen in een indeling die op elke actieve afbeelding of elk actief frame in het document kan worden toegepast. Als u de ImageMap echter alleen wilt gebruiken voor de huidige afbeelding of het huidige tekstframe, hoeft u deze niet in een speciale indeling op te slaan. Na het definiëren van de gebieden klikt u eenvoudig op Toepassen. Meer is niet nodig. ImageMaps aan de clientzijde die zijn opgeslagen in de HTML-indeling, worden direct in HTML-code op de pagina ingevoegd." #: 00000002.xhp msgctxt "" @@ -937,7 +937,7 @@ "hd_id3159125\n" "help.text" msgid "Java" -msgstr "" +msgstr "Java" #: 00000002.xhp msgctxt "" @@ -945,7 +945,7 @@ "par_id3153188\n" "help.text" msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"." -msgstr "" +msgstr "De programmeertaal Java is een platform onafhankelijke programmeertaal die speciaal geschikt is voor gebruik op het internet. Webpagina's en toepassingen die zijn geprogrammeerd zijn met Java klassebestanden kunnen op alle moderne besturingssystemen worden gebruikt. Programma's die de programmeertaal Java gebruiken worden gewoonlijk ontwikkeld in een Java-ontwikkelomgeving en dan gecompileerd tot een \"bytecode\"." #: 00000002.xhp msgctxt "" @@ -953,7 +953,7 @@ "hd_id3145647\n" "help.text" msgid "Proxy" -msgstr "" +msgstr "Proxy" #: 00000002.xhp msgctxt "" @@ -961,7 +961,7 @@ "par_id3148455\n" "help.text" msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy." -msgstr "" +msgstr "Een proxy is een computer in het netwerk die optreedt als een soort klembord voor gegevensoverdracht. Telkens wanneer u internet bezoekt vanaf een bedrijfsnetwerk en een webpagina opvraagt die al is gelezen door een collega, kan de pagina sneller worden weergegeven dankzij de proxy, zolang die pagina nog in het geheugen is opgeslagen. Alles wat in dat geval gecontroleerd moet worden is of de pagina die is opgeslagen op de proxy, de laatste versie is. Als dit het geval is, hoeft de pagina niet te worden gedownload van het veel langzamere internet, maar kan de pagina direct vanaf de proxy worden geladen." #: 00000002.xhp msgctxt "" @@ -977,7 +977,7 @@ "hd_id3154729\n" "help.text" msgid "SGML" -msgstr "" +msgstr "SGML" #: 00000002.xhp msgctxt "" @@ -985,7 +985,7 @@ "par_id3147330\n" "help.text" msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used." -msgstr "" +msgstr "SGML staat voor \"Standard Generalized Markup Language\". SGML is gebaseerd op het idee dat documenten structurele en andere semantische elementen hebben die kunnen worden beschreven zonder verwijzingen naar hoe die elementen zouden moeten worden weergegeven. De werkelijke weergave van dergelijke documenten kan variëren, afhankelijk van het uitvoermedium en de opmaakvoorkeuren. In gestructureerde teksten definieert SGML niet alleen structuren (in de DTD = Document Type Definition), maar zorgt er ook voor dat zij consistent worden gebruikt." #: 00000002.xhp msgctxt "" @@ -993,7 +993,7 @@ "par_id3148747\n" "help.text" msgid "HTML is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages." -msgstr "" +msgstr "HTML is een gespecialiseerde toepassing van SGML. Dit betekent dat de meeste webbrowsers alleen een beperkt bereik van SGML-standaarden ondersteunen en dat bijna alle SGML-geschikte systemen aantrekkelijke HTML-pagina's kunnen produceren." #: 00000002.xhp msgctxt "" @@ -1009,7 +1009,7 @@ "hd_id3153950\n" "help.text" msgid "Search Engines" -msgstr "" +msgstr "Zoekmachines" #: 00000002.xhp msgctxt "" @@ -1017,7 +1017,7 @@ "par_id3157965\n" "help.text" msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words." -msgstr "" +msgstr "Een zoekmachine is een service op internet, gebaseerd op een softwareprogramma, dat wordt gebruikt om een grote hoeveelheid informatie met behulp van sleutelwoorden te doorzoeken" #: 00000002.xhp msgctxt "" @@ -1033,7 +1033,7 @@ "hd_id3150751\n" "help.text" msgid "Tags" -msgstr "" +msgstr "Labels" #: 00000002.xhp msgctxt "" @@ -1041,7 +1041,7 @@ "par_id3156360\n" "help.text" msgid "HTML pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags

at the beginning and

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

aan het begin en

aan het eind van de titel. Sommige tags verschijnen alleen, zonder sluitingstags, zoals
voor een regeleinde of om een afbeelding te koppelen." #: 00000002.xhp msgctxt "" @@ -1057,7 +1057,7 @@ "hd_id3153766\n" "help.text" msgid "URL" -msgstr "" +msgstr "URL" #: 00000002.xhp msgctxt "" @@ -1065,7 +1065,7 @@ "par_id3152931\n" "help.text" msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address." -msgstr "" +msgstr "De URL (Uniform Resource Locator) geeft het adres weer van een document of een server op internet. De algemene structuur van een URL varieert afhankelijk van het type, en ziet er meestal als volgt uit Service://Hostnaam:Poort/Pad/Pagina#Markering, hoewel niet alle elementen altijd nodig zijn. Een URL kan een FTP-adres, een WWW (HTTP)-adres, een bestandsadres of een e-mailadres zijn." #: 00000003.xhp msgctxt "" @@ -3106,7 +3106,7 @@ "197\n" "help.text" msgid "If, in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, you select Mozilla Firefox, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (CSS stands for Cascading Style Sheets.) Importing is also carried out according to this standard." -msgstr "Als u via %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit
, Mozilla Firefox, MS Internet Explorer of $[officename] Writer als exportoptie selecteert, worden bij het exporteren alle belangrijke attributen voor lettertypen geëxporteerd als directe attributen (bijvoorbeeld tekstkleur, tekengrootte, vet, cursief, enzovoort) in CSS1-opmaakprofielen. (CSS staat voor Cascading Style Sheets.) Importeren wordt ook volgens deze standaard uitgevoerd." +msgstr "Als u via %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit
, Mozilla Firefox, MS Internet Explorer of $[officename] Writer als exportoptie selecteert, worden bij het exporteren alle belangrijke attributen voor lettertypen geëxporteerd als directe attributen (bijvoorbeeld tekstkleur, tekengrootte, vet, cursief, enzovoort) in CSS1-opmaakprofielen. (CSS staat voor Cascading Style Sheets.) Importeren wordt ook volgens deze standaard uitgevoerd." #: 00000020.xhp msgctxt "" @@ -3367,7 +3367,7 @@ "224\n" "help.text" msgid "If, in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the
    and
      tags. The property indicates the difference relative to the indent of the next higher level." -msgstr "Als in %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, de exportoptie \"$[officename] Writer\" of \"Internet Explorer\" is geselecteerd, worden de inspringingen bij opsommingen geëxporteerd als CSS1-eigenschap \"margin-left\" in het STYLE-attribuut van de tags
        en
          . De eigenschap geeft het relatieve verschil aan ten opzichte van de inspringing van het volgende hogere niveau." +msgstr "Als in %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, de exportoptie \"$[officename] Writer\" of \"Internet Explorer\" is geselecteerd, worden de inspringingen bij opsommingen geëxporteerd als CSS1-eigenschap \"margin-left\" in het STYLE-attribuut van de tags
            en
              . De eigenschap geeft het relatieve verschil aan ten opzichte van de inspringing van het volgende hogere niveau." #: 00000020.xhp msgctxt "" @@ -10116,7 +10116,7 @@ "par_id3163822\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Borders tab" -msgstr "" +msgstr "Kies de tabOpmaak - Frame en object - Eigenschappen - Randen" #: 00040500.xhp msgctxt "" @@ -10212,7 +10212,7 @@ "par_id3150592\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Area tab" -msgstr "" +msgstr "Kies de tabOpmaak - Frame en object - Eigenschappen - Oppervlak" #: 00040500.xhp msgctxt "" @@ -10620,7 +10620,7 @@ "par_id3151254\n" "help.text" msgid "Choose Format - Text or Format - Text - Change Case" -msgstr "" +msgstr "Kies Opmaak - Tekst of Opmaak - Tekst - Wijzig hoofdletters" #: 00040500.xhp msgctxt "" @@ -13278,7 +13278,7 @@ "tit\n" "help.text" msgid "Gallery context menu" -msgstr "Gallery-contextmenu" +msgstr "Galerij-contextmenu" #: 01010000.xhp msgctxt "" @@ -13287,7 +13287,7 @@ "1\n" "help.text" msgid "Gallery context menu" -msgstr "Gallery-contextmenu" +msgstr "Galerij-contextmenu" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-14 08:16+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-02 21:14+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484381765.000000\n" +"X-POOTLE-MTIME: 1493759671.000000\n" #: 01010000.xhp msgctxt "" @@ -172,7 +172,7 @@ "66\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Maakt een nieuw presentatie document ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -434,7 +434,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Maakt een nieuw presentatiedocument ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -2176,7 +2176,7 @@ "hd_id3146936\n" "help.text" msgid "Open" -msgstr "" +msgstr "Openen" #: 01020000.xhp msgctxt "" @@ -2184,7 +2184,7 @@ "par_id3151191\n" "help.text" msgid "Opens, opens a remote file or imports a file. " -msgstr "" +msgstr "Opent een lokaal bestand, opent een bestand op een server of importeert een bestand." #: 01020000.xhp msgctxt "" @@ -2192,7 +2192,7 @@ "par_id3149877\n" "help.text" msgid "The following sections describe the %PRODUCTNAME Open dialog box. To activate the %PRODUCTNAME Open and Save dialog boxes, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME- General, and then select the Use %PRODUCTNAME dialogs in the Open/Save dialogs area." -msgstr "" +msgstr "De volgende secties beschrijven het dialoogvenster %PRODUCTNAME Openen. Om de dialoogvensters %PRODUCTNAME Openen en Opslaan te gebruiken, kies %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME- Algemeen, en selecteer dan de Gebruik %PRODUCTNAME dialoogvensters in het gebied Dialoogvensters Openen/Opslaan." #: 01020000.xhp msgctxt "" @@ -2200,7 +2200,7 @@ "par_id3150713\n" "help.text" msgid "If the file that you want to open contains Styles, special rules apply." -msgstr "" +msgstr "Als het bestand dat u wilt openen, opmaakprofielen bevat, zijn er speciale regels van toepassing." #: 01020000.xhp msgctxt "" @@ -2208,7 +2208,7 @@ "hd_id3147250\n" "help.text" msgid "Up One Level" -msgstr "" +msgstr "Eén niveau hoger" #: 01020000.xhp msgctxt "" @@ -2216,7 +2216,7 @@ "par_id3147226\n" "help.text" msgid "Move up one folder in the folder hierarchy. Long-click to see the higher level folders." -msgstr "" +msgstr "Ga één map in de mapstructuur omhoog. Houd de muisknop lang ingedrukt om de mappen op hogere niveaus te bekijken." #: 01020000.xhp msgctxt "" @@ -2224,7 +2224,7 @@ "hd_id3145211\n" "help.text" msgid "Create New Folder" -msgstr "" +msgstr "Nieuwe map maken" #: 01020000.xhp msgctxt "" @@ -2232,7 +2232,7 @@ "par_id3153681\n" "help.text" msgid "Creates a new folder." -msgstr "" +msgstr "Maakt een nieuwe map aan." #: 01020000.xhp msgctxt "" @@ -2240,7 +2240,7 @@ "hd_id3148538\n" "help.text" msgid "Display area" -msgstr "" +msgstr "Weergavevenster" #: 01020000.xhp msgctxt "" @@ -2248,7 +2248,7 @@ "par_id3156113\n" "help.text" msgid "Displays the files and folders in the folder that you are in. To open a file, select the file, and then click Open." -msgstr "" +msgstr "Geeft de bestanden en submappen in de map weer waarin u zich bevindt. Wanneer u een bestand wilt openen, selecteert u het en klikt u vervolgens op Openen." #: 01020000.xhp msgctxt "" @@ -2256,7 +2256,7 @@ "par_id3159256\n" "help.text" msgid "To open more than one document at the same time, each in an own window, hold Command Ctrl while you click the files, and then click Open." -msgstr "" +msgstr "Houdt CommandCtrl ingedrukt terwijl u op de bestanden klikt en klik dan op Openen om meer dan één document op hetzelfde moment, elk in een eigen venster, te openen." #: 01020000.xhp msgctxt "" @@ -2264,7 +2264,7 @@ "par_id3154514\n" "help.text" msgid "Click a column header to sort the files. Click again to reverse the sort order." -msgstr "" +msgstr "Klik op een kolomkop om de bestanden te sorteren. Klik opnieuw om de sorteervolgorde om te keren." #: 01020000.xhp msgctxt "" @@ -2272,7 +2272,7 @@ "par_id3149514\n" "help.text" msgid "To delete a file, right-click the file, and then choose Delete." -msgstr "" +msgstr "Wanneer u een bestand wilt verwijderen, klikt u er met de rechtermuisknop op en kiest u vervolgens Verwijderen." #: 01020000.xhp msgctxt "" @@ -2280,7 +2280,7 @@ "par_id3147618\n" "help.text" msgid "To rename a file, right-click the file, and then choose Rename." -msgstr "" +msgstr "Wanneer u een bestand wilt hernoemen, klikt u met de rechtermuisknop op het bestand en kiest u vervolgens Naam wijzigen." #: 01020000.xhp msgctxt "" @@ -2288,7 +2288,7 @@ "par_id3153331\n" "help.text" msgid "Click to delete the file with the name shown in this dialog." -msgstr "" +msgstr "Klik hierop om het bestand te verwijderen waarvan de naam in dit dialoogvenster wordt getoond." #: 01020000.xhp msgctxt "" @@ -2296,7 +2296,7 @@ "par_id3161458\n" "help.text" msgid "Click to cancel deletion of the file with the name shown in this dialog." -msgstr "" +msgstr "Klik hierop om verwijdering van het bestand waarvan de naam in dit dialoogvenster wordt getoond, te annuleren." #: 01020000.xhp msgctxt "" @@ -2304,7 +2304,7 @@ "par_id3147531\n" "help.text" msgid "Click to delete all selected files." -msgstr "" +msgstr "Klik hierop om alle geselecteerde bestanden te verwijderen." #: 01020000.xhp msgctxt "" @@ -2312,7 +2312,7 @@ "hd_id3154280\n" "help.text" msgid "File name" -msgstr "" +msgstr "Bestandsnaam" #: 01020000.xhp msgctxt "" @@ -2320,7 +2320,7 @@ "par_id3161656\n" "help.text" msgid "Enter a file name or a path for the file. You can also enter a URL that starts with the protocol name ftp, http, or https." -msgstr "" +msgstr "Voer een bestandsnaam of een pad voor het bestand in. U kunt ook een URL invoeren dat begint met de protocolnaam ftp, http of https." #: 01020000.xhp msgctxt "" @@ -2328,7 +2328,7 @@ "par_id3150541\n" "help.text" msgid "If you want, you can use wildcards in the File name box to filter the list of files that is displayed." -msgstr "" +msgstr "U kunt desgewenst jokertekens in het vakje Bestandsnaam gebruiken om de weergegeven lijst met bestanden te filteren." #: 01020000.xhp msgctxt "" @@ -2336,7 +2336,7 @@ "par_id3153779\n" "help.text" msgid " For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click Open. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name." -msgstr "" +msgstr " Wanneer u bijvoorbeeld alle tekstbestanden in een map wilt weergeven, voert u het jokerteken * met de extensie van het tekstbestand (*.txt) in en klikt u vervolgens op Openen. Gebruik het jokerteken vraagteken (?) om een willekeurig teken aan te duiden, zoals in (??3*.txt), waarbij alleen tekstbestanden met een '3' als het derde teken in de bestandsnaam worden weergegeven." #: 01020000.xhp msgctxt "" @@ -2344,7 +2344,7 @@ "hd_id3145117\n" "help.text" msgid "Version" -msgstr "" +msgstr "Versie" #: 01020000.xhp msgctxt "" @@ -2352,7 +2352,7 @@ "par_id3149291\n" "help.text" msgid "If there are multiple versions of the selected file, select the version that you want to open. You can save and organize multiple versions of a document by choosing File - Versions. The versions of a document are opened in read-only mode." -msgstr "" +msgstr "Als er meerdere versies van het geselecteerde bestand bestaan, selecteert u de versie die u wilt openen. U kunt meerdere versies van een document opslaan en beheren door Bestand - Versies te kiezen. De versies van een document worden in alleen-lezen modus geopend." #: 01020000.xhp msgctxt "" @@ -2360,7 +2360,7 @@ "hd_id3150767\n" "help.text" msgid "File type" -msgstr "" +msgstr "Bestandssoort" #: 01020000.xhp msgctxt "" @@ -2368,7 +2368,7 @@ "par_id3153969\n" "help.text" msgid "Select the file type that you want to open, or select All Files (*) to display a list of all of the files in the folder." -msgstr "" +msgstr "Selecteer het bestandstype dat u wilt openen of selecteer Alle bestanden (*) om een lijst met alle bestanden in de map weer te geven." #: 01020000.xhp msgctxt "" @@ -2376,7 +2376,7 @@ "hd_id3154125\n" "help.text" msgid "Open" -msgstr "" +msgstr "Openen" #: 01020000.xhp msgctxt "" @@ -2384,7 +2384,7 @@ "par_id3152933\n" "help.text" msgid "Opens the selected document(s)." -msgstr "" +msgstr "Opent de geselecteerde documenten." #: 01020000.xhp msgctxt "" @@ -2392,7 +2392,7 @@ "hd_id3147085\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Invoegen" #: 01020000.xhp msgctxt "" @@ -2400,7 +2400,7 @@ "par_id3156293\n" "help.text" msgid "If you opened the dialog by choosing Insert - File, the Open button is labeled Insert. Inserts the selected file into the current document at the cursor position." -msgstr "" +msgstr "Als u het dialoogvenster hebt geopend door Invoegen - Bestand te kiezen, wordt de knop Openen met Invoegen aangeduid. Voegt het geselecteerde bestand in het huidige document bij de cursorpositie in." #: 01020000.xhp msgctxt "" @@ -2408,7 +2408,7 @@ "hd_id3144762\n" "help.text" msgid "Read-only" -msgstr "" +msgstr "Alleen-lezen" #: 01020000.xhp msgctxt "" @@ -2416,7 +2416,7 @@ "par_id3145785\n" "help.text" msgid "Opens the file in read-only mode." -msgstr "" +msgstr "Opent het document in alleen-lezen modus." #: 01020000.xhp msgctxt "" @@ -2424,7 +2424,7 @@ "hd_id3149984\n" "help.text" msgid "Play" -msgstr "" +msgstr "Afspelen" #: 01020000.xhp msgctxt "" @@ -2432,7 +2432,7 @@ "par_id3147289\n" "help.text" msgid "Plays the selected sound file. Click again to stop playing the sound file." -msgstr "" +msgstr "Speelt het geselecteerde geluidsbestand af. Klik opnieuw om het afspelen van het geluidsbestand te stoppen." #: 01020000.xhp msgctxt "" @@ -2440,7 +2440,7 @@ "hd_id3149260\n" "help.text" msgid "Opening Documents With Templates" -msgstr "" +msgstr "Documenten met sjablonen openen" #: 01020000.xhp msgctxt "" @@ -2448,7 +2448,7 @@ "par_id3145367\n" "help.text" msgid "%PRODUCTNAME recognizes templates that are located in any folder from the following list:" -msgstr "" +msgstr "%PRODUCTNAME herkent sjablonen die zijn opgeslagen in een map uit de volgende lijst:" #: 01020000.xhp msgctxt "" @@ -2456,7 +2456,7 @@ "par_id3151292\n" "help.text" msgid "the shared template folder" -msgstr "" +msgstr "de gedeelde sjabloonmap" #: 01020000.xhp msgctxt "" @@ -2464,7 +2464,7 @@ "par_id3144442\n" "help.text" msgid "the user template folder in the home directory in the Documents and Settings folder" -msgstr "" +msgstr "de sjabloonmap van de gebruiker in de basismapin de map Documents and Settings " #: 01020000.xhp msgctxt "" @@ -2496,7 +2496,7 @@ "par_id3150105\n" "help.text" msgid "When you open a document that was created from a \"sticky template\" (as defined above), %PRODUCTNAME checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document." -msgstr "" +msgstr "Als u een document opent dat gemaakt is met behulp van een \"gekoppeld sjabloon\" (zoals hierboven beschreven), controleert %PRODUCTNAME of het sjabloon gewijzigd is sinds het document het laatst was geopend. Als het sjabloon gewijzigd is, wordt een dialoogvenster weergegeven waarin u kunt selecteren welke profielen toegepast worden op het document." #: 01020000.xhp msgctxt "" @@ -2504,7 +2504,7 @@ "par_id3153096\n" "help.text" msgid "To apply the new styles from the template to the document, click Update Styles." -msgstr "" +msgstr "Wanneer u de nieuwe opmaakprofielen van de sjabloon op het document wilt toepassen, klikt u op Ja." #: 01020000.xhp msgctxt "" @@ -2512,7 +2512,7 @@ "par_id3147581\n" "help.text" msgid "To retain the styles that are currently used in the document, click Keep Old Styles." -msgstr "" +msgstr "Wanneer u de opmaakprofielen wilt behouden die momenteel in het document worden gebruikt, klikt u op Nee." #: 01020000.xhp msgctxt "" @@ -2520,7 +2520,7 @@ "par_id3154988\n" "help.text" msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened." -msgstr "" +msgstr "Als een document met behulp van een sjabloon is gemaakt die niet kan worden gevonden, wordt er een dialoogvenster getoond waarin u wordt gevraagd hoe u de volgende keer dat het document wordt geopend, verder wilt gaan." #: 01020000.xhp msgctxt "" @@ -2528,7 +2528,7 @@ "par_id3151351\n" "help.text" msgid "To break the link between the document and the missing template, click No, otherwise %PRODUCTNAME will look for the template the next time you open the document." -msgstr "" +msgstr "Wanneer u de koppeling tussen het document en de ontbrekende sjabloon wilt verbreken, klikt u op Nee, anders zoekt %PRODUCTNAME de sjabloon wanneer u het document de volgende keer opent." #: 01020000.xhp msgctxt "" @@ -3478,7 +3478,7 @@ "hd_id3149576\n" "help.text" msgid "Template:" -msgstr "" +msgstr "Sjabloon:" #: 01100200.xhp msgctxt "" @@ -3486,7 +3486,7 @@ "par_id3147530\n" "help.text" msgid "Displays the template that was used to create the file." -msgstr "" +msgstr "Geeft de sjabloon weer die is gebruikt om het bestand te maken." #: 01100200.xhp msgctxt "" @@ -3544,7 +3544,7 @@ "hd_id3155342\n" "help.text" msgid "Total editing time:" -msgstr "" +msgstr "Totale bewerkingstijd:" #: 01100200.xhp msgctxt "" @@ -3552,7 +3552,7 @@ "par_id3149795\n" "help.text" msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file." -msgstr "" +msgstr "Geeft de totale tijd weer dat het bestand geopend is geweest voor bewerking. De bewerkingstijd wordt bijgewerkt wanneer u het bestand opslaat." #: 01100200.xhp msgctxt "" @@ -3596,7 +3596,7 @@ "hd_id3154046\n" "help.text" msgid "Reset Properties" -msgstr "" +msgstr "Eigenschappen herstellen" #: 01100200.xhp msgctxt "" @@ -3751,7 +3751,7 @@ "hd_id3153311\n" "help.text" msgid "Cells:" -msgstr "" +msgstr "Cellen" #: 01100400.xhp msgctxt "" @@ -5028,7 +5028,7 @@ "bm_id3147294\n" "help.text" msgid "printers; properties settings; printers properties; printers default printer; setting up printers; default printer page formats; restriction" -msgstr "" +msgstr "printers; eigenschappen instellingen; printers eigenschappen; printers standaardprinter; instellen printers; standaardprinter paginaformaten; beperking" #: 01140000.xhp msgctxt "" @@ -5036,7 +5036,7 @@ "hd_id3147294\n" "help.text" msgid "Printer Settings" -msgstr "" +msgstr "Printer-instellingen" #: 01140000.xhp msgctxt "" @@ -5052,7 +5052,7 @@ "par_id3148620\n" "help.text" msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects." -msgstr "" +msgstr "U kunt een kleine vertraging ondervinden wanneer u de standaardprinter voor een document met ingesloten $[officename] OLE-objecten wijzigt." #: 01140000.xhp msgctxt "" @@ -5060,7 +5060,7 @@ "hd_id3145345\n" "help.text" msgid "Printer" -msgstr "" +msgstr "Printer" #: 01140000.xhp msgctxt "" @@ -5068,7 +5068,7 @@ "par_id3145211\n" "help.text" msgid "Lists the information that applies to the selected printer." -msgstr "" +msgstr "Lijst met informatie van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5076,7 +5076,7 @@ "par_id3148538\n" "help.text" msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer." -msgstr "" +msgstr "Als de lijst leeg is, moet u een standaardprinter voor uw besturingssysteem installeren. Raadpleeg de online-Help van uw besturingssysteem voor instructies over het installeren en instellen van een standaardprinter." #: 01140000.xhp msgctxt "" @@ -5084,7 +5084,7 @@ "hd_id3154381\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #: 01140000.xhp msgctxt "" @@ -5100,7 +5100,7 @@ "hd_id3156153\n" "help.text" msgid "Status" -msgstr "" +msgstr "Status" #: 01140000.xhp msgctxt "" @@ -5108,7 +5108,7 @@ "par_id3150465\n" "help.text" msgid "Describes the current status of the selected printer." -msgstr "" +msgstr "Beschrijft de huidige status van de geslecteerde printer." #: 01140000.xhp msgctxt "" @@ -5116,7 +5116,7 @@ "hd_id3154898\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #: 01140000.xhp msgctxt "" @@ -5124,7 +5124,7 @@ "par_id3156326\n" "help.text" msgid "Displays the type of printer that you selected." -msgstr "" +msgstr "Toont het type van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5132,7 +5132,7 @@ "hd_id3149416\n" "help.text" msgid "Location" -msgstr "" +msgstr "Locatie" #: 01140000.xhp msgctxt "" @@ -5140,7 +5140,7 @@ "par_id3149955\n" "help.text" msgid "Displays the port for the selected printer." -msgstr "" +msgstr "Toont de poort van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5148,7 +5148,7 @@ "hd_id3145316\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Notitie" #: 01140000.xhp msgctxt "" @@ -5156,7 +5156,7 @@ "par_id3155923\n" "help.text" msgid "Displays additional information for the printer." -msgstr "" +msgstr "Toont aanvullende informatie van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5164,7 +5164,7 @@ "hd_id3149669\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #: 01140000.xhp msgctxt "" @@ -5172,7 +5172,7 @@ "par_id3149045\n" "help.text" msgid "Changes the printer settings of your operating system for the current document." -msgstr "" +msgstr "Wijzigt de printerinstellingen van uw besturingssysteem voor het huidige document." #: 01140000.xhp msgctxt "" @@ -5180,7 +5180,7 @@ "par_id3157322\n" "help.text" msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing Format - Page." -msgstr "" +msgstr "Zorg ervoor dat de layout-optie Liggend of Staand die in het dialoogvenster met printereigenschappen is ingesteld, overeenkomt met het paginaformaat dat u instelt door Opmaak - Pagina te kiezen." #: 01140000.xhp msgctxt "" @@ -5188,7 +5188,7 @@ "hd_id201612110303091265\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opties" #: 01140000.xhp msgctxt "" @@ -5204,7 +5204,7 @@ "par_id3157323\n" "help.text" msgid "The Options button is only available in %PRODUCTNAME Writer and Calc." -msgstr "" +msgstr "De knop Opties is alleen beschikbaar in %PRODUCTNAME Writer en Calc." #: 01160000.xhp msgctxt "" @@ -5534,7 +5534,7 @@ "par_id3151299\n" "help.text" msgid "Closes all $[officename] programs and prompts you to save your changes. This command does not exist on Mac OS X systems." -msgstr "" +msgstr "Sluit alle $[officename]-toepassingen en vraagt u om uw wijzigingen op te slaan. Deze opdracht komt niet voor op Mac OS X systemen." #: 01170000.xhp msgctxt "" @@ -6726,7 +6726,7 @@ "par_id3149893\n" "help.text" msgid "Finds or replaces text or formats in the current document." -msgstr "" +msgstr "Zoekt en vervangt tekstopmaakprofielen in het huidige document." #: 02100000.xhp msgctxt "" @@ -6758,7 +6758,7 @@ "hd_id3152425\n" "help.text" msgid "Find" -msgstr "" +msgstr "Zoeken" #: 02100000.xhp msgctxt "" @@ -6766,7 +6766,7 @@ "par_id3155805\n" "help.text" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Voer de tekst in dat u wilt zoeken of kies een vorige zoekopdracht in de lijst." #: 02100000.xhp msgctxt "" @@ -6774,7 +6774,7 @@ "par_id3153683\n" "help.text" msgid "Search options are listed under the Find box and in the Other options area of the dialog." -msgstr "" +msgstr "Zoekopties worden genoemd onder het vak Zoeken en in het gedeelte Overige opties van het dialoogvenster." #: 02100000.xhp msgctxt "" @@ -6782,7 +6782,7 @@ "hd_id3154924\n" "help.text" msgid "Match case" -msgstr "" +msgstr "Hoofdlettergevoelig" #: 02100000.xhp msgctxt "" @@ -6798,7 +6798,7 @@ "par_id3154760\n" "help.text" msgid "Distinguishes between uppercase and lowercase characters." -msgstr "" +msgstr "Onderscheid maken tussen hoofdletters en kleine letters." #: 02100000.xhp msgctxt "" @@ -6806,7 +6806,7 @@ "hd_id3148538\n" "help.text" msgid "Entire CellsWhole words only" -msgstr "" +msgstr "Alleen hele cellen Alleen hele woorden" #: 02100000.xhp msgctxt "" @@ -6814,7 +6814,7 @@ "par_id3149579\n" "help.text" msgid "Searches for whole words or cells that are identical to the search text." -msgstr "" +msgstr "Zoeken naar hele woorden of cellen die identiek zijn aan de zoektekst." #: 02100000.xhp msgctxt "" @@ -6830,7 +6830,7 @@ "hd_id3152960\n" "help.text" msgid "All sheets" -msgstr "" +msgstr "Alle bladen" #: 02100000.xhp msgctxt "" @@ -6838,7 +6838,7 @@ "par_id3145619\n" "help.text" msgid "Searches through all of the sheets in the current spreadsheet file." -msgstr "" +msgstr "Zoekt in alle bladen van het huidige werkbladbestand." #: 02100000.xhp msgctxt "" @@ -6854,7 +6854,7 @@ "hd_id3152551\n" "help.text" msgid "Replace" -msgstr "" +msgstr "Vervangen" #: 02100000.xhp msgctxt "" @@ -10849,7 +10849,7 @@ "par_id3150382\n" "help.text" msgid "Displays the image map, so that you can click and edit the hotspots." -msgstr "Geeft de ImageMap weer, zodat u op de hotspots kunt klikken en deze kunt bewerken." +msgstr "Geeft de ImageMap weer, zodat u op de hotspots kunt klikken en deze kunt bewerken." #: 02220000.xhp msgctxt "" @@ -14054,7 +14054,7 @@ "2\n" "help.text" msgid "Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file." -msgstr "Voegt een zwevend kader in het huidige document in. Zwevende kaders worden in HTML-documenten gebruikt om de inhoud van een ander bestand weer te geven." +msgstr "Voegt een zwevend kader in het huidige document in. Zwevende kaders worden in HTML-documenten gebruikt om de inhoud van een ander bestand weer te geven." #: 04160500.xhp msgctxt "" @@ -19215,7 +19215,7 @@ "par_id3155351\n" "help.text" msgid "Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command." -msgstr " Definieer hier de instellingen voor tweeregelig schrijven in Aziatische talen. Selecteer de tekens in uw tekst en kies dan deze opdracht." +msgstr " Definieer hier de instellingen voor tweeregelig schrijven in Aziatische talen. Selecteer de tekens in uw tekst en kies dan deze opdracht." #: 05020600.xhp msgctxt "" @@ -37465,7 +37465,7 @@ "par_id3155271\n" "help.text" msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open." -msgstr "Zoek de %PRODUCTNAME BASIC-bibliotheek die u aan de huidige lijst wilt toevoegen, en klik dan op 'Openen'." +msgstr "Zoek de %PRODUCTNAME BASIC-bibliotheek die u aan de huidige lijst wilt toevoegen, en klik dan op 'Openen'." #: 06130500.xhp msgctxt "" @@ -44986,7 +44986,7 @@ "par_idN1058B\n" "help.text" msgid "Adds the current macro source to the list of trusted sources." -msgstr "Voegt de huidige macrobron aan de lijst van betrouwbare bronnen toe." +msgstr "Voegt de huidige macrobron aan de lijst van betrouwbare bronnen toe." #: securitywarning.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-24 13:22+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-23 10:12+0000\n" +"Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485264130.000000\n" +"X-POOTLE-MTIME: 1492942322.000000\n" #: 01110000.xhp msgctxt "" @@ -13498,7 +13498,7 @@ "6\n" "help.text" msgid "You can remove the current AutoFilter with the Reset Filter/Sorting icon or with Data - Filter - Reset Filter." -msgstr "U kunt de huidige AutoFilter verwijderen met de knop of met Gegevens - Filter - AutoFilter verbergen." +msgstr "U kunt de huidige AutoFilter verwijderen met de knopFilter/sortering herstellen of met Gegevens - Filter - AutoFilter verbergen." #: 12030000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 15:18+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-23 10:13+0000\n" +"Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467818330.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492942385.000000\n" #: 01000000.xhp msgctxt "" @@ -4065,7 +4065,7 @@ "par_id3154894\n" "help.text" msgid "Choose the layout from different templates and styles, and choose landscape or portrait page orientation." -msgstr "Kies de lay-out uit verschillende sjablonen en opmaakprofielen, en kies een horizontale of verticale afdrukstand." +msgstr "Kies de lay-out uit verschillende sjablonen en opmaakprofielen en kies een horizontale of verticale afdrukstand." #: 01100400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-07 10:57+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-23 10:15+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786647.000000\n" +"X-POOTLE-MTIME: 1492942518.000000\n" #: 02000000.xhp msgctxt "" @@ -2625,7 +2625,7 @@ "par_id191120151905584287\n" "help.text" msgid "Parameter names may not contain any of the characters `!\"$%^*()+={}[]@'~#<>?/,. They may not be the same as field names or SQL reserved words. They may be the same as aliases." -msgstr "Namen van parameters mogen niet de karakters `!\"$%^*()+={}[]@'~#<>?/, bevatten. Ze mogen ook niet dezelfde veldnamen hebben als voor SQL gereserveerde woorden. Ze mogen wel hetzelfde zijn als aliassen." +msgstr "Namen van parameters mogen niet de karakters `!\"$%^*()+={}[]@'~#<>?/, bevatten. Ze mogen ook niet dezelfde veldnamen hebben als voor SQL gereserveerde woorden. Ze mogen wel hetzelfde zijn als aliassen." #: 02010100.xhp msgctxt "" @@ -5470,7 +5470,7 @@ "par_id3154422\n" "help.text" msgid "Displays the description for the selected table." -msgstr "Geeft de beschrijving van de geselecteerde tabel weer." +msgstr "Geeft de beschrijving van de geselecteerde tabel weer." #: 11000002.xhp msgctxt "" @@ -5565,7 +5565,7 @@ "par_id3150499\n" "help.text" msgid "Specifies the settings for ODBC databases. This includes your user access data, driver settings, and font definitions." -msgstr "Specificeert de instellingen voor ODBC-databases. Hieronder vallen uw gegevens voor gebruikerstoegang, uw stuurprogramma-instellingen en lettertypedefinities." +msgstr "Specificeert de instellingen voor ODBC-databases. Hieronder vallen uw gegevens voor gebruikerstoegang, uw stuurprogramma-instellingen en lettertypedefinities." #: 11020000.xhp msgctxt "" @@ -5806,7 +5806,7 @@ "par_id3147088\n" "help.text" msgid "Specify the settings for a dBASE database." -msgstr "Specificeer de instellingen voor een dBASE-database." +msgstr "Specificeer de instellingen voor een dBASE-database." #: 11030000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-02-16 11:27+0000\n" +"PO-Revision-Date: 2017-04-23 10:24+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487244425.000000\n" +"X-POOTLE-MTIME: 1492943081.000000\n" #: aaa_start.xhp msgctxt "" @@ -15626,7 +15626,7 @@ "bm_id380260\n" "help.text" msgid "Format Paintbrush clone formatting formatting;copying copying;formatting Paintbrush" -msgstr "Opmaak van Paintbrushklonen;opmaakkopiëren;opmaakPaintbrush" +msgstr "Opmaak van Paintbrush klonen;opmaak opmaak;kopiëren kopiëren;opmaak Paintbrush" #: paintbrush.xhp msgctxt "" @@ -16658,7 +16658,7 @@ "bm_id3150499\n" "help.text" msgid "marking changes highlighting changes changes; review function review function; recording changes example Track Changes, see review function" -msgstr "markeren van wijzigingen wijzigingen; wijzigingsfunctie wijzigingsfunctie; voorbeeld wijzigingen vastleggen Wijzigingen bijhouden, zie wijzigingsfunctie" +msgstr "markeren van wijzigingen wijzigingen markeren wijzigingen; wijzigingsfunctie wijzigingsfunctie; voorbeeld wijzigingen vastleggen Wijzigingen bijhouden, zie wijzigingsfunctie" #: redlining.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-24 07:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-23 10:26+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487920817.000000\n" +"X-POOTLE-MTIME: 1492943206.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp @@ -9100,7 +9100,7 @@ "33\n" "help.text" msgid "Specifies a color for the grid lines in the current document. To see the grid line color that was saved with the document, go to %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Application Colors, under Scheme find the entry Spreadsheet - Grid lines and set the color to \"Automatic\"." -msgstr "Stelt de kleur in voor de rasterlijnen in het huidige document. Om de kleur van de rasterlijnen te zien die met het document is opgeslagen, gaat u naar%PRODUCTNAME - PreferencesExtra - Opties - %PRODUCTNAME - Vormgeving, onder Gebruikergedefinieerde kleuren zoek Werkbad - Rasterlijnen en stel de kleur in op \"Automatisch\"." +msgstr "Stelt de kleur in voor de rasterlijnen in het huidige document. Om de kleur van de rasterlijnen te zien die met het document is opgeslagen, gaat u naar%PRODUCTNAME - PreferencesExtra - Opties - %PRODUCTNAME - Vormgeving, onder Gebruikergedefinieerde kleuren zoek Werkbad - Rasterlijnen en stel de kleur in op \"Automatisch\"." #: 01060100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 14:54+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-13 21:55+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467816897.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492120535.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -830,7 +830,7 @@ "hd_id3134447820\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Tabelontwerp" #: main0204.xhp msgctxt "" @@ -846,7 +846,7 @@ "par_id3153752\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Pictogram" #: main0204.xhp msgctxt "" @@ -854,7 +854,7 @@ "par_id3156429\n" "help.text" msgid "Table Design" -msgstr "" +msgstr "Tabelontwerp" #: main0204.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-17 08:06+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 20:15+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487318817.000000\n" +"X-POOTLE-MTIME: 1493669715.000000\n" #: 01170000.xhp msgctxt "" @@ -492,7 +492,7 @@ "2\n" "help.text" msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files." -msgstr "" +msgstr "Opent de Navigator, waar u snel naar andere dia's kunt gaan of u tussen open bestanden kunt schakelen." #: 02110000.xhp msgctxt "" @@ -563,7 +563,7 @@ "12\n" "help.text" msgid "Jumps to the first slide in the slide show." -msgstr "" +msgstr "Springt naar de eerste dia van de presentatie." #: 02110000.xhp msgctxt "" @@ -598,7 +598,7 @@ "15\n" "help.text" msgid "Moves back one slide in the slide show." -msgstr "" +msgstr "Gaat een dia terug in de presentatie." #: 02110000.xhp msgctxt "" @@ -633,7 +633,7 @@ "18\n" "help.text" msgid "Move forward one slide in the slide show." -msgstr "" +msgstr "Gaat een dia verder in de presentatie." #: 02110000.xhp msgctxt "" @@ -668,7 +668,7 @@ "21\n" "help.text" msgid "Jumps to the last slide in the slide show." -msgstr "" +msgstr "Springt naar de laatste dia in de presentatie." #: 02110000.xhp msgctxt "" @@ -703,7 +703,7 @@ "24\n" "help.text" msgid "Drag and drop slides and named objects into the active slide. You can only insert slides and named objects from a saved file. You can only insert named objects as copies." -msgstr "" +msgstr "Sleep dia's en benoemde objectn in een actieve dia.U kunt alleen dia's en benoemde object van een opgeslagen bestand invoegen. U kunt benoemde objecten alleen als kopies invoegen." #: 02110000.xhp msgctxt "" @@ -842,7 +842,7 @@ "37\n" "help.text" msgid "Lists available slides. Double-click a slide to make it the active slide." -msgstr "" +msgstr "Toont de beschikbare dia’s. Dubbelklik op een dia om deze actief te maken." #: 02110000.xhp msgctxt "" @@ -860,7 +860,7 @@ "35\n" "help.text" msgid "Lists available $[officename] files. Select a file to display the contents you can insert." -msgstr "" +msgstr "Toont de beschikbare $[officename]-bestanden. Selecteer een bestand om de inhoud, die u kunt invoegen, weer te geven." #: 02120000.xhp msgctxt "" @@ -2159,7 +2159,7 @@ "par_id083120160418133174\n" "help.text" msgid "Header and footer dialog" -msgstr "" +msgstr "Dialoogvenster Kop- en voettekst" #: 03152000.xhp msgctxt "" @@ -6768,7 +6768,7 @@ "bm_id3153818\n" "help.text" msgid "presentations; settings for slide shows; settings for presentations; window / full screen multiple displays" -msgstr "" +msgstr "presentaties; instellingen voor presentaties; instellingen voor presentaties; venster / volledig scherm meerdere schermen" #: 06080000.xhp msgctxt "" @@ -6856,7 +6856,7 @@ "hd_id3150653\n" "help.text" msgid "Presentation Mode" -msgstr "" +msgstr "Presentatiemodus" #: 06080000.xhp msgctxt "" @@ -6872,7 +6872,7 @@ "hd_id3150482\n" "help.text" msgid "Full screen" -msgstr "" +msgstr "Volledig scherm" #: 06080000.xhp msgctxt "" @@ -6888,7 +6888,7 @@ "hd_id3153034\n" "help.text" msgid "In a window" -msgstr "" +msgstr "In een venster" #: 06080000.xhp msgctxt "" @@ -6904,7 +6904,7 @@ "hd_id3145593\n" "help.text" msgid "Loop and repeat after" -msgstr "" +msgstr "Opnieuw en herhaal na" #: 06080000.xhp msgctxt "" @@ -7008,7 +7008,7 @@ "par_id3150475\n" "help.text" msgid "Anything you write with the pen will appear in your slides after exiting the slideshow. The properties of the pen can be changed by choosing the Pen Width or Change pen Color command in the context menu of the running slide show." -msgstr "" +msgstr "Alles wat u met de pen schrijft, wordt opgeslagen als u de presentatie afsluit. De eigenschappen van de pen kunnen aangepast worden door Penbreedte of Wijzig penkleur te kiezen in het contextmenu van de lopende presentatie." #: 06080000.xhp msgctxt "" @@ -7064,7 +7064,7 @@ "hd_id6086611\n" "help.text" msgid "Multiple Displays" -msgstr "" +msgstr "Meerdere schermen" #: 06080000.xhp msgctxt "" @@ -7072,7 +7072,7 @@ "par_id5446943\n" "help.text" msgid "By default the primary display is used for slide show mode. If the current desktop is displayed on more than one display, you can select which display to use for full screen slide show mode. If the current desktop spans only one display, or if the multi display feature is not supported on the current system, you cannot select another display." -msgstr "" +msgstr "Voor presentatiemodus wordt standaard de primaire monitor gebruikt. Als het huidige bureaublad op meer dan een monitor wordt weergegeven, kunt u selecteren welke monitor u voor presentaties op volledig scherm wilt gebruiken. Als het huidige bureaublad maar één monitor beslaat, of als de functie voor meerdere monitoren op het huidige systeem niet ondersteund wordt, kunt u geen andere monitor selecteren." #: 06080000.xhp msgctxt "" @@ -7080,7 +7080,7 @@ "hd_id4962309\n" "help.text" msgid "Presentation display" -msgstr "" +msgstr "Presentatie-weergave" #: 06080000.xhp msgctxt "" @@ -7088,7 +7088,7 @@ "par_id5168919\n" "help.text" msgid "Select a display to use for full screen slide show mode." -msgstr "" +msgstr "Selecteer een monitor die u voor presentaties op volledig scherm wilt gebruiken." #: 06080000.xhp msgctxt "" @@ -7096,7 +7096,7 @@ "par_id4846339\n" "help.text" msgid "If the system allows the user to span a window over all available displays, you can also select \"All displays\". In this case the presentation is spanned over all available displays." -msgstr "" +msgstr "Als het systeem toestaat dat een gebruiker een venster over alle beschikbare monitoren verspreidt, kunt u ook 'Alle monitoren' selecteren. De presentatie beslaat dan alle beschikbare monitoren." #: 06080000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 10:22+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 20:19+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104558.000000\n" +"X-POOTLE-MTIME: 1493669978.000000\n" #: 3d_create.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3150207\n" "help.text" msgid "3D rotation objects; generating3D objects; generating3D scenes; creatingconverting; to curves, polygons, 3Dextrusion objects" -msgstr "3D-rotatieobjecten; genereren3D-objecten; genererenconverteren; naar bogen, veelhoeken, 3Dextrusieobjecten" +msgstr "3D-rotatieobjecten; genereren3D-objecten; genereren3D-scenes; crmakeneatingconverteren; naar bogen, veelhoeken, 3Dextrusieobjecten" #: 3d_create.xhp msgctxt "" @@ -1178,7 +1178,7 @@ "par_idN1083F\n" "help.text" msgid "Choose File - Templates - Save As Template to save the document as a template." -msgstr "" +msgstr "Kies Bestand - Sjablonen - Opslaan als sjabloon om het document als sjabloon op te slaan." #: background.xhp msgctxt "" @@ -1194,7 +1194,7 @@ "par_idN1084A\n" "help.text" msgid "Now you can use the Templates window to open a new presentation based on your new template." -msgstr "" +msgstr "U kunt nu de Assistent Presentatie gebruiken om een nieuwe presentatie te openen die gebaseerd is op uw nieuwe sjabloon." #: change_scale.xhp msgctxt "" @@ -3528,7 +3528,7 @@ "tit\n" "help.text" msgid "Instructions for Using $[officename] Impress" -msgstr "Instructies voor het gebruik van %PRODUCTNAME Impress" +msgstr "Instructies voor het gebruik van $[officename] Impress" #: main.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "19\n" "help.text" msgid "Select Slide - Slide Master Design." -msgstr "" +msgstr "Selecteer Dia - Masterdia-ontwerp." #: masterpage.xhp msgctxt "" @@ -3704,7 +3704,7 @@ "par_idN106FA\n" "help.text" msgid "Left-click to apply the master page to all slides. Right-click for a submenu." -msgstr "" +msgstr "Klik met de linkermuisknop om de hoofdpagina op alle dia's toe te passen. Klik met de rechtermuisknop voor een submenu." #: masterpage.xhp msgctxt "" @@ -3712,7 +3712,7 @@ "par_idN10747\n" "help.text" msgid "Applies the master page to all slides." -msgstr "" +msgstr "Past de hoofdpagina op alle dia's toe." #: masterpage.xhp msgctxt "" @@ -3720,7 +3720,7 @@ "par_idN10762\n" "help.text" msgid "Applies the master page or the slide design to the selected slides." -msgstr "" +msgstr "Past de hoofdpagina of het dia-ontwerp op de geselecteerde dia's toe." #: masterpage.xhp msgctxt "" @@ -3728,7 +3728,7 @@ "par_idN10785\n" "help.text" msgid "Resizes the preview of the master pages." -msgstr "" +msgstr "Verandert het formaat van het voorbeeld van de hoofdpagina's." #: masterpage.xhp msgctxt "" @@ -3736,7 +3736,7 @@ "par_idN107CB\n" "help.text" msgid "Click to apply a slide design to all selected slides. Right-click for a submenu." -msgstr "" +msgstr "Klik om een dia-ontwerp op alle geselecteerde dia's toe te passen. Klik met de rechtermuisknop voor een submenu." #: masterpage.xhp msgctxt "" @@ -4799,7 +4799,7 @@ "par_id3145248\n" "help.text" msgid "If you want the whole presentation to auto-repeat, open the menu Slide Show - Slide Show Settings. Click Loop and repeat after and OK." -msgstr "" +msgstr "Als u wilt dat de volledige presentatie automatisch wordt herhaald, opent u het menu Presentatie - Instellingen presentatie. Klik op Auto en vervolgens op OK." #: rehearse_timings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2015-11-27 14:07+0000\n" +"PO-Revision-Date: 2017-04-23 10:30+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1448633271.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492943451.000000\n" #: 00000004.xhp msgctxt "" @@ -547,7 +547,7 @@ "par_id3153803\n" "help.text" msgid "Choose Tools - Import MathML from Clipboard" -msgstr "Kies Extra - Formule importeren" +msgstr "Kies Extra - Formule importeren" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 10:22+0000\n" +"PO-Revision-Date: 2017-04-23 10:36+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104562.000000\n" +"X-POOTLE-MTIME: 1492943781.000000\n" #: 00000004.xhp msgctxt "" @@ -360,7 +360,7 @@ "par_id3973244\n" "help.text" msgid "Choose Edit - Direct Cursor Mode" -msgstr "Kies Bewerken - DirctCursormodus" +msgstr "Kies Bewerken - DirctCursormodus" #: 00000403.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-26 10:22+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-05 14:05+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104572.000000\n" +"X-POOTLE-MTIME: 1491401122.000000\n" #: 01120000.xhp msgctxt "" @@ -3688,7 +3688,7 @@ "par_id3147511\n" "help.text" msgid "To specify which non-printing characters are displayed, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids, and then select the options that you want in the Display of area." -msgstr "Kies %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME Writer - Opmaakhulp en selecteer dan de opties die u wilt in het gebied Weergeven vanom te specificeren of niet afdrukbare tekens moeten worden weergegeven." +msgstr "Kies %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME Writer - Opmaakhulp en selecteer dan de opties die u wilt in het gebied Weergeven vanom te specificeren of niet afdrukbare tekens moeten worden weergegeven." #: 03120000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-07 11:00+0000\n" +"PO-Revision-Date: 2017-04-23 10:48+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786810.000000\n" +"X-POOTLE-MTIME: 1492944491.000000\n" #: anchor_object.xhp msgctxt "" @@ -326,7 +326,7 @@ "bm_id3147407\n" "help.text" msgid "numbering; lists, while typing bullet lists;creating while typing lists;automatic numbering numbers;lists automatic bullets/numbers; AutoCorrect function bullets; using automatically paragraphs; automatic numbering" -msgstr "nummering; lijsten, tijdens typen lijsten met opsommingstekens;maken tijdens typen lijsten;automatische nummering getallen;lijsten automatische nummering; functie AutoCorrectie opsomingstekens; automatisch gebruiken automatische opsommingstekens alinea's; automatische nummering" +msgstr "nummering; lijsten, tijdens typen lijsten met opsommingstekens;maken tijdens typen lijsten;automatische nummering getallen;lijsten automatische nummering; functie AutoCorrectie opsomingstekens; automatisch gebruiken alinea's; automatische nummering" #: auto_numbering.xhp msgctxt "" @@ -9961,7 +9961,7 @@ "bm_id3155183\n" "help.text" msgid "page breaks; inserting and deleting inserting; page breaks deleting;page breaks pages; inserting/deleting page breaks manual page breaks tables;deleting page breaks before" -msgstr "pagina-einden; invoegen en verwijderen invoegen; pagina-einden verwijderen;pagina-einden pagina's; pagina-einden invoegen/verwijderen handmatige pagina-einden" +msgstr "pagina-einden; invoegen en verwijderen invoegen; pagina-einden verwijderen;pagina-einden pagina's; pagina-einden invoegen/verwijderen handmatige pagina-einden tabellen;pagina-einden ervoor verwijderen" #: page_break.xhp msgctxt "" @@ -13099,7 +13099,7 @@ "bm_id3149832\n" "help.text" msgid "multi-column text text; multi-column columns; on text pages text columns sections; columns in/use of" -msgstr "tekst in meerdere kolommen tekst; in meerdere kolommen kolommen; op tekstpagina's tekstkolommen secties; opmerkingen secties; in/gebruiken in kolommen" +msgstr "tekst in meerdere kolommen tekst; in meerdere kolommen kolommen; op tekstpagina's tekstkolommen secties; in/gebruiken in kolommen" #: sections.xhp msgctxt "" @@ -13606,7 +13606,7 @@ "par_id0525200902184476\n" "help.text" msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the extensions web page." -msgstr "De toepasselijke woordenboeken moeten zijn geïnstalleerd om de spelling en de grammatica van een tekst te kunnen controleren. Voor veel talen bestaan drie verschillende woordenboeken: een spellingcontrole, een woordenboek voor afbrekingen en een thesaurus. Elk woordenboek is slechts geldig voor één taal. Controles voor grammatica kunnen worden gedownload en geïnstalleerd als extensies. Zie de extensies webpagina." +msgstr "De toepasselijke woordenboeken moeten zijn geïnstalleerd om de spelling en de grammatica van een tekst te kunnen controleren. Voor veel talen bestaan drie verschillende woordenboeken: een spellingcontrole, een woordenboek voor afbrekingen en een thesaurus. Elk woordenboek is slechts geldig voor één taal. Controles voor grammatica kunnen worden gedownload en geïnstalleerd als extensies. Zie de extensies webpagina." #: spellcheck_dialog.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-07 10:59+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-24 20:13+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786772.000000\n" +"X-POOTLE-MTIME: 1493064817.000000\n" #: classificationbar.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Document Classification" -msgstr "" +msgstr "Classificatie van het document" #: classificationbar.xhp msgctxt "" @@ -30,7 +30,7 @@ "hd_id3156324\n" "help.text" msgid "Document Classification " -msgstr "" +msgstr "Classificatie van het document " #: classificationbar.xhp msgctxt "" @@ -46,7 +46,7 @@ "par_id030820161744119967\n" "help.text" msgid "Document classification and security is an important issue for businesses and governments." -msgstr "" +msgstr "De classificatie en beveiliging van documenten is belangrijk onderwerp voor bedrijven en overheden." #: classificationbar.xhp msgctxt "" @@ -54,7 +54,7 @@ "par_id030820161744113553\n" "help.text" msgid "Information is exchanged between users and organizations that collaborate to pursue a business goal. Where sensitive information is involved, it is assumed that the parties will have agreed what information is sensitive and how such information will be identified and handled. Any recipient of a resource will rely upon the provider of the information to follow the agreed procedures to identify the sensitivity of the information." -msgstr "" +msgstr "Informatie wordt uitgewisseld tussen gebruikers en organisaties, die samenwerken om een professioneel doel na te streven. Wanneer gevoelige informatie wordt verwerkt, kan men veronderstellen dat de partijen overeenkomen welke informatie gevoelig is en hoe zulke informatie geïdentificeerd en behandeld wordt. Iedere ontvanger van informatie zal vertrouwen op de leverancier van de informatie dat de afgesproken procedures gevolgd werden om de gevoeligheid van de informatie te identificeren." #: classificationbar.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-17 07:03+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:32+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489734232.000000\n" +"X-POOTLE-MTIME: 1492842740.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -28663,7 +28663,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "Niet-afdrukbare tekens (Ctrl+F10)" +msgstr "Niet-afdrukbare tekens wisselen" #: WriterCommands.xcu msgctxt "" @@ -28672,7 +28672,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "Spati~es verbergen" +msgstr "Witruimt~e verbergen" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-24 10:03+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 08:05+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482573824.000000\n" +"X-POOTLE-MTIME: 1493625911.000000\n" #: filter.src msgctxt "" @@ -11773,7 +11773,9 @@ msgid "" "Rounds number towards zero to the nearest multiple of absolute value of significance.\n" "This function exists for interoperability with Microsoft Excel 2007 or older versions." -msgstr "Rondt een getal naar beneden af, naar het dichtst bijzijnde significante veelvoud. Deze functie bestaat omwille van de interoperabiliteit met Microsoft Excel 2007 of oudere versies." +msgstr "" +"Rondt een getal naar beneden af, naar het dichtst bijzijnde significante veelvoud.\n" +"Deze functie bestaat omwille van de interoperabiliteit met Microsoft Excel 2007 of ouder versies." #: scfuncs.src msgctxt "" @@ -18154,7 +18156,7 @@ "1\n" "string.text" msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." -msgstr "Waarden van de inverse van CHI.KWADR.VERD(x;vrijheidsgraden;WAAR())." +msgstr "Waarden van de inverse van CHIKWADRVERD(x;vrijheidsgraden;WAAR())." #: scfuncs.src msgctxt "" @@ -18199,7 +18201,7 @@ "1\n" "string.text" msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())." -msgstr "Waarden van de inverse van CHI.KWADR.VERD(x;vrijheidsgraden;WAAR())." +msgstr "Waarden van de inverse van CHIKWADR.VERD(x;vrijheidsgraden;WAAR())." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-28 08:56+0000\n" +"PO-Revision-Date: 2017-04-09 07:18+0000\n" "Last-Translator: kees538 \n" "Language-Team: none\n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485593797.000000\n" +"X-POOTLE-MTIME: 1491722336.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -9992,7 +9992,7 @@ "tooltip_text\n" "string.text" msgid "Select a category of contents." -msgstr "Kies inhoudsopgave." +msgstr "Kies een categorie voor de inhoud." #: sidebarnumberformat.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-11-22 10:00+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:33+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448186439.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492842783.000000\n" #: analysis.src msgctxt "" @@ -3072,7 +3072,7 @@ "1\n" "string.text" msgid "Returns the discount rate for a security" -msgstr "Geeft de percentuele korting (disconto) op een waardepapier" +msgstr "Geeft de procentuele korting op een waardepapier" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/scaddins/source/pricing.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/scaddins/source/pricing.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/scaddins/source/pricing.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/scaddins/source/pricing.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-12-17 14:14+0100\n" -"PO-Revision-Date: 2014-02-21 07:56+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-23 09:27+0000\n" +"Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.0\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1392969406.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492939630.000000\n" #: pricing.src msgctxt "" @@ -428,7 +428,7 @@ "19\n" "string.text" msgid "String to define if the option is of type knock-(i)n (touch) or knock-(o)ut (no-touch)" -msgstr "tekst om te definiëren of de optie van type knock-(i)n of knock-(o)ut is" +msgstr "Tekenreeks om te definiëren of de optie van het type knock-(i)n of knock-(o)ut is" #: pricing.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 12:11+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 21:42+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482581484.000000\n" +"X-POOTLE-MTIME: 1492119734.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hiërarchisch" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Gietermodus" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Nieuw opmaakprofiel uit selectie" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Opmaakprofiel bijwerken" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-24 12:22+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 20:00+0000\n" +"Last-Translator: vpanter \n" "Language-Team: none\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482582127.000000\n" +"X-POOTLE-MTIME: 1492632008.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,17 +794,17 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME is beschikbaar gesteld onder de bepalingen van de Mozilla Public License, v. 2.0. Een kopie van de MPL is te vinden op http://mozilla.org/MPL/2.0/.\n" +"%PRODUCTNAME is beschikbaar gesteld onder de bepalingen van d Mozilla Public License, v. 2.0. Een kopie van de MPL is te vinden op http://mozilla.org/MPL/2.0/.\n" "\n" "Additionele copyright meldingen van derde partijen en licentiebepalingen voor delen van de software staan in het bestand LICENSE.html; kies Licentie tonen om de precieze details te zien in het Engels.\n" "\n" "Alle handelsmerken en geregistreerde handelsmerken die hierin worden genoemd zijn het eigendom van hun respectievelijke eigenaars.\n" "\n" -"Copyright © 2000, 2016 LibreOffice medewerkers. Alle rechten voorbehouden.\n" +"Copyright © 2000, 2017 LibreOffice medewerkers. Alle rechten voorbehouden.\n" "\n" "Dit product is gemaakt door %OOOVENDOR, gebaseerd op OpenOffice.org, dat is Copyright 2000, 2011 Oracle en/of haar dochterondernemingen. %OOOVENDOR is erkentelijk voor alle leden van de gemeenschap, zie http://www.libreoffice.org/ voor meer informatie." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-13 08:20+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 21:43+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449994829.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492119788.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Opgemaakte tekst [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 15:02+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 21:43+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482591774.000000\n" +"X-POOTLE-MTIME: 1492119794.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Hongaars (Szekely-Hongaarse Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Engels (Maleisië)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 12:51+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-19 20:02+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482583873.000000\n" +"X-POOTLE-MTIME: 1492632131.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Niet alle SmartArts konden geladen worden. Opslaan in Microsoft Office 2010 of later zou dit probleem vermijden." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2016-12-30 08:01+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-13 21:44+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483084887.000000\n" +"X-POOTLE-MTIME: 1492119843.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "A_fsluiten" +msgid "_Restart in Normal Mode" +msgstr "Heropstarten in _normale modus" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/sw/source/ui/app.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/sw/source/ui/app.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/sw/source/ui/app.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/sw/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 14:08+0000\n" +"PO-Revision-Date: 2017-04-27 09:30+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482588514.000000\n" +"X-POOTLE-MTIME: 1493285433.000000\n" #: app.src msgctxt "" @@ -790,7 +790,7 @@ "STR_FDLG_TEMPLATE_NAME\n" "string.text" msgid "separated by: " -msgstr "gescheiden door: " +msgstr "Gescheiden door: " #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nl/swext/mediawiki/help.po libreoffice-l10n-5.3.3~rc2/translations/source/nl/swext/mediawiki/help.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nl/swext/mediawiki/help.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nl/swext/mediawiki/help.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 15:00+0000\n" +"PO-Revision-Date: 2017-04-07 06:40+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482591632.000000\n" +"X-POOTLE-MTIME: 1491547226.000000\n" #: help.tree msgctxt "" @@ -454,7 +454,7 @@ "par_id8942838\n" "help.text" msgid "Lists can be exported reliably 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 "Lijsten kunnen vertrouwd worden geëxporteerd als de gehele lijst een consistent opmaakprofiel voor lijsten gebruikt. Gebruik het pictogram Nummering aan/uit of Opsommingstekens aan/uit om een lijst in Writer te genereren. In dien u een lijst zonder nummering of opsommingstekens nodig heeft, gebruikt u Opmaak - Nummering/opsommingstekens om een afzonderlijk opmaakprofiel voor lijsten te definiëren en toe te passen." +msgstr "Lijsten kunnen vertrouwd worden geëxporteerd als de gehele lijst een consistent opmaakprofiel voor lijsten gebruikt. Gebruik het pictogram Nummering aan/uit of Opsommingstekens aan/uit om een lijst in Writer te genereren. Indien u een lijst zonder nummering of opsommingstekens nodig heeft, gebruikt u Opmaak - Nummering/opsommingstekens om een afzonderlijk opmaakprofiel voor lijsten te definiëren en toe te passen." #: wikiformats.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id1831110\n" "help.text" msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." -msgstr "Ongeacht de gebruikergedefinieerde tabelopmaak voor randen en achtergrond wordt een tabel altijd geëxporteerd als \"prettytable\", wat er in de wikimachine uitziet als eenvoudige randen en vette kop." +msgstr "Ongeacht de gebruikergedefinieerde tabelopmaak voor randen en achtergrond wordt een tabel altijd geëxporteerd als \"prettytable\", wat er in de wikimachine uitziet als eenvoudige randen en vette kop." #: wikiformats.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-30 16:53+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485795189.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Opphavsrett © 2000 - 2016 LibreOffice-utgjevarane." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-09 19:44+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-03 08:55+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489088696.000000\n" +"X-POOTLE-MTIME: 1493801738.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -8937,7 +8937,7 @@ "par_id3163813\n" "help.text" msgid "=ISEVEN(48) returns TRUE" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ERPARTAL(48) returnerer SANN." #: 04060104.xhp msgctxt "" @@ -8953,7 +8953,7 @@ "par_id7154759\n" "help.text" msgid "=ISEVEN(0) returns TRUE" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ERPARTAL(0) returnerer SANN." #: 04060104.xhp msgctxt "" @@ -11247,7 +11247,7 @@ "par_id3147475\n" "help.text" msgid "ABS(Number)" -msgstr "GAUSS(Tal)" +msgstr "ABS(Tal)" #: 04060106.xhp msgctxt "" @@ -11271,7 +11271,7 @@ "par_id3152787\n" "help.text" msgid "=ABS(-56) returns 56." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(-56) returnerer 56." #: 04060106.xhp msgctxt "" @@ -11279,7 +11279,7 @@ "par_id3148752\n" "help.text" msgid "=ABS(12) returns 12." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(12) returnerer 12." #: 04060106.xhp msgctxt "" @@ -11287,7 +11287,7 @@ "par_id320139\n" "help.text" msgid "=ABS(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12007,7 +12007,7 @@ "par_id3145419\n" "help.text" msgid "=ATANH(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ATANH(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12663,7 +12663,7 @@ "par_id3147525\n" "help.text" msgid "=FACT(0) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=FAKULTET(0) returnerer 1." #: 04060106.xhp msgctxt "" @@ -12815,7 +12815,7 @@ "par_id8477736\n" "help.text" msgid "=EVEN(2) returns 2." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(2) returnerer 2." #: 04060106.xhp msgctxt "" @@ -12823,7 +12823,7 @@ "par_id159611\n" "help.text" msgid "=EVEN(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12831,7 +12831,7 @@ "par_id6097598\n" "help.text" msgid "=EVEN(-0.5) returns -2." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(-0,5 returnerer -2." #: 04060106.xhp msgctxt "" @@ -13191,7 +13191,7 @@ "par_id3153517\n" "help.text" msgid "=COMBIN(3;2) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=KOMBINASJON(3;2) returnerer 3." #: 04060106.xhp msgctxt "" @@ -13279,7 +13279,7 @@ "par_id3152904\n" "help.text" msgid "=COMBINA(3;2) returns 6." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=KOMBINASJONA(3;2) returnerer 6." #: 04060106.xhp msgctxt "" @@ -13439,7 +13439,7 @@ "par_id5747245\n" "help.text" msgid "=LN(EXP(321)) returns 321." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=LN(EKSP(321)) returnerer 321." #: 04060106.xhp msgctxt "" @@ -13671,7 +13671,7 @@ "par_id3145710\n" "help.text" msgid "=CEILING(-11;-2) returns -10" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11; -2) returnerer -10." #: 04060106.xhp msgctxt "" @@ -13679,7 +13679,7 @@ "par_id3145725\n" "help.text" msgid "=CEILING(-11;-2;0) returns -10" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11;-2;0) returnerer -10." #: 04060106.xhp msgctxt "" @@ -13687,7 +13687,7 @@ "par_id3145740\n" "help.text" msgid "=CEILING(-11;-2;1) returns -12" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11; -2; 1) returnerer -12." #: 04060106.xhp msgctxt "" @@ -14335,7 +14335,7 @@ "par_id1278420\n" "help.text" msgid "=MOD(11.25;2.5) returns 1.25." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=REST(11,25;2,5) returnerer 1,25." #: 04060106.xhp msgctxt "" @@ -14663,7 +14663,7 @@ "par_id7726676\n" "help.text" msgid "=ROUNDDOWN(-45.67) returns -45." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.NED(-45,67) returnerer -45." #: 04060106.xhp msgctxt "" @@ -15943,7 +15943,7 @@ "par_id3157283\n" "help.text" msgid "=ODD(1.2) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(1,2) returnerer 3." #: 04060106.xhp msgctxt "" @@ -15951,7 +15951,7 @@ "par_id8746910\n" "help.text" msgid "=ODD(1) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(1) returnerer 1." #: 04060106.xhp msgctxt "" @@ -15959,7 +15959,7 @@ "par_id9636524\n" "help.text" msgid "=ODD(0) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(0) returnerer 1." #: 04060106.xhp msgctxt "" @@ -15967,7 +15967,7 @@ "par_id5675527\n" "help.text" msgid "=ODD(-3.1) returns -5." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(-3,1) returnerer -5." #: 04060106.xhp msgctxt "" @@ -16127,7 +16127,7 @@ "par_id3163945\n" "help.text" msgid "=FLOOR( -11;-2) returns -12" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM.NED(-11;-2) returnerer -12." #: 04060106.xhp msgctxt "" @@ -16143,7 +16143,7 @@ "par_id3163988\n" "help.text" msgid "=FLOOR( -11;-2;1) returns -10" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM.NED(-11;-2;1) returnerer -10." #: 04060106.xhp msgctxt "" @@ -22098,7 +22098,7 @@ "172\n" "help.text" msgid "=ROWS(A10:B12) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=RADER(A10;B12) returnerer 3." #: 04060109.xhp msgctxt "" @@ -48762,7 +48762,7 @@ "161\n" "help.text" msgid "=PERMUTATIONA(11;2) returns 121." -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=PERMUTASJONA(11; 2) returnerer 121." #: 04060185.xhp msgctxt "" @@ -67303,7 +67303,7 @@ "43\n" "help.text" msgid "=YEAR(1) returns 1899" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(1) returnerer 1899." #: func_year.xhp msgctxt "" @@ -67312,7 +67312,7 @@ "44\n" "help.text" msgid "=YEAR(2) returns 1900" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(2) returnerer 1900." #: func_year.xhp msgctxt "" @@ -67321,7 +67321,7 @@ "45\n" "help.text" msgid "=YEAR(33333.33) returns 1991" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(33333,33) returnerer 1981." #: func_yearfrac.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-11 10:58+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-05-03 08:56+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489229904.000000\n" +"X-POOTLE-MTIME: 1493801767.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Vel" +msgid "Pick" +msgstr "Plukk" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/sd/source/core.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/sd/source/core.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/sd/source/core.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/sd/source/core.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-07-05 05:01+0000\n" +"PO-Revision-Date: 2017-04-10 11:20+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467694915.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491823239.000000\n" #: glob.src msgctxt "" @@ -86,7 +86,7 @@ "STR_MASTERSLIDE_NAME\n" "string.text" msgid "Master Slide" -msgstr "" +msgstr "Hovudlysbilete" #: glob.src msgctxt "" @@ -94,7 +94,7 @@ "STR_MASTERPAGE_NAME\n" "string.text" msgid "Master Page" -msgstr "" +msgstr "Hovudside" #: glob.src msgctxt "" @@ -677,7 +677,7 @@ "STR_SHRINK_FONT_SIZE\n" "string.text" msgid "Shrink font size" -msgstr "" +msgstr "Minsk skriftstorleiken" #: glob.src msgctxt "" @@ -685,4 +685,4 @@ "STR_GROW_FONT_SIZE\n" "string.text" msgid "Grow font size" -msgstr "" +msgstr "Auk skriftstorleiken" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-12 14:55+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489330540.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkisk" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 19:49+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487879374.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME er gjort tilgjengeleg under vilkåra i Mozilla Public License, v. 2.0. Du kan få ein kopi av MP-lisensen på http://mozilla.org/MPL/2.0/.\n" -"\n" -"Meldingar om opphavsrett på kode frå tredjepart og lisensvilkåra som vert brukte på delar av programmet finn du i fila LICENSE.html. Vel «Show license» for å sjå detaljane (på engelsk).\n" -"\n" -"Alle varemerke og registrerte varemerker som er nemnde her tilhøyrer dei respektive eigarane.\n" -"\n" -"Ophavsrett © 2000, 2016: LibreOffice-bidragsytarane. \n" -"\n" -"Dette produktet er laga av %OOOVENDOR, basert på OpenOffice.org som er underlagt opphavsrett 2000, 2011 Oracle og/eller partnarane. %OOOVENDOR vedkjenner seg alle medlemmar av fellesskapet, sjå http://www.libreoffice.org/ for fleire detaljar." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-12 10:00+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1452592827.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487879522.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ungarsk (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-16 10:48+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487242113.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-16 15:33+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487259220.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Avslutt" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Bruk endringane og start på nytt" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nn/xmlsecurity/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-06-04 17:39+0000\n" +"PO-Revision-Date: 2017-04-10 11:21+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1465061977.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491823264.000000\n" #: certgeneral.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "Signature type" -msgstr "" +msgstr "Signaturtype" #: digitalsignaturesdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476801213.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 01:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -721,6 +721,30 @@ msgid "Hierarchical" msgstr "Ngokulandelana" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 05:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467695551.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467695550.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 19:33+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:58+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: nr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385494437.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449860281.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-23 21:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464037870.000000\n" +"X-POOTLE-MTIME: 1464037869.000000\n" #: imagemgr.src msgctxt "" @@ -3969,6 +3969,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 05:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: nr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449860437.000000\n" +"X-POOTLE-MTIME: 1431496346.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nr/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nr/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nr/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nr/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 05:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:34+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-23 09:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: nso\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476801243.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1482485364.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 01:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Beakantšwe ka maemo" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 05:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467695527.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467695526.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 19:40+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 18:57+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: nso\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385494852.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449860263.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-23 21:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464038272.000000\n" +"X-POOTLE-MTIME: 1464038267.000000\n" #: imagemgr.src msgctxt "" @@ -3905,6 +3905,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:01+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 06:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: nso\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449860470.000000\n" +"X-POOTLE-MTIME: 1431498086.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/nso/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/nso/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/nso/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/nso/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 05:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-20 08:15+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487578550.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Contributors de LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 15:55+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487865310.000000\n" #: dialog.src @@ -720,6 +720,30 @@ msgid "Hierarchical" msgstr "Ierarquia" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-20 16:06+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487606787.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME es mes a disposicion jols tèrmes de la licéncia Mozilla Public License, v. 2.0. Una còpia de la MPL es disponibla a http://mozilla.org/MPL/2.0/.\n" -"\n" -"Las partidas de còdi tèrç, los autres vejaires de dreit d'autor e las condicions de licéncia aplicablas a de partidas del Logicial figuran dins lo fichièr License.html ; causissètz Afichar la licéncia per veire los detalhs exactes en anglés.\n" -"\n" -"Totas las marcas e marcas depausadas mencionadas dins aqueste document son la proprietat de lors proprietaris respectius.\n" -"\n" -"Copyright © 2000, 2014 collaborators LibreOffice. Totes los dreits reservats.\n" -"\n" -"Aqueste produit es estat creat per %OOOVENDOR, basat sus OpenOffice.org, qu'es Copyright 2000, 2011 Oracle e/o sas filialas. %OOOVENDOR reconeis totes los membres de la comunautat, consultatz http://www.libreoffice.org/ per mai de detalhs." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-16 12:57+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487249853.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-06-20 10:14+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 05:22+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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1466417698.000000\n" +"X-POOTLE-MTIME: 1467696161.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 18:56+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-11-11 11:03+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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449860183.000000\n" +"X-POOTLE-MTIME: 1447239789.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/oc/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/oc/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/oc/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/oc/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-24 08:41+0000\n" "Last-Translator: Cédric Valmary \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487925676.000000\n" #: acceptrejectchangesdialog.ui @@ -5061,16 +5061,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Sortir" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/om/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476801391.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 18:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5715,22 +5715,20 @@ msgstr "Faankishinii" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/om/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 16:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2452,7 +2452,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/om/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 01:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -732,6 +732,30 @@ msgid "Hierarchical" msgstr "Sadarkaawaa" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/om/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 05:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467695956.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467695955.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/om/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 19:49+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 19:11+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: om\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385495399.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449861063.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/om/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-23 21:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464038527.000000\n" +"X-POOTLE-MTIME: 1464038525.000000\n" #: imagemgr.src msgctxt "" @@ -3915,6 +3915,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/om/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:14+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 07:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: om\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449861266.000000\n" +"X-POOTLE-MTIME: 1431501941.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/om/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/om/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/om/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/om/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-23 13:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/or/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476801649.000000\n" #: aboutconfigdialog.ui @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME ଟି ଆଧୁନିକ, ବ୍ୟବହାର ଉପଯୋଗୀ, ମୁକ୍ତ ଉତ୍ସ ଶବ୍ଦ ପରିଚାଳକ, ସ୍ପ୍ରେଡସିଟ, ଉପସ୍ଥାପନା ଏବଂ ଅଧିକ ପାଇଁ ଉତ୍ପାଦକ ଅଟେ।" #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "ସ୍ୱତ୍ୱାଧିକାର © 2000 - 2014 LibreOffice ଅବଦାନକାରୀମାନେ।" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/or/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 21:30+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-11 21:29+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" "Language: or\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457731835.000000\n" +"X-POOTLE-MTIME: 1457731785.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "ଶ୍ରେଣୀବଦ୍ଧ" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/or/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 05:49+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 05:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: or\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467697742.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467697712.000000\n" #: alienwarndialog.ui msgctxt "" @@ -806,7 +806,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/or/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-05-13 07:54+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-09-04 07:21+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" "Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431503640.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1441351293.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/or/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-23 22:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464041233.000000\n" +"X-POOTLE-MTIME: 1464041231.000000\n" #: imagemgr.src msgctxt "" @@ -3894,6 +3894,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/or/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 07:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" "Language: or\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449860548.000000\n" +"X-POOTLE-MTIME: 1431503801.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/or/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/or/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/or/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/or/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 06:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5087,16 +5087,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:43+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476801811.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476801679.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-11 21:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457732068.000000\n" +"X-POOTLE-MTIME: 1457732066.000000\n" #: dialog.src msgctxt "" @@ -721,6 +721,30 @@ msgid "Hierarchical" msgstr "ਲੜੀਵਾਰ" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 06:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467701072.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467701040.000000\n" #: alienwarndialog.ui msgctxt "" @@ -799,7 +799,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 20:09+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 19:24+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: pa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385496574.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449861840.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-29 15:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 08:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: pa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449862081.000000\n" +"X-POOTLE-MTIME: 1431505846.000000\n" #: stbctrls.src msgctxt "" @@ -149,6 +149,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pa-IN/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pa-IN/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 22:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5081,16 +5081,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-05 07:05+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488697520.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-27 18:36+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490639818.000000\n" #: 01120000.xhp @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-26 06:38+0000\n" +"PO-Revision-Date: 2017-04-01 15:33+0000\n" "Last-Translator: Mateusz Zasuwik \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490510333.000000\n" +"X-POOTLE-MTIME: 1491060795.000000\n" #: 00000001.xhp msgctxt "" @@ -649,7 +649,7 @@ "par_id180820162344398454\n" "help.text" msgid "The Content Management Interoperability Services (CMIS) standard defines a domain model and Web Services and Restful AtomPub bindings that will enable greater interoperability of Enterprise Content Management (ECM) systems. CMIS uses Web services and Web 2.0 interfaces to enable rich information to be shared across Internet protocols in vendor-neutral formats, among document systems, publishers and repositories, within one enterprise and between companies." -msgstr "" +msgstr "Standard usługi CMIS (Content Management Interoperability Services) definiuje model domeny oraz powiązania usługi Web Services i Restful AtomPub, które umożliwią większą interoperacyjność systemów ECM (Enterprise Content Management). CMIS korzysta z usług sieci Web i interfejsów Web 2.0, aby umożliwić udostępnianie informacji wszystkim protokołom internetowym w niezależnych od dostawców formatach, między systemami dokumentów, wydawcami i repozytoriami w obrębie jednego przedsiębiorstwa i pomiędzy firmami." #: 00000002.xhp msgctxt "" @@ -665,7 +665,7 @@ "par_id180820162344394243\n" "help.text" msgid "Short for Web-based Distributed Authoring and Versioning, an IETF standard set of platform-independent extensions to HTTP that allows users to collaboratively edit and manage files on remote Web servers. WebDAV features XML properties on metadata, locking - which prevents authors from overwriting each other's changes - namespace manipulation and remote file management. WebDav is sometimes referred to as DAV." -msgstr "" +msgstr "Standardowy zestaw niezależnych od platformy rozszerzeń protokołu HTTP, który umożliwia użytkownikom współużytkowanie plików i zarządzanie nimi na zdalnych serwerach sieci Web. WebDAV z pomocą metadanych oferuje taką funkcjonalność jak, blokowanie - co zapobiega wzajemnemu nadpisywaniu zmian różnych autorów - manipulację obszarami i zdalne zarządzanie plikami. WebDAV jest także czasami określany jako DAV." #: 00000002.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-26 10:40+0000\n" +"PO-Revision-Date: 2017-04-02 06:59+0000\n" "Last-Translator: Mateusz Zasuwik \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490524835.000000\n" +"X-POOTLE-MTIME: 1491116347.000000\n" #: 01010000.xhp msgctxt "" @@ -5084,7 +5084,7 @@ "hd_id3154381\n" "help.text" msgid "Name" -msgstr "" +msgstr "Nazwa" #: 01140000.xhp msgctxt "" @@ -5100,7 +5100,7 @@ "hd_id3156153\n" "help.text" msgid "Status" -msgstr "" +msgstr "Status" #: 01140000.xhp msgctxt "" @@ -5132,7 +5132,7 @@ "hd_id3149416\n" "help.text" msgid "Location" -msgstr "" +msgstr "Lokalizacja" #: 01140000.xhp msgctxt "" @@ -5196,7 +5196,7 @@ "par_id201612110239454950\n" "help.text" msgid "Opens the Printer Options dialog where you can override the global printer options set on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME WriterCalcWriter/Web - Print panel for the current document." -msgstr "" +msgstr "Otwiera okno dialogowe Ustawienia drukarki, w którym można zastąpić globalne opcje drukarki ustawione w %PRODUCTNAME - PreferencjeNarzędzia - Opcje - %PRODUCTNAME WriterCalcWriter/Web - Drukowanie dla bieżącego dokumentu." #: 01140000.xhp msgctxt "" @@ -5534,7 +5534,7 @@ "par_id3151299\n" "help.text" msgid "Closes all $[officename] programs and prompts you to save your changes. This command does not exist on Mac OS X systems." -msgstr "" +msgstr "Zamyka wszystkie aplikacje $[officename] i sugeruje, aby zapisać dokonane zmiany. To polecenie nie istnieje w systemach Mac OS X." #: 01170000.xhp msgctxt "" @@ -6774,7 +6774,7 @@ "par_id3153683\n" "help.text" msgid "Search options are listed under the Find box and in the Other options area of the dialog." -msgstr "" +msgstr "Opcje wyszukiwania są wyświetlane w polu Znajdź i w obszarze Inne opcje okna dialogowego." #: 02100000.xhp msgctxt "" @@ -6871,7 +6871,7 @@ "par_id3150506\n" "help.text" msgid "Replacement options are listed are listed under the Find box and in the Other options area of the dialog." -msgstr "" +msgstr "Opcje zastępowania są wyświetlane w polu Znajdź i w obszarze Inne opcje okna dialogowego." #: 02100000.xhp msgctxt "" @@ -14343,7 +14343,7 @@ "par_id083120160609088310\n" "help.text" msgid "Font dialog" -msgstr "" +msgstr "Okno dialogowe czcionki" #: 05020100.xhp msgctxt "" @@ -15135,7 +15135,7 @@ "109\n" "help.text" msgid "With fraction format, enter the number of places for the denominator that you want to display." -msgstr "" +msgstr "W postaci ułamka, wprowadź liczbę miejsc dla dzielnika do wyświetlenia." #: 05020300.xhp msgctxt "" @@ -15305,7 +15305,7 @@ "par_id3145364\n" "help.text" msgid "Number format codes: custom format codes defined by user." -msgstr "" +msgstr "Kody formatu liczb: niestandardowe kody formatów zdefiniowane przez użytkownika." #: 05020301.xhp msgctxt "" @@ -15321,7 +15321,7 @@ "bm_id3153514\n" "help.text" msgid "format codes; numbers conditions; in number formats number formats; codes currency formats formats;of currencies/date/time numbers; date, time and currency formats Euro; currency formats date formats times, formats percentages, formats scientific notation, formats engineering notation, formats fraction, formats" -msgstr "" +msgstr "kody formatu; liczby warunki; w formatach liczb formaty liczb; kody formaty walut formaty walut/daty/czasu liczby; formaty daty, czasu i walut Euro; formaty walut formaty daty czas, formaty procenty, formaty zapis naukowy, formaty notacja inżynierska, formaty ułamek, formaty" #: 05020301.xhp msgctxt "" @@ -15369,7 +15369,7 @@ "par_id3155070\n" "help.text" msgid "Fourth section applies if the content is not a value, but some text. Content is represented by an at sign (@)." -msgstr "" +msgstr "Sekcja czwarta ma zastosowanie, jeśli treść nie jest wartością, ale tekstem. Treść jest oznaczona znakiem małpki (@)." #: 05020301.xhp msgctxt "" @@ -15417,7 +15417,7 @@ "par_id3157896\n" "help.text" msgid "Explanation" -msgstr "" +msgstr "Wyjaśnienie" #: 05020301.xhp msgctxt "" @@ -15481,7 +15481,7 @@ "par_id3149182\n" "help.text" msgid "Number Format" -msgstr "" +msgstr "Format liczby" #: 05020301.xhp msgctxt "" @@ -15609,7 +15609,7 @@ "par_id3154905\n" "help.text" msgid "Number Format" -msgstr "" +msgstr "Format liczby" #: 05020301.xhp msgctxt "" @@ -15729,7 +15729,7 @@ "par_id3156297\n" "help.text" msgid "will display integer value (0) preceded by as many as needed backslash characters (\\) to fill column width. For accounting representation, you may left align currency symbol with a format similar to:" -msgstr "" +msgstr "wyświetli liczbę całkowitą (0), i jeśli potrzeba, poprzedzoną wieloma znakami odwróconego ukośnika (\\), aby wypełnić szerokość kolumny. W przypadku reprezentacji księgowej można wyrównać symbol waluty w formacie podobnym do:" #: 05020301.xhp msgctxt "" @@ -15905,7 +15905,7 @@ "hd_id3149260\n" "help.text" msgid "Percentages, Scientific Notation and Fraction Representation" -msgstr "" +msgstr "Procenty, zapis naukowy i reprezentacja ułamków" #: 05020301.xhp msgctxt "" @@ -15945,7 +15945,7 @@ "hd_id3156006\n" "help.text" msgid "Fraction Representation" -msgstr "" +msgstr "Reprezentacja ułamków" #: 05020301.xhp msgctxt "" @@ -15953,7 +15953,7 @@ "par_id3146924\n" "help.text" msgid "To represent a value as a fraction, format consists of two or three parts: integer optional part, numerator and denominator. Integer and numerator are separated by a blank or any quoted text. Numerator and denominator are separated by a slash character. Each part can consist of a combination of #, ? and 0 as placeholders." -msgstr "" +msgstr "Aby zaprezentować wartość jako ułamek, format składa się z dwóch lub trzech części: całkowitej części opcjonalnej, licznika i mianownika. Liczba całkowita i licznik są oddzielone pustym miejscem lub cytowanym tekstem. Licznik i mianownik są oddzielone znakiem ukośnika. Każda część może składać się z kombinacji #, ? i zera (0) jako symbolu zastępczego." #: 05020301.xhp msgctxt "" @@ -15961,7 +15961,7 @@ "par_id3146925\n" "help.text" msgid "Denominator is calculated to get the nearest value of the fraction with repsect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:" -msgstr "" +msgstr "Mianownik jest obliczany w celu uzyskania najbliższej wartości ułamka w odniesieniu do liczby zastępczych. Na przykład wartość liczby PI jest reprezentowana jako 3 16/113 z formatem:" #: 05020301.xhp msgctxt "" @@ -17105,7 +17105,7 @@ "par_id3148909\n" "help.text" msgid "Date&Time + Number" -msgstr "" +msgstr "Data i godzina + liczba" #: 05020301.xhp msgctxt "" @@ -17113,7 +17113,7 @@ "par_id3154806\n" "help.text" msgid "Date&Time" -msgstr "" +msgstr "Data i godzina" #: 05020301.xhp msgctxt "" @@ -17121,7 +17121,7 @@ "par_id3151269\n" "help.text" msgid "Number + Number" -msgstr "" +msgstr "Liczba + liczba" #: 05020301.xhp msgctxt "" @@ -17337,7 +17337,7 @@ "par_id3148650\n" "help.text" msgid "Minute time formats M and MM must be used in combination with hour or second time formats to avoid confusion with month date format." -msgstr "" +msgstr "Minutowe formaty czasu M oraz MM muszą być używane w połączeniu z formatami godzin lub sekund, aby uniknąć nieporozumień z formatem daty miesiąca." #: 05020301.xhp msgctxt "" @@ -17409,7 +17409,7 @@ "par_id1508201614491484\n" "help.text" msgid "Try to convert any native number string to ASCII Arabic digits. If already ASCII, it remains ASCII." -msgstr "" +msgstr "Spróbuj przekonwertować dowolny macierzysty ciąg liczb na cyfry arabskie w formacie ASCII. Jeśli ciąg już wcześniej był sformatowane w ASCII, nic się nie zmienia." #: 05020301.xhp msgctxt "" @@ -17497,7 +17497,7 @@ "par_id130820161753311497\n" "help.text" msgid "Hebrew characters" -msgstr "hebrajskie znaki" +msgstr "znaki hebrajskie" #: 05020301.xhp msgctxt "" @@ -17513,7 +17513,7 @@ "par_id130820161753306722\n" "help.text" msgid "Arabic-Indic characters" -msgstr "Arabsko-indyjskie znaki" +msgstr "znaki arabsko-indyjskie" #: 05020301.xhp msgctxt "" @@ -17529,7 +17529,7 @@ "par_id130820161753301107\n" "help.text" msgid "Thai characters" -msgstr "tajskie znaki" +msgstr "znaki tajskie" #: 05020301.xhp msgctxt "" @@ -17545,7 +17545,7 @@ "par_id130820161753306723\n" "help.text" msgid "Indic-Devanagari characters" -msgstr "indyjsko-dewanagarskie znaki" +msgstr "znaki indyjsko-dewanagarskie" #: 05020301.xhp msgctxt "" @@ -17561,7 +17561,7 @@ "par_id130820161753301434\n" "help.text" msgid "Odia (Oriya) characters" -msgstr "orijskie znaki" +msgstr "znaki orijskie" #: 05020301.xhp msgctxt "" @@ -17577,7 +17577,7 @@ "par_id180820161926248586\n" "help.text" msgid "Indic-Devanagari characters" -msgstr "indyjsko-dewanagarskie znaki" +msgstr "znaki indyjsko-dewanagarskie" #: 05020301.xhp msgctxt "" @@ -17593,7 +17593,7 @@ "par_id180820161926246091\n" "help.text" msgid "Bengali characters" -msgstr "bengalskie znaki" +msgstr "znaki bengalskie" #: 05020301.xhp msgctxt "" @@ -17609,7 +17609,7 @@ "par_id180820161926257295\n" "help.text" msgid "Punjabi (Gurmukhi) characters" -msgstr "pendżabskie znaki" +msgstr "znaki pendżabskie" #: 05020301.xhp msgctxt "" @@ -17641,7 +17641,7 @@ "par_id180820161926253837\n" "help.text" msgid "Tamil characters" -msgstr "tamilskie znaki" +msgstr "znaki tamilskie" #: 05020301.xhp msgctxt "" @@ -17745,7 +17745,7 @@ "par_id180820161926273825\n" "help.text" msgid "Khmer" -msgstr "" +msgstr "Khmerski" #: 05020301.xhp msgctxt "" @@ -17753,7 +17753,7 @@ "par_id180820161926273240\n" "help.text" msgid "Khmer (Cambodian) characters" -msgstr "" +msgstr "znaki khmerskie (kambodżańskie)" #: 05020301.xhp msgctxt "" @@ -17761,7 +17761,7 @@ "par_id18082016192627382\n" "help.text" msgid "Mongolian" -msgstr "" +msgstr "Mongolski" #: 05020301.xhp msgctxt "" @@ -17769,7 +17769,7 @@ "par_id180820161926276923\n" "help.text" msgid "Mongolian characters" -msgstr "" +msgstr "znaki mongolskie" #: 05020301.xhp msgctxt "" @@ -17777,7 +17777,7 @@ "par_id180820161926273435\n" "help.text" msgid "Nepali" -msgstr "" +msgstr "Nepalski" #: 05020301.xhp msgctxt "" @@ -17785,7 +17785,7 @@ "par_id180820161926274450\n" "help.text" msgid "Indic-Devanagari characters" -msgstr "" +msgstr "znaki indyjsko-dewanagarskie" #: 05020301.xhp msgctxt "" @@ -17793,7 +17793,7 @@ "par_id180820161926279875\n" "help.text" msgid "Dzongkha" -msgstr "" +msgstr "Dzongkha" #: 05020301.xhp msgctxt "" @@ -17801,7 +17801,7 @@ "par_id180820161926276833\n" "help.text" msgid "Tibetan characters" -msgstr "" +msgstr "znaki tybetańskie" #: 05020301.xhp msgctxt "" @@ -17809,7 +17809,7 @@ "par_id180820161926272903\n" "help.text" msgid "Farsi" -msgstr "" +msgstr "Perski" #: 05020301.xhp msgctxt "" @@ -17817,7 +17817,7 @@ "par_id180820161926271122\n" "help.text" msgid "East Arabic-Indic characters" -msgstr "" +msgstr "znaki arabsko-indyjskie wschodnie" #: 05020301.xhp msgctxt "" @@ -17825,7 +17825,7 @@ "par_id180820161926287716\n" "help.text" msgid "Church Slavic" -msgstr "" +msgstr "Cerkiewnosłowiański" #: 05020301.xhp msgctxt "" @@ -17833,7 +17833,7 @@ "par_id180820161926281396\n" "help.text" msgid "Cyrillic characters" -msgstr "Znaki z cyrylicy" +msgstr "znaki z cyrylicy" #: 05020301.xhp msgctxt "" @@ -17889,7 +17889,7 @@ "par_id130820161753311215\n" "help.text" msgid "traditional Kanji characters" -msgstr "" +msgstr "tradycyjne znaki Kanji" #: 05020301.xhp msgctxt "" @@ -17913,7 +17913,7 @@ "par_id180820161926289664\n" "help.text" msgid "Hebrew" -msgstr "" +msgstr "Hebrajski" #: 05020301.xhp msgctxt "" @@ -17921,7 +17921,7 @@ "par_id180820161926288708\n" "help.text" msgid "Hebrew numbering" -msgstr "" +msgstr "numeracja hebrajska" #: 05020301.xhp msgctxt "" @@ -17969,7 +17969,7 @@ "par_id130820161753325719\n" "help.text" msgid "fullwidth Arabic digits" -msgstr "" +msgstr "cyfry arabskie o pełnej szerokości" #: 05020301.xhp msgctxt "" @@ -17985,7 +17985,7 @@ "par_id130820161753326195\n" "help.text" msgid "fullwidth Arabic digits" -msgstr "" +msgstr "cyfry arabskie o pełnej szerokości" #: 05020301.xhp msgctxt "" @@ -18001,7 +18001,7 @@ "par_id130820161753332046\n" "help.text" msgid "fullwidth Arabic digits" -msgstr "" +msgstr "cyfry arabskie o pełnej szerokości" #: 05020301.xhp msgctxt "" @@ -18057,7 +18057,7 @@ "par_id130820161753332235\n" "help.text" msgid "modern long Kanji text" -msgstr "" +msgstr "współczesny długi tekst Kanji" #: 05020301.xhp msgctxt "" @@ -18073,7 +18073,7 @@ "par_id130820161753349817\n" "help.text" msgid "formal lower case text" -msgstr "" +msgstr "oficjalny tekst małymi literami" #: 05020301.xhp msgctxt "" @@ -18265,7 +18265,7 @@ "par_id150820161449154907\n" "help.text" msgid "short lower case text" -msgstr "" +msgstr "krótki tekst małymi literami" #: 05020301.xhp msgctxt "" @@ -18281,7 +18281,7 @@ "par_id130820161753368507\n" "help.text" msgid "modern short Kanji text" -msgstr "" +msgstr "współczesny krótki tekst Kanji" #: 05020301.xhp msgctxt "" @@ -18337,7 +18337,7 @@ "par_id150820161449151367\n" "help.text" msgid "short upper case text" -msgstr "" +msgstr "krótki tekst dużymi literami" #: 05020301.xhp msgctxt "" @@ -18353,7 +18353,7 @@ "par_id130820161753366963\n" "help.text" msgid "traditional short Kanji text" -msgstr "" +msgstr "tradycyjny krótki tekst Kanji" #: 05020301.xhp msgctxt "" @@ -18409,7 +18409,7 @@ "par_id130820161753375541\n" "help.text" msgid "Hangul characters" -msgstr "" +msgstr "znaki hangul" #: 05020301.xhp msgctxt "" @@ -18449,7 +18449,7 @@ "par_id130820161753375766\n" "help.text" msgid "formal Hangul text" -msgstr "" +msgstr "oficjalny tekst hangul" #: 05020301.xhp msgctxt "" @@ -18489,7 +18489,7 @@ "par_id13082016175338684\n" "help.text" msgid "informal Hangul text" -msgstr "" +msgstr "nieoficjalny tekst hangul" #: 05020400.xhp msgctxt "" @@ -21594,7 +21594,7 @@ "par_id090120160133439102\n" "help.text" msgid "Page format tab page" -msgstr "" +msgstr "Karta formatowania strony" #: 05040200.xhp msgctxt "" @@ -23118,7 +23118,7 @@ "11\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Style" #: 05060000.xhp msgctxt "" @@ -25971,7 +25971,7 @@ "12\n" "help.text" msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern." -msgstr "" +msgstr "Wyświetla listę dostępnych wzorców kreskowań. Można także modyfikować lub tworzyć własne schematy kreskowań." #: 05210400.xhp msgctxt "" @@ -28377,7 +28377,7 @@ "68\n" "help.text" msgid "Horizontally slants the characters in the text object." -msgstr "" +msgstr "Pochyla znaki w obiekcie tekstowym w kierunku poziomym." #: 05280000.xhp msgctxt "" @@ -28403,7 +28403,7 @@ "70\n" "help.text" msgid "Vertically slants the characters in the text object." -msgstr "" +msgstr "Pochyla znaki w obiekcie tekstowym w kierunku pionowym." #: 05280000.xhp msgctxt "" @@ -31147,7 +31147,7 @@ "32\n" "help.text" msgid "Inverts the light source." -msgstr "" +msgstr "Odwraca źródło światła." #: 05350200.xhp msgctxt "" @@ -42197,7 +42197,7 @@ "par_id190920161744065146\n" "help.text" msgid "By default, %PRODUCTNAME commands are grouped in cascading menus and in toolbars filled with icons." -msgstr "" +msgstr "Domyślnie polecenia %PRODUCTNAME są pogrupowane w kaskadowych menu i w paskach narzędziowych wypełnionych ikonami." #: notebook_bar.xhp msgctxt "" @@ -42205,7 +42205,7 @@ "par_id190920161744061691\n" "help.text" msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents." -msgstr "" +msgstr "Układ notebook przedstawia inny sposób organizowania elementów sterujących i ikon niż zbiór prostych wierszy ikon, wyświetlając kontekstowe grupy poleceń i ich zawartość." #: notebook_bar.xhp msgctxt "" @@ -42213,7 +42213,7 @@ "par_id190920161744064258\n" "help.text" msgid "With the notebook bar, frequently used commands are grouped in an arrangement that will make it quicker to access, avoiding lengthy menu navigation and toolbars command icon lookup." -msgstr "" +msgstr "W układzie interfejsu notebook, często używane komendy są pogrupowane w układ, który przyspiesza dostęp do narzędzi, unikając przydługich nawigacji menu i przeglądania ikon poleceń pasków narzędzi." #: notebook_bar.xhp msgctxt "" @@ -42221,7 +42221,7 @@ "par_id190920161744067918\n" "help.text" msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the View menu controls the notebook bar: Toolbar Layout and Notebook bar." -msgstr "" +msgstr "Układ notebook jest dostępny we Writerze, Calcu oraz Impressie i stanowi jeden z wielu wariantów interfejsu. W menu Widok znajdują się wpisy: Układ paska narzędzi oraz Notebook." #: notebook_bar.xhp msgctxt "" @@ -42229,7 +42229,7 @@ "par_id190920161744066306\n" "help.text" msgid "Choose menu View - Toolbar layout - Notebook bar" -msgstr "" +msgstr "Wybierz menu Widok - Układ paska narzędzi - Notebook" #: notebook_bar.xhp msgctxt "" @@ -42237,7 +42237,7 @@ "hd_id190920161911374012\n" "help.text" msgid "User interface layouts" -msgstr "" +msgstr "Układy interfejsu użytkownika" #: notebook_bar.xhp msgctxt "" @@ -42245,7 +42245,7 @@ "par_id190920161744068946\n" "help.text" msgid "The Toolbar Layout entry defines which user interface elements are visible. The available layouts are:" -msgstr "" +msgstr "Wpis paska narzędzi definiuje, które elementy interfejsu użytkownika są widoczne. Dostępne układy są następujące:" #: notebook_bar.xhp msgctxt "" @@ -42253,7 +42253,7 @@ "par_id190920161744068819\n" "help.text" msgid "Default – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs." -msgstr "" +msgstr "Domyślny - tryb klasyczny z dwoma widocznymi paskami narzędzi - standardowym oraz z paskiem formatowania. Panel boczny jest częściowo zwinięty, widoczne są tylko jego karty." #: notebook_bar.xhp msgctxt "" @@ -42261,7 +42261,7 @@ "par_id190920161744061192\n" "help.text" msgid "Single toolbar – one toolbar with all frequently used features. The sidebar is collapsed." -msgstr "" +msgstr "Pojedynczy pasek narzędzi - jeden pasek narzędzi z najczęściej używanymi funkcjami. Panel boczny jest zwinięty." #: notebook_bar.xhp msgctxt "" @@ -42269,7 +42269,7 @@ "par_id190920161744069136\n" "help.text" msgid "Sidebar – The sidebar is fully opened and only one toolbar is showed – formatting toolbar." -msgstr "" +msgstr "Panel boczny - panel boczny jest w pełni otwarty i tylko jeden pasek narzędziowy jest widoczny. Jest to pasek formatowania." #: notebook_bar.xhp msgctxt "" @@ -42277,7 +42277,7 @@ "par_id190920161744063875\n" "help.text" msgid "Notebook bar – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: View - Notebook bar is active only in this mode and user can then choose the notebook bar layout." -msgstr "" +msgstr "Notebook - wszystkie paski narzędziowe oraz panel boczny są ukryte, a pasek notebook jest umieszczony na górze. Użytkownik może zmienić układ paska w menu Widok - Notebook." #: notebook_bar.xhp msgctxt "" @@ -42285,7 +42285,7 @@ "par_id190920161744063797\n" "help.text" msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again." -msgstr "" +msgstr "Gdy użytkownik aktywuje dodatkowe paski narzędzi, zostaną one zapisane w profilu użytkownika. Dlatego po powrocie do trybu paska notebooka, wszystkie widoczne wcześniej paski narzędziowe zostaną ponownie wyświetlone." #: notebook_bar.xhp msgctxt "" @@ -42293,7 +42293,7 @@ "hd_id190920161744069618\n" "help.text" msgid "Available Notebook bar modes" -msgstr "" +msgstr "Dostępne tryby paska Notebook" #: notebook_bar.xhp msgctxt "" @@ -42301,7 +42301,7 @@ "par_id190920161744069064\n" "help.text" msgid "Tabbed – In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image." -msgstr "" +msgstr "W kartach - w tym trybie pasek jest podzielony na karty, w których każda karta wyświetla zestaw ikon pogrupowanych według kontekstu. Kontekst może również zmieniać się w zależności od obiektu wybranego w dokumencie, na przykład tabeli lub obrazu." #: notebook_bar.xhp msgctxt "" @@ -42309,7 +42309,7 @@ "par_id190920161744064039\n" "help.text" msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the %PRODUCTNAME icon on the top left position of the window and choose Menubar." -msgstr "" +msgstr "W trybie kartowanym pasek menu jest domyślnie ukryty. Aby wyświetlić pasek menu, wybierz ikonę %PRODUCTNAME w lewym górnym rogu okna i wybierz pasek Menu." #: notebook_bar.xhp msgctxt "" @@ -42317,7 +42317,7 @@ "par_id190920161744067802\n" "help.text" msgid "Contextual groups – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object." -msgstr "" +msgstr "Grupy kontekstowe - pasek notebooka podzielony jest na 4 grupy. Grupy pliku, schowka i formatowania są stałe. Zawartość grupy wstawiania jest zastępowana poleceniami zależnymi od charakteru wybranego obiektu w dokumencie, podobnie jak w przypadku tabeli, obrazu lub obiektu OLE." #: notebook_bar.xhp msgctxt "" @@ -42325,7 +42325,7 @@ "par_id190920161744063712\n" "help.text" msgid "Contextual single toolbar – Displays a single centered toolbar with context dependent contents." -msgstr "" +msgstr "Pojedynczy kontekst- wyświetla pojedynczy, wyśrodkowany pasek narzędziowy, zawierający treści zależne od kontekstu." #: notebook_bar.xhp msgctxt "" @@ -42333,7 +42333,7 @@ "par_id190920161744076273\n" "help.text" msgid "The notebook bar icon size is adjustable in Tools - Options - LibreOffice - View - Notebook bar listbox." -msgstr "" +msgstr "Rozmiar ikony paska notebooka jest regulowany w polu listy w Narzędzia - Opcje - LibreOffice - Widok - Notebook." #: notebook_bar.xhp msgctxt "" @@ -42341,7 +42341,7 @@ "par_id190920161744074862\n" "help.text" msgid "The notebook bar cannot be customized." -msgstr "" +msgstr "Pasek notebooka nie może być dostosowany do potrzeb użytkownika." #: notebook_bar.xhp msgctxt "" @@ -42349,7 +42349,7 @@ "par_id190920161744078275\n" "help.text" msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules." -msgstr "" +msgstr "Bieżąca implementacja (%PRODUCTNAME %PRODUCTVERSION) paska notebooka jest wspólna dla modułów Writer, Calc i Impress. Zmiana paska notebooka w jednym module wpływa na pasek notebooka innych modułów." #: notebook_bar.xhp msgctxt "" @@ -42357,7 +42357,7 @@ "par_id190920161744072842\n" "help.text" msgid "Toolbars" -msgstr "" +msgstr "Paski narzędziowe" #: online_update.xhp msgctxt "" @@ -43252,7 +43252,7 @@ "par_id281120160939285779\n" "help.text" msgid "Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. " -msgstr "" +msgstr "Tryb awaryjny to tryb, w którym %PRODUCTNAME tymczasowo uruchamia się z nowym profilem użytkownika i wyłącza przyspieszenie sprzętowe. Pomaga przywrócić niesprawną instancję %PRODUCTNAME." #: profile_safe_mode.xhp msgctxt "" @@ -43260,7 +43260,7 @@ "par_id281120163153357\n" "help.text" msgid "Choose Help - Restart in Safe Mode..." -msgstr "" +msgstr "Wybierz Pomoc - Uruchom w trybie awaryjnym..." #: profile_safe_mode.xhp msgctxt "" @@ -43268,7 +43268,7 @@ "par_id281120163154362\n" "help.text" msgid "Start %PRODUCTNAME from command line with --safe-mode option" -msgstr "" +msgstr "Uruchom %PRODUCTNAME z linii poleceń z opcją --safe-mode" #: profile_safe_mode.xhp msgctxt "" @@ -43276,7 +43276,7 @@ "par_id281120163154363\n" "help.text" msgid "Start %PRODUCTNAME from %PRODUCTNAME (Safe Mode) start menu entry (Windows only)" -msgstr "" +msgstr "Uruchom %PRODUCTNAME z menu start %PRODUCTNAME (Tryb awaryjny) (tylko Windows)" #: profile_safe_mode.xhp msgctxt "" @@ -43284,7 +43284,7 @@ "hd_id281120163149549\n" "help.text" msgid "What can I do in safe mode?" -msgstr "" +msgstr "Co można zrobić w trybie awaryjnym?" #: profile_safe_mode.xhp msgctxt "" @@ -43292,7 +43292,7 @@ "par_id281120160939281728\n" "help.text" msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options" -msgstr "" +msgstr "W trybie awaryjnym zostanie wyświetlone okno dialogowe oferujące trzy opcje przywracania profilu użytkownika" #: profile_safe_mode.xhp msgctxt "" @@ -43300,7 +43300,7 @@ "hd_id281120163149551\n" "help.text" msgid "Continue in Safe Mode" -msgstr "" +msgstr "Kontynuuj w trybie awaryjnym" #: profile_safe_mode.xhp msgctxt "" @@ -43308,7 +43308,7 @@ "par_id281120160944279896\n" "help.text" msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart." -msgstr "" +msgstr "Ta opcja pozwala pracować z %PRODUCTNAME tak, jak przyzwyczaił się do tego użytkownik, ale używając tymczasowego profilu użytkownika. Oznacza to również, że wszystkie zmiany konfiguracyjne dokonane w profilu tymczasowego użytkownika zostaną utracone po ponownym uruchomieniu." #: profile_safe_mode.xhp msgctxt "" @@ -43316,7 +43316,7 @@ "hd_id281120163149552\n" "help.text" msgid "Quit" -msgstr "" +msgstr "Wyjdź" #: profile_safe_mode.xhp msgctxt "" @@ -43324,7 +43324,7 @@ "par_id281120160944279161\n" "help.text" msgid "Choosing Quit will just exit %PRODUCTNAME. Use this option if you got here by accident." -msgstr "" +msgstr "Wybranie Wyjdź spowoduje wyjście z programu %PRODUCTNAME. Należy użyć tej opcji, jeśli tryb awaryjny został przypadkowo aktywowany." #: profile_safe_mode.xhp msgctxt "" @@ -43332,7 +43332,7 @@ "hd_id281120163149543\n" "help.text" msgid "Apply Changes and Restart" -msgstr "" +msgstr "Zastosuj zmiany i uruchom ponownie" #: profile_safe_mode.xhp msgctxt "" @@ -43340,7 +43340,7 @@ "par_id281120160949348926\n" "help.text" msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes" -msgstr "" +msgstr "Okno dialogowe umożliwia wielokrotne zmiany profilu użytkownika, które mogą pomóc w przywróceniu %PRODUCTNAME do stanu sprzed awarii. Zaproponowane rozwiązania tworzą listę zmian będącymi najmniej i najbardziej radykalnymi w skutkach. Jest zalecane, aby wypróbowywać je kolejno, jedno po drugim, idąc od góry do dołu. Wybranie tej opcji powoduje zastosowanie wybranych zmian." #: profile_safe_mode.xhp msgctxt "" @@ -43348,7 +43348,7 @@ "hd_id281120163149545\n" "help.text" msgid "Restore from backup" -msgstr "" +msgstr "Przywróć z kopii zapasowej" #: profile_safe_mode.xhp msgctxt "" @@ -43356,7 +43356,7 @@ "par_id281120160949348884\n" "help.text" msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions." -msgstr "" +msgstr "%PRODUCTNAME przechowuje kopie zapasowe poprzednich konfiguracji i aktywnych rozszerzeń. Jeśli problemy mogą być spowodowane niedawnymi zmianami konfiguracji lub rozszerzeń, użyj tej opcji, aby powrócić program do poprzedniego stanu." #: profile_safe_mode.xhp msgctxt "" @@ -43364,7 +43364,7 @@ "hd_id281120163149546\n" "help.text" msgid "Configure" -msgstr "" +msgstr "Konfiguracja" #: profile_safe_mode.xhp msgctxt "" @@ -43372,7 +43372,7 @@ "par_id281120160949347119\n" "help.text" msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration." -msgstr "" +msgstr "Możesz wyłączyć wszystkie rozszerzenia zainstalowane przez użytkownika. Można także wyłączyć przyspieszenie sprzętowe. Włącz tę opcję, jeśli wystąpią awarie podczas uruchamiania lub wizualne usterki, są one często związane z przyspieszaniem sprzętowym." #: profile_safe_mode.xhp msgctxt "" @@ -43380,7 +43380,7 @@ "hd_id281120160944276682\n" "help.text" msgid "Uninstall extensions" -msgstr "" +msgstr "Usuwanie rozszerzeń" #: profile_safe_mode.xhp msgctxt "" @@ -43388,7 +43388,7 @@ "par_id281120160944275137\n" "help.text" msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights." -msgstr "" +msgstr "Czasem nie można uruchomić %PRODUCTNAME z powodu zablokowania lub awarii rozszerzeń. Ta opcja umożliwia wyłączenie wszystkich rozszerzeń zainstalowanych przez użytkownika, a także rozszerzeń współdzielonych i tych fabrycznie dostarczanych wraz z pakietem. Odinstalowanie rozszerzeń współdzielonych i fabrycznych powinno być odbywać się z należytą ostrożnością. Operacja ta zadziała wtedy, gdy użytkownik posiada niezbędne prawa dostępu do systemu." #: profile_safe_mode.xhp msgctxt "" @@ -43396,7 +43396,7 @@ "hd_id281120160944276687\n" "help.text" msgid "Reset to factory settings" -msgstr "" +msgstr "Przywróć ustawienia fabryczne" #: profile_safe_mode.xhp msgctxt "" @@ -43404,7 +43404,7 @@ "par_id28112016094427792\n" "help.text" msgid "If all else fails, you can reset your user profile to the factory default. The first option Reset settings and user customizations resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME." -msgstr "" +msgstr "Jeśli wszystko inne się nie powiedzie, można zresetować profil użytkownika do ustawień fabrycznych. Pierwsza opcja Resetuj ustawienia i modyfikacje użytkownika resetuje całą konfigurację i zmiany interfejsu użytkownika, ale zachowuje takie rzeczy jak własny słownik, szablony itd. Druga opcja spowoduje zresetowanie całego profilu do stanu po pierwszym zainstalowaniu %PRODUCTNAME." #: profile_safe_mode.xhp msgctxt "" @@ -43412,7 +43412,7 @@ "par_id28112016094427243\n" "help.text" msgid "If you could not resolve your problem by using safe mode, click on Advanced expander. You will find instructions how to get further help there." -msgstr "" +msgstr "Jeśli nie można rozwiązać problemu przy użyciu trybu awaryjnego, kliknij Zaawansowane. Znajdziesz tam instrukcje, jak uzyskać dodatkową pomoc." #: profile_safe_mode.xhp msgctxt "" @@ -43420,7 +43420,7 @@ "par_id281120160949347055\n" "help.text" msgid "If you want to report a problem with your user profile, by clicking on Create Zip Archive from User Profile you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers." -msgstr "" +msgstr "Jeśli chcesz zgłosić problem z profilem użytkownika, to klikając opcję Utwórz archiwum Zip z profilu użytkownika możesz wygenerować plik zip, który może zostać przesłany do systemu śledzenia błędów, gdzie zostanie zbadany przez programistów." #: profile_safe_mode.xhp msgctxt "" @@ -43428,7 +43428,7 @@ "par_id281120160949348679\n" "help.text" msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions." -msgstr "" +msgstr "Pamiętaj, że przesłany profil może zawierać poufne informacje, takie jak osobisty słownik, ustawienia i zainstalowane rozszerzenia." #: prop_font_embed.xhp msgctxt "" @@ -43462,7 +43462,7 @@ "2\n" "help.text" msgid "Embed document fonts in the current file." -msgstr "" +msgstr "Osadza czcionki dokumentu w bieżącym pliku." #: prop_font_embed.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-26 11:53+0000\n" +"PO-Revision-Date: 2017-04-02 07:02+0000\n" "Last-Translator: Mateusz Zasuwik \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490529183.000000\n" +"X-POOTLE-MTIME: 1491116539.000000\n" #: 01110000.xhp msgctxt "" @@ -9950,7 +9950,7 @@ "6\n" "help.text" msgid "Specifies whether the user's entered or selected combination field value should be saved in a database field. Several database table fields are offered which can be accessed in the current form." -msgstr "" +msgstr "Określa, czy wartość wprowadzona lub wybrana przez użytkownika powinna być zapisana w polu bazy danych. W bieżącym formularzu są dostępne różne pola tabeli bazy danych." #: 01170904.xhp msgctxt "" @@ -9977,7 +9977,7 @@ "8\n" "help.text" msgid "Specifies the data field where the combination field value should be saved." -msgstr "" +msgstr "Określa pole danych, w którym ma zostać zapisana wartość pola kombi." #: 01170904.xhp msgctxt "" @@ -9995,7 +9995,7 @@ "10\n" "help.text" msgid "Specifies that the value of this combination field will not be written in the database and will only be saved in the form." -msgstr "" +msgstr "Określa, że wartość tego pola kombi nie jest zapisywana w bazie danych, a tylko w formularzu." #: 01171000.xhp msgctxt "" @@ -10422,7 +10422,7 @@ "par_id3155941\n" "help.text" msgid "The last five font names that have been selected are shown in the top part of the combo box." -msgstr "" +msgstr "Nazwy pięciu ostatnio wybranych czcionek, znajdują się w górnej części pola wyboru." #: 02020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-26 14:48+0000\n" +"PO-Revision-Date: 2017-04-03 18:20+0000\n" "Last-Translator: Mateusz Zasuwik \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490539725.000000\n" +"X-POOTLE-MTIME: 1491243619.000000\n" #: aaa_start.xhp msgctxt "" @@ -2047,7 +2047,7 @@ "par_id150820161816033788\n" "help.text" msgid "To access remote servers, you must use LibreOffice own Open and Save dialogs. If you currently use your operating system dialogs for saving and opening files, go to Tools > Options > LibreOffice > General and check the option Use %PRODUCTNAME dialogs." -msgstr "" +msgstr "Aby uzyskać dostęp do zdalnych serwerów, należy użyć okien dialogowych programu LibreOffice. Jeśli aktualnie używasz okien dialogowych systemu operacyjnego, przejdź do Narzędzia - Opcje - LibreOffice - Ogólne i zaznacz opcję Użyj okien dialogowych programu %PRODUCTNAME." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2055,7 +2055,7 @@ "par_id150820161816033744\n" "help.text" msgid "To enable a remote server connection, use one of these methods:" -msgstr "" +msgstr "Aby umożliwić zdalne połączenie z serwerem, użyj jednej z następujących metod:" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2063,7 +2063,7 @@ "par_id150820161816032923\n" "help.text" msgid "Click on the Remote Files button in the Start Center." -msgstr "" +msgstr "Kliknij przycisk Pliki zdalne na planszy startowej." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2071,7 +2071,7 @@ "par_id150820161816031470\n" "help.text" msgid "Select File > Open Remote Files..." -msgstr "" +msgstr "Zaznacz Plik - Otwórz pliki zdalne..." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2079,7 +2079,7 @@ "par_id150820161816037870\n" "help.text" msgid "Select File > Save to Remote Server..." -msgstr "" +msgstr "Zaznacz Plik - Zapisz na zdalnym serwerze..." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2087,7 +2087,7 @@ "par_id150820161816033600\n" "help.text" msgid "Then click on the Add Service button in the dialog to open the File Services dialog." -msgstr "" +msgstr "Następnie w oknie dialogowym kliknij przycisk Dodaj usługę, aby otworzyć okno Usługi plików." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2111,7 +2111,7 @@ "par_id150820161816034989\n" "help.text" msgid "In the File Services dialog, set:" -msgstr "" +msgstr "W oknie dialogowym Usług plików, ustaw:" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2119,7 +2119,7 @@ "par_id150820161816033753\n" "help.text" msgid "Type: WebDAV" -msgstr "" +msgstr "Typ: WebDAV" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2127,7 +2127,7 @@ "par_id150820161816034500\n" "help.text" msgid "Host: the server URL, usually in the form file.service.com" -msgstr "" +msgstr "Host: adres URL serwera, zwykle w postaci file.service.com" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2135,7 +2135,7 @@ "par_id150820161816037709\n" "help.text" msgid "Port: port number (usually 80)" -msgstr "" +msgstr "Port: numer portu (zwykle 80)" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2143,7 +2143,7 @@ "par_id150820161816032816\n" "help.text" msgid "Select Secure Connection checkbox to access the service through https protocol and port 443" -msgstr "" +msgstr "Zaznacz pole wyboru Bezpieczne połączenie, aby uzyskać dostęp do usługi przez protokół https i port 443" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2151,7 +2151,7 @@ "par_id150820161816035209\n" "help.text" msgid "Label: give a name for this connection. This name will show in the Service listbox of the Open or Save remote files dialog." -msgstr "" +msgstr "Etykieta: nazwa danego połączenia. Nazwa ta zostanie wyświetlona na liście usług plików zdalnych." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2159,7 +2159,7 @@ "par_id15082016181603431\n" "help.text" msgid "Root: enter the path to the root URL of your account." -msgstr "" +msgstr "Główny: wprowadź ścieżkę do głównego adresu URL swojego konta." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2167,7 +2167,7 @@ "par_id150820161816034394\n" "help.text" msgid "Note: the root of the file service is provided by the file service administrator and may consists of scripts files, parameters and paths." -msgstr "" +msgstr "Notatka: główny plik usługi jest dostarczany przez administratora usług plików i może składać się z plików skryptów, parametrów i ścieżek." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2175,7 +2175,7 @@ "par_id150820161816036744\n" "help.text" msgid "Once the connection is defined, click OK to connect. The dialog will dim until the connection is established with the server. A dialog asking for the user name and the password may pop up to let you log in the server. Proceed entering the right user name and password." -msgstr "" +msgstr "Po nawiązaniu połączenia kliknij OK, aby się połączyć. Okno dialogowe będzie przygaszone do momentu nawiązania połączenia z serwerem. Może pojawić się okno z pytaniem o nazwę użytkownika i hasło, które umożliwi zalogowanie się na serwerze. Przejdź do właściwej nazwy użytkownika i hasła." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2199,7 +2199,7 @@ "par_id150820161816034969\n" "help.text" msgid "" -msgstr "" +msgstr "" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2207,7 +2207,7 @@ "par_id150820161816039418\n" "help.text" msgid "Type: FTP or SSH" -msgstr "" +msgstr "Typ: FTP lub SSH" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2215,7 +2215,7 @@ "par_id15082016181603238\n" "help.text" msgid "Host: the server URL, usually in the form file.service.com" -msgstr "" +msgstr "Host: adres URL serwera, zwykle w postaci file.service.com" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2223,7 +2223,7 @@ "par_id150820161816046286\n" "help.text" msgid "Port: port number (usually 21 for FTP and 22 for SSH)." -msgstr "" +msgstr "Port: numer portu (zwykle 21 dla FTP i 22 dla SSH)." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2231,7 +2231,7 @@ "par_id150820161816041989\n" "help.text" msgid "User, Password: the username and password of the FTP service." -msgstr "" +msgstr "Użytkownik, hasło: nazwa użytkownika i hasło usługi FTP." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2239,7 +2239,7 @@ "par_id150820161816047387\n" "help.text" msgid "Remember password: Check to store the password in %PRODUCTNAME user profile. The password will be secured by the master password in Tools - Options - LibreOffice - Security - Internet passwords." -msgstr "" +msgstr "Zapamiętaj hasło: Zaznacz, aby zapisać hasło w profilu użytkownika %PRODUCTNAME. Hasło zostanie zabezpieczone hasłem głównym w Narzędzia - Opcje - LibreOffice - Bezpieczeństwo - Hasła połączeń z siecią Web." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2247,7 +2247,7 @@ "par_id150820161816045167\n" "help.text" msgid "" -msgstr "" +msgstr "" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2255,7 +2255,7 @@ "par_id150820161816045015\n" "help.text" msgid "" -msgstr "" +msgstr "" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2263,7 +2263,7 @@ "par_id150820161816045804\n" "help.text" msgid "." -msgstr "" +msgstr "." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2287,7 +2287,7 @@ "par_id150820161816046729\n" "help.text" msgid "" -msgstr "" +msgstr "" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2303,7 +2303,7 @@ "par_id150820161816041093\n" "help.text" msgid "Host: the server URL, usually in the form file.service.com" -msgstr "" +msgstr "Host: adres URL serwera, zwykle w postaci file.service.com" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2471,7 +2471,7 @@ "par_id150820161816053608\n" "help.text" msgid "Repository: select the files repository in the drop-down list." -msgstr "" +msgstr "Repozytorium: wybierz repozytorium plików z listy rozwijanej." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2511,7 +2511,7 @@ "par_id210820161039438142\n" "help.text" msgid "Checking-in and checking-out documents" -msgstr "" +msgstr "Ewidencjonowanie i wyewidencjonowanie dokumentów" #: cmis-remote-files.xhp msgctxt "" @@ -2535,7 +2535,7 @@ "par_id15082016161546265\n" "help.text" msgid "Remote Files Service User Guide" -msgstr "" +msgstr "Podręcznik użytkownika usługi plików zdalnych" #: cmis-remote-files.xhp msgctxt "" @@ -2543,7 +2543,7 @@ "par_id150820161816031425\n" "help.text" msgid "%PRODUCTNAME can open and save files stored on remote servers. Keeping files on remote servers allows to work with the documents using different computers. For example, you can work on a document in the office during the day and edit it at home for last-minute changes. Storing files on a remote server also backs up documents from computer loss or hard disk failure. Some servers are also able to check-in and check-out files, thus controlling their usage and access." -msgstr "" +msgstr "%PRODUCTNAME może otwierać i zapisywać pliki przechowywane na zdalnych serwerach. Przechowywanie plików na zdalnych serwerach umożliwia pracę z dokumentami przy użyciu różnych komputerów. Na przykład możesz pracować nad dokumentem w biurze w ciągu dnia i edytować go w domu, aby dokonać zmian w ostatniej chwili. Przechowywanie plików na serwerze zdalnym tworzy również kopie zapasowe dokumentów na wypadek utraty komputera lub awarii dysku twardego. Niektóre serwery są również w stanie ewidencjonować i wyewidencjonować pliki, a tym samym kontrolować ich użytkowanie i dostęp." #: cmis-remote-files.xhp msgctxt "" @@ -2551,7 +2551,7 @@ "par_id150820161816033566\n" "help.text" msgid "%PRODUCTNAME supports many document servers that use well known network protocols such as FTP, WebDAV, Windows share, and SSH. It also supports popular services like Google Drive as well as commercial and open source servers that implement the OASIS CMIS standard." -msgstr "" +msgstr "%PRODUCTNAME obsługuje wiele serwerów dokumentów, które używają dobrze znanych protokołów sieciowych takich jak FTP, WebDAV, Udział Windows i SSH. Obsługuje także popularne usługi, takie jak Google Drive, jak również serwery komercyjne i open source, które wdrażają standard OASIS CMIS." #: cmis-remote-files.xhp msgctxt "" @@ -2559,7 +2559,7 @@ "par_id170820161605418200\n" "help.text" msgid "To work with a remote file service you must first setup a remote file connection." -msgstr "" +msgstr "Aby pracować z usługą zdalnego pliku, należy najpierw ustanowić połączenie pliku zdalnego." #: cmis-remote-files.xhp msgctxt "" @@ -2575,7 +2575,7 @@ "par_id160820161854537016\n" "help.text" msgid "To open a file in a remote file service" -msgstr "" +msgstr "Aby otworzyć plik w usłudze plików zdalnych" #: cmis-remote-files.xhp msgctxt "" @@ -2583,7 +2583,7 @@ "par_id170820161605411154\n" "help.text" msgid "Do one of the following:" -msgstr "" +msgstr "Wykonaj jedną z następujących czynności:" #: cmis-remote-files.xhp msgctxt "" @@ -2591,7 +2591,7 @@ "par_id17082016160541995\n" "help.text" msgid "Choose File - Open remote file in any %PRODUCTNAME module" -msgstr "" +msgstr "Wybierz polecenie Plik - Otwórz plik zdalny w dowolnym module %PRODUCTNAME" #: cmis-remote-files.xhp msgctxt "" @@ -2599,7 +2599,7 @@ "par_id170820161605414687\n" "help.text" msgid "Click the Remote Files button the Start Center" -msgstr "" +msgstr "Kliknij przycisk Pliki zdalne na planszy startowej" #: cmis-remote-files.xhp msgctxt "" @@ -2607,7 +2607,7 @@ "par_id170820161605418205\n" "help.text" msgid "The Remote Files dialog appears." -msgstr "" +msgstr "Zostanie wyświetlone okno dialogowe Pliki zdalne." #: cmis-remote-files.xhp msgctxt "" @@ -2615,7 +2615,7 @@ "par_id170820161605417597\n" "help.text" msgid "Select the file and click Open or press Enter." -msgstr "" +msgstr "Zaznacz plik i kliknij Otwórz lub naciśnij klawisz Enter." #: cmis-remote-files.xhp msgctxt "" @@ -2623,7 +2623,7 @@ "par_id150820161816053974\n" "help.text" msgid "The Remote Files dialog which then appears has many parts. The upper list box contains the list of remote servers you have previously defined. The line below the list box shows the path to access the folder. On the left is the folder structure of the user space in the server. The main pane displays the files in the remote folder." -msgstr "" +msgstr "Wyświetlone okno dialogowe Plików zdalnych zawiera wiele części. W górnym polu listy znajduje się wcześniej zdefiniowana lista zdalnych serwerów. Linia pod polem listy wyświetla ścieżkę dostępu do folderu. Po lewej stronie znajduje się struktura folderów w przestrzeni użytkownika na serwerze. W głównym okienku wyświetlane są pliki w folderze zdalnym." #: cmis-remote-files.xhp msgctxt "" @@ -2639,7 +2639,7 @@ "hd_id170820161605421283\n" "help.text" msgid "Checking out and checking in files" -msgstr "" +msgstr "Wyewidencjonowanie i ewidencjonowanie w plikach" #: cmis-remote-files.xhp msgctxt "" @@ -2647,7 +2647,7 @@ "par_id170820161605429941\n" "help.text" msgid "Check Out and Check In services control updates to document and prevent unwanted overwrites in a CMIS remote service." -msgstr "" +msgstr "Usługi ewidencjonowania kontrolują aktualizacje dokumentów, aby zapobiec przed niepożądanymi zmianami w zdalnej usłudze CMIS." #: cmis-remote-files.xhp msgctxt "" @@ -2655,7 +2655,7 @@ "par_id17082016160542203\n" "help.text" msgid "Checking out a document locks it, preventing other users writing changes to it. Only one user can have a particular document checked out (locked) at any time. Checking in a document or canceling the check out unlocks the document." -msgstr "" +msgstr "Wyewidencjonowanie dokumentu blokuje go, uniemożliwiając innym użytkownikom zapisywanie zmian. Tylko jeden użytkownik może w dowolnym momencie wyewidencjonować (zablokować) dany dokument. Zaewidencjonowanie dokumentu lub anulowanie wyewidencjonowania powoduje odblokowanie dokumentu." #: cmis-remote-files.xhp msgctxt "" @@ -2671,7 +2671,7 @@ "par_id170820161605428976\n" "help.text" msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME display a Check-out button on the top message area. Click the Check-out button to lock the file in the server to prevent edition by another user. Alternatively choose File - Check-out." -msgstr "" +msgstr "Gdy plik jest otwarty z usługi plików zdalnych CMIS, w górnym obszarze wiadomości %PRODUCTNAME wyświetla przycisk Wyewidencjonuj. Kliknij przycisk Wyewidencjonuj, aby zablokować plik na serwerze, aby zapobiec jego edycji przez innego użytkownika. Można również wybrać polecenie Plik - Wyewidencjonuj." #: cmis-remote-files.xhp msgctxt "" @@ -2679,7 +2679,7 @@ "par_id190820161707153804\n" "help.text" msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string (Working Copy) in the file name) when a file is checked-out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check-in the file." -msgstr "" +msgstr "%PRODUCTNAME tworzy kopię roboczą pliku na serwerze podczas jego sprawdzania i wstawia w nazwie ciąg (Kopia robocza)). Każda edycja i operacja zapisywania odbywa się w kopii roboczej. Możesz zapisać plik tyle razy, ile chcesz. Po zakończeniu wprowadzania zmian, sprawdź plik." #: cmis-remote-files.xhp msgctxt "" @@ -2687,7 +2687,7 @@ "par_id190820161707156843\n" "help.text" msgid "To check-in the file, choose File - Check-in. A dialog opens to insert comments about the last edition. These comments are recorded in the CMIS server for version control. The working copy replaces the existing file and its version number is updated." -msgstr "" +msgstr "Aby zaewidencjonować plik, wybierz Plik - Ewidencjonuj. Zostanie otwarte okno dialogowe, aby wstawić komentarze dotyczące ostatniej edycji. Uwagi te są zapisywane na serwerze CMIS do kontroli wersji. Kopia robocza zastępuje istniejący plik, a jego numer wersji jest aktualizowany." #: cmis-remote-files.xhp msgctxt "" @@ -2695,7 +2695,7 @@ "par_id190820161707155303\n" "help.text" msgid "To cancel a check-out, choose File - Cancel Check-Out. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs." -msgstr "" +msgstr "Aby anulować sprawdzanie, wybierz Plik - Anuluj wyewidencjonowanie. Ostrzeżenie poinformuje, że ostatnia edycja pliku zostanie porzucona. Jeśli komunikat zostanie potwierdzony, nie dojdzie do aktualizacji pliku." #: cmis-remote-files.xhp msgctxt "" @@ -2703,7 +2703,7 @@ "par_id19082016170715785\n" "help.text" msgid "Remember to check-in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it." -msgstr "" +msgstr "Pamiętaj, aby zaewidencjonować plik przed zakończeniem pracy. Nie zrobienie tego zablokuje plik, i żaden inny użytkownik będzie mógł go modyfikować." #: cmis-remote-files.xhp msgctxt "" @@ -2719,7 +2719,7 @@ "hd_id170820161605423820\n" "help.text" msgid "To save a file in a remote file server" -msgstr "" +msgstr "Aby zapisać plik na zdalnym serwerze plików" #: cmis-remote-files.xhp msgctxt "" @@ -2727,7 +2727,7 @@ "par_id170820161605428770\n" "help.text" msgid "Do one of the following" -msgstr "" +msgstr "Wykonaj jedną z następujących czynności" #: cmis-remote-files.xhp msgctxt "" @@ -2735,7 +2735,7 @@ "par_id170820161605423872\n" "help.text" msgid "If the file was opened from a CMIS server, choose File - Save, click on the Save button or hit Ctrl + S." -msgstr "" +msgstr "Jeśli plik został otwarty z serwera CMIS, wybierz polecenie Plik - Zapisz, kliknij przycisk Zapisz lub naciśnij klawisz Ctrl + S." #: cmis-remote-files.xhp msgctxt "" @@ -2743,7 +2743,7 @@ "par_id190820161707166344\n" "help.text" msgid "If the file is not stored in a CMIS server, Choose File - Save to Remote Server or do a long click in the Save icon, and select Save Remote File" -msgstr "" +msgstr "Jeśli plik nie jest zapisany na serwerze CMIS, wybierz polecenie Plik - Zapisz na serwerze zdalnym lub kliknij ikonę Zapisz i wybierz Zapisz plik zdalny" #: cmis-remote-files.xhp msgctxt "" @@ -2751,7 +2751,7 @@ "par_id170820161605428591\n" "help.text" msgid "The Remote files dialog appears" -msgstr "" +msgstr "Zostanie wyświetlone okno dialogowe Pliki zdalne" #: cmis-remote-files.xhp msgctxt "" @@ -2759,7 +2759,7 @@ "par_id170820161605425024\n" "help.text" msgid "In the Filter list box, select the desired format." -msgstr "" +msgstr "W polu listy Filtr wybierz żądany format." #: cmis-remote-files.xhp msgctxt "" @@ -2767,7 +2767,7 @@ "par_id170820161605424622\n" "help.text" msgid "Enter a name in the File name box and click Save." -msgstr "" +msgstr "Wprowadź nazwę w polu Nazwa pliku i kliknij przycisk Zapisz." #: cmis-remote-files.xhp msgctxt "" @@ -2775,7 +2775,7 @@ "par_id190820161707163121\n" "help.text" msgid "If you will end working with the file, check-in the file, Go to File - Check-in." -msgstr "" +msgstr "Jeśli kończysz pracę z plikiem, zaewidencjonuj go poleceniem Plik - Ewidencjonuj." #: cmis-remote-files.xhp msgctxt "" @@ -2791,7 +2791,7 @@ "hd_id190820161707169171\n" "help.text" msgid "Properties of files stored in CMIS servers" -msgstr "" +msgstr "Właściwości plików przechowywanych na serwerach CMIS" #: cmis-remote-files.xhp msgctxt "" @@ -2799,7 +2799,7 @@ "par_id19082016170716519\n" "help.text" msgid "Files stored in CMIS server have properties and metadata not available in a local storage. These metadata are important for controls and debugging of the CMIS connection and server implementation. All parameters dispalyed are read-only." -msgstr "" +msgstr "Pliki przechowywane na serwerze CMIS mają właściwości i metadane niedostępne w lokalnej pamięci masowej. Te metadane są ważne dla kontroli i debugowania połączeń CMIS oraz dla implementacji serwera. Wszystkie przedstawione parametry są tylko do odczytu." #: cmis-remote-files.xhp msgctxt "" @@ -2815,7 +2815,7 @@ "par_id210820161033581776\n" "help.text" msgid "Setting up a remote file service" -msgstr "" +msgstr "Ustanowienie usługi plików zdalnych" #: collab.xhp msgctxt "" @@ -6104,7 +6104,7 @@ "par_id0821200910191774\n" "help.text" msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the document is signed\" when loaded in the newer software." -msgstr "" +msgstr "Po podpisaniu dokumentu w programie OpenOffice.org 3.2 lub StarOffice 9.2 albo nowszym i otwarciu następnie danego dokumentu w starszej wersji tych programów podpis zostanie wyświetlony jako \"nieprawidłowy\". Podpisy utworzone w starszych wersjach programów podczas ładowania do nowszej wersji programu będą oznaczone uwagą \"tylko część dokumentu została podpisana\"." #: digital_signatures.xhp msgctxt "" @@ -6112,7 +6112,7 @@ "par_id0821200910191775\n" "help.text" msgid "When you sign an OOXML document, then the signature will be always marked with \"only parts of the document is signed\". Metadata of OOXML files are never signed, to be compatible with Microsoft Office." -msgstr "" +msgstr "Podczas podpisywania dokumentu OOXML, podpis zawsze będzie oznaczony znakiem \"tylko część dokumentu została podpisana\". Metadane plików OOXML nigdy nie są podpisywane, aby były one zgodne z pakietem Microsoft Office." #: digital_signatures.xhp msgctxt "" @@ -6120,7 +6120,7 @@ "par_id0821200910191776\n" "help.text" msgid "When you sign a PDF document, then this marking is not used. Signing only parts of the document is simply an invalid signature." -msgstr "" +msgstr "Kiedy podpisujesz dokument PDF, to oznaczenie nie jest używane. Podpisywanie tylko części dokumentu jest po prostu nieprawidłowym podpisem." #: digital_signatures.xhp msgctxt "" @@ -6128,7 +6128,7 @@ "par_id0821200910191777\n" "help.text" msgid "Signing other document formats is not supported at the moment." -msgstr "" +msgstr "Podpisywanie innych formatów dokumentów nie jest obecnie obsługiwane." #: digital_signatures.xhp msgctxt "" @@ -6853,7 +6853,7 @@ "par_id210820160901392820\n" "help.text" msgid "Do a long click in the Open icon on the standard toolbar and select Open Remote File in the bottom of the list." -msgstr "" +msgstr "Wykonaj długie kliknięcie w ikonę Otwórz na standardowym pasku narzędzi i wybierz opcję Otwórz plik zdalny z dołu listy." #: doc_open.xhp msgctxt "" @@ -18401,7 +18401,7 @@ "hd_id1016120408556191\n" "help.text" msgid "Using without special arguments" -msgstr "" +msgstr "Używanie bez specjalnych argumentów" #: start_parameters.xhp msgctxt "" @@ -18441,7 +18441,7 @@ "par_id40161212063330252\n" "help.text" msgid "Opens the file and applies specified macros from the file." -msgstr "" +msgstr "Otwiera plik i stosuje określone makra z pliku." #: start_parameters.xhp msgctxt "" @@ -18449,7 +18449,7 @@ "hd_id201612040855610\n" "help.text" msgid "Getting help and information" -msgstr "" +msgstr "Uzyskiwanie pomocy i informacji" #: start_parameters.xhp msgctxt "" @@ -18473,7 +18473,7 @@ "par_id3147349\n" "help.text" msgid "Lists the available command line parameters to the console." -msgstr "" +msgstr "Wyświetla dostępne parametry linii poleceń do konsoli." #: start_parameters.xhp msgctxt "" @@ -18545,7 +18545,7 @@ "par_id2016120409236546\n" "help.text" msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments." -msgstr "" +msgstr "(Tylko piaskownica w systemie MacOS X) Zwraca ścieżkę do katalogu tymczasowego dla bieżącego użytkownika i kończy pracę. Zastępuje wszystkie inne argumenty." #: start_parameters.xhp msgctxt "" @@ -18553,7 +18553,7 @@ "hd_id20161204094429235\n" "help.text" msgid "General arguments" -msgstr "" +msgstr "Ogólne argumenty" #: start_parameters.xhp msgctxt "" @@ -18561,7 +18561,7 @@ "par_id3153919\n" "help.text" msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter no which deativates the Quickstarter service. Without parameters this service is activated." -msgstr "" +msgstr "Aktywuje [Dezaktywuje] usługę Quickstarter. Może pobierać tylko jeden parametr no, który dezaktywuje usługę Quickstarter. Bez parametrów, usługa jest włączana." #: start_parameters.xhp msgctxt "" @@ -18569,7 +18569,7 @@ "par_id315330t\n" "help.text" msgid "Disables check for remote instances using the installation." -msgstr "" +msgstr "Wyłącza sprawdzania obecności zdalnych instancji w trakcie instalacji." #: start_parameters.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-03-26 15:12+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490541132.000000\n" #: 01000000.xhp @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Wybierz" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-25 19:20+0000\n" +"PO-Revision-Date: 2017-04-09 14:35+0000\n" "Last-Translator: Mateusz Zasuwik \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490469606.000000\n" +"X-POOTLE-MTIME: 1491748557.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -8564,7 +8564,7 @@ "Label\n" "value.text" msgid "E-mail as ~Microsoft PowerPoint Presentation..." -msgstr "E-mail jako prezentacja ~Microsoft Excel PowerPoint..." +msgstr "E-mail jako prezentacja ~Microsoft PowerPoint..." #: DrawImpressCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-19 11:54+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487505250.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchicznie" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-09 17:46+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489081588.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME jest licencjonowany na zasadach Mozilla Public License, v. 2.0. Kopię licencji MPL znajdziesz na stronie http://mozilla.org/MPL/2.0/.\n" -"\n" -"Dodatkowe informacje i warunki licencyjne dla kodu oprogramowania firm trzecich mają zastosowanie do części Oprogramowania i są wyjaśnione w pliku LICENSE.html; wybierz Pokaż licencję, aby zapoznać się ze szczegółami w języku angielskim.\n" -"\n" -"Wszystkie znaki towarowe wymienione w niniejszym dokumencie są własnością ich właścicieli.\n" -"\n" -"Copyright © 2000–2016. Prawa autorskie należą do autorów LibreOffice. Wszystkie prawa zastrzeżone.\n" -"\n" -"Produkt ten został utworzony przez %OOOVENDOR w oparciu o OpenOffice.org, do którego prawa autorskie (2010, 2011) posiada firma Oracle i/lub jej filie. %OOOVENDOR dziękuje całej społeczności. Aby poznać więcej szczegółów, odwiedź proszę http://www.libreoffice.org/" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-10 21:33+0000\n" -"Last-Translator: Konrad Kmieciak \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-04-15 08:24+0000\n" +"Last-Translator: m4sk1n \n" "Language-Team: LANGUAGE \n" "Language: pl\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%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: 1455140002.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1460708667.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 07:36+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487403381.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "węgierski (rowasz)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/svtools/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/svtools/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-18 07:39+0000\n" +"PO-Revision-Date: 2017-04-02 10:16+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: none\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487403555.000000\n" +"X-POOTLE-MTIME: 1491128195.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -509,7 +509,7 @@ "title\n" "string.text" msgid "File Services" -msgstr "Plik usług" +msgstr "Usługi plików" #: placeedit.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-27 19:21+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488223310.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pl/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pl/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pl/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pl/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-26 07:04+0000\n" "Last-Translator: Mateusz Zasuwik \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490511895.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Wyjdź" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Z_astosuj zmiany i uruchom ponownie" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-15 22:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:43+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487196941.000000\n" +"X-POOTLE-MTIME: 1492263838.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Colaboradores do LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 Colaboradores do LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-24 23:36+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-01 15:30+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490398601.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491060645.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -18015,7 +18015,7 @@ "par_idN11635\n" "help.text" msgid "You can find a general introduction to using Array functions on top of this page." -msgstr "" +msgstr "Encontrará uma introdução geral à utilização das funções de matriz na parte superior desta página." #: 04060107.xhp msgctxt "" @@ -18239,7 +18239,7 @@ "par_id3166145\n" "help.text" msgid "TRANSPOSE(A1:D2)" -msgstr "" +msgstr "TRANSPOR(A1:D2)" #: 04060107.xhp msgctxt "" @@ -54073,7 +54073,7 @@ "par_id3153362\n" "help.text" msgid "The Protect Sheet or Protect Spreadsheet commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password." -msgstr "" +msgstr "Os comandos Proteger folha e Proteger documento impedem que sejam efetuadas alterações às células das folhas ou às folhas de um documento. Como opção, é possível definir uma palavra-passe. Se definir uma palavra-passe, só será possível remover a proteção se o utilizador introduzir a palavra-passe correta." #: 06060000.xhp msgctxt "" @@ -54116,7 +54116,7 @@ "par_id3148664\n" "help.text" msgid "Protects the cells in the current sheet from being modified. Choose Tools - Protect Sheet to open the Protect Sheet dialog in which you then specify sheet protection with or without a password." -msgstr "" +msgstr "Protege as células da folha atual contra modificações. Escolha Ferramentas - Proteger folha para abrir a caixa de diálogo Proteger folha, na qual pode especificar uma proteção de folha com ou sem palavra-passe." #: 06060100.xhp msgctxt "" @@ -65150,7 +65150,7 @@ "hd_id3146902\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Exemplos" #: func_networkdays.xhp msgctxt "" @@ -67096,7 +67096,7 @@ "hd_id241020160012172138\n" "help.text" msgid "Example" -msgstr "" +msgstr "Exemplo" #: func_workdays.intl.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-10 23:17+0000\n" +"PO-Revision-Date: 2017-04-01 15:38+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489187861.000000\n" +"X-POOTLE-MTIME: 1491061093.000000\n" #: 00000001.xhp msgctxt "" @@ -873,7 +873,7 @@ "par_id3147502\n" "help.text" msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)" -msgstr "" +msgstr "Servidor HTTP W3C (CERN) (Tipo de formato: MAP - CERN)" #: 00000002.xhp msgctxt "" @@ -881,7 +881,7 @@ "par_id3154011\n" "help.text" msgid "NCSA HTTP Server (Format type: MAP - NCSA)" -msgstr "" +msgstr "Servidor HTTP NCSA (Tipo de formato: MAP - NCSA)" #: 00000002.xhp msgctxt "" @@ -889,7 +889,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "" +msgstr "O $[officename] cria mapas de imagem para ambos os métodos. Selecione o formato na lista Tipo de ficheiro da caixa de diálogo Guardar como no Editor de mapa de imagem. São criados ficheiros distintos, que têm que ser enviados para o servidor. Será necessário consultar o fornecedor ou administrador de rede para obter informações sobre o tipo de mapas de imagem suportados pelo servidor, bem como a forma de acesso ao programa de avaliação." #: 00000002.xhp msgctxt "" @@ -905,7 +905,7 @@ "hd_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "" +msgstr "Mapa de imagem no cliente" #: 00000002.xhp msgctxt "" @@ -913,7 +913,7 @@ "par_id3151290\n" "help.text" msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked URL when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time." -msgstr "" +msgstr "A área da imagem ou moldura na qual o utilizador pode clicar é indicada pela exibição do URL associado, sempre que o indicador do rato passar sobre a área. O mapa de imagem é armazenado numa camada sob a imagem e contém informações sobre as regiões referenciadas. A única desvantagem dos mapas de imagem executados no posto consiste em não serem abertos pelos navegadores web mais antigos. Contudo, esta desvantagem será resolvida no momento necessário." #: 00000002.xhp msgctxt "" @@ -921,7 +921,7 @@ "par_id3149664\n" "help.text" msgid "When saving the ImageMap, select the file type SIP - StarView ImageMap. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click Apply. Nothing more is necessary. Client Side ImageMaps saved in HTML format are inserted directly into the page in HTML code." -msgstr "" +msgstr "Ao guardar o mapa de imagem, selecione o tipo de ficheiro SIP - StarView ImageMap. Desta forma, é possível guardar diretamente o mapa de imagem num formato que pode ser aplicado a todas as imagens ou molduras ativas existentes num documento. No entanto, se quiser utilizar apenas o mapa de imagem na imagem ou moldura de texto atual, não é necessário guardá-lo num formato especial. Após terem sido definidas as regiões, basta clicar em Aplicar. Não é necessário executar outra ação. Os mapas de imagem executados no cliente, guardados em formato HTML, são inseridos diretamente na página como código HTML." #: 00000002.xhp msgctxt "" @@ -985,7 +985,7 @@ "par_id3147330\n" "help.text" msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used." -msgstr "" +msgstr "SGML significa \"Standard Generalized Markup Language\". O SGML é baseado na ideia de que os documentos possuem elementos estruturais e outros elementos semânticos que podem ser descritos sem referência ao modo como os mesmos deverão ser apresentados. A apresentação real de um documento dessa natureza pode variar, dependendo do suporte de saída e das preferências de estilo. Em textos estruturados, o SGML define não só estruturas (em DTD = Document Type Definition - Definição de Tipo de Documento), como garante igualmente que estas são utilizadas de forma consistente." #: 00000002.xhp msgctxt "" @@ -993,7 +993,7 @@ "par_id3148747\n" "help.text" msgid "HTML is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages." -msgstr "" +msgstr "HTML é uma aplicação especializada de SGML. Isto significa que a maioria dos navegadores web apenas permite um intervalo limitado de padrões SGML e que quase todos os sistemas ativos para SGML podem produzir páginas HTML atrativas." #: 00000002.xhp msgctxt "" @@ -1041,7 +1041,7 @@ "par_id3156360\n" "help.text" msgid "HTML pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags

              at the beginning and

              at the end of the title. Some tags only appear on their own such as
              for a line break or to link a graphic." -msgstr "" +msgstr "As páginas HTML contêm determinadas instruções estruturais e de formatação designadas por controlos. Os controlos são palavras de código, delimitadas por parênteses, na linguagem de descrição de documentos HTML. Muitos controlos contêm referências a hiperligações e texto entre o parêntese de abertura e o parêntese de fecho. Por exemplo, os títulos estão assinalados pelos controlos

              no início e

              no fim do título. Alguns controlos aparecem isolados, tais como
              numa quebra de linha, ou para ligar a um objeto gráfico." #: 00000002.xhp msgctxt "" @@ -1573,7 +1573,7 @@ "30\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: 00000004.xhp msgctxt "" @@ -1607,7 +1607,7 @@ "39\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: 00000004.xhp msgctxt "" @@ -10116,7 +10116,7 @@ "par_id3163822\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Borders tab" -msgstr "" +msgstr "Escolha Formatar - Moldura e objeto - Propriedades - Contornos" #: 00040500.xhp msgctxt "" @@ -10212,7 +10212,7 @@ "par_id3150592\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Area tab" -msgstr "" +msgstr "Escolha Formatar - Moldura e objeto - Propriedades - Área" #: 00040500.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-10 23:18+0000\n" +"PO-Revision-Date: 2017-04-29 14:33+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489187936.000000\n" +"X-POOTLE-MTIME: 1493476398.000000\n" #: 01010000.xhp msgctxt "" @@ -172,7 +172,7 @@ "66\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Cria uma nova apresentação ($[officename] Impress). " #: 01010000.xhp msgctxt "" @@ -434,7 +434,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Cria uma nova apresentação ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -655,7 +655,7 @@ "104\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: 01010100.xhp msgctxt "" @@ -2208,7 +2208,7 @@ "hd_id3147250\n" "help.text" msgid "Up One Level" -msgstr "" +msgstr "Subir um nível" #: 01020000.xhp msgctxt "" @@ -2885,7 +2885,7 @@ "19\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: 01070000.xhp msgctxt "" @@ -3141,7 +3141,7 @@ "4\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: 01070001.xhp msgctxt "" @@ -44608,7 +44608,7 @@ "hd_id7700430\n" "help.text" msgid "Filling in form fields" -msgstr "A preencher campos de formulário" +msgstr "Preencher campos de formulário" #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-02-25 16:10+0000\n" +"PO-Revision-Date: 2017-04-01 15:38+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488039010.000000\n" +"X-POOTLE-MTIME: 1491061119.000000\n" #: 02000000.xhp msgctxt "" @@ -11012,7 +11012,7 @@ "par_idN1057F\n" "help.text" msgid "Up One Level" -msgstr "Um nível acima" +msgstr "Subir um nível" #: menufilesave.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-24 23:55+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-26 13:31+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490399719.000000\n" +"X-POOTLE-MTIME: 1493213487.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Escolher" +msgid "Pick" +msgstr "" #: 01010501.xhp msgctxt "" @@ -6068,7 +6068,7 @@ "par_id3146898\n" "help.text" msgid "If the Images and objects option is not selected, no graphics will be loaded from the Internet. Graphics within a table and without an indication of their size can cause display problems when using an older HTML standard on the browsed page." -msgstr "" +msgstr "Se a opção Imagens e objetos não estiver selecionada, as imagens não serão carregadas da Internet. As imagens de uma tabela sem a indicação do seu tamanho, podem causar problemas de visualização se utilizarem um padrão HTML mais antigo na página que está a ser visualizada." #: 01040200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/simpress/00.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/simpress/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/simpress/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 16:53+0000\n" +"PO-Revision-Date: 2017-04-01 16:45+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467823986.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491065134.000000\n" #: 00000004.xhp msgctxt "" @@ -782,7 +782,7 @@ "12\n" "help.text" msgid "Choose Slide - Slide Master Design" -msgstr "" +msgstr "Escolha Diapositivo - Design do modelo global de diapositivos" #: 00000406.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-19 23:16+0000\n" +"PO-Revision-Date: 2017-04-01 16:54+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487546219.000000\n" +"X-POOTLE-MTIME: 1491065644.000000\n" #: 01170000.xhp msgctxt "" @@ -492,7 +492,7 @@ "2\n" "help.text" msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files." -msgstr "" +msgstr "Abre o navegador, no qual pode navegar entre os diversos diapositivos ou ficheiros abertos." #: 02110000.xhp msgctxt "" @@ -563,7 +563,7 @@ "12\n" "help.text" msgid "Jumps to the first slide in the slide show." -msgstr "" +msgstr "Recua para o primeiro diapositivo da apresentação." #: 02110000.xhp msgctxt "" @@ -598,7 +598,7 @@ "15\n" "help.text" msgid "Moves back one slide in the slide show." -msgstr "" +msgstr "Recua um diapositivo na apresentação." #: 02110000.xhp msgctxt "" @@ -633,7 +633,7 @@ "18\n" "help.text" msgid "Move forward one slide in the slide show." -msgstr "" +msgstr "Avança um diapositivo na apresentação." #: 02110000.xhp msgctxt "" @@ -668,7 +668,7 @@ "21\n" "help.text" msgid "Jumps to the last slide in the slide show." -msgstr "" +msgstr "Avança para o último diapositivo da apresentação." #: 02110000.xhp msgctxt "" @@ -703,7 +703,7 @@ "24\n" "help.text" msgid "Drag and drop slides and named objects into the active slide. You can only insert slides and named objects from a saved file. You can only insert named objects as copies." -msgstr "" +msgstr "Arraste e largue os diapositivos e/ou objetos para o diapositivo ativo. Apenas pode inserir diapositivos e objetos de um ficheiro guardado. Só é possível inserir objetos nomeados como cópias." #: 02110000.xhp msgctxt "" @@ -842,7 +842,7 @@ "37\n" "help.text" msgid "Lists available slides. Double-click a slide to make it the active slide." -msgstr "" +msgstr "Lista os diapositivos disponíveis. Clique duas vezes no diapositivo para o tornar ativo." #: 02110000.xhp msgctxt "" @@ -860,7 +860,7 @@ "35\n" "help.text" msgid "Lists available $[officename] files. Select a file to display the contents you can insert." -msgstr "" +msgstr "Lista os ficheiros do $[officename] disponíveis. Selecione um ficheiro para ver o conteúdo que pode inserir." #: 02120000.xhp msgctxt "" @@ -2159,7 +2159,7 @@ "par_id083120160418133174\n" "help.text" msgid "Header and footer dialog" -msgstr "" +msgstr "Caixa de diálogo Cabeçalho e rodapé" #: 03152000.xhp msgctxt "" @@ -6768,7 +6768,7 @@ "bm_id3153818\n" "help.text" msgid "presentations; settings for slide shows; settings for presentations; window / full screen multiple displays" -msgstr "" +msgstr "apresentações; definições apresentações de diapositivos; definições apresentações; janela/ecrã completo vários monitores" #: 06080000.xhp msgctxt "" @@ -6904,7 +6904,7 @@ "hd_id3145593\n" "help.text" msgid "Loop and repeat after" -msgstr "" +msgstr "Ciclo e repetir após" #: 06080000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 23:43+0000\n" +"PO-Revision-Date: 2017-04-26 13:31+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490399039.000000\n" +"X-POOTLE-MTIME: 1493213505.000000\n" #: 00000004.xhp msgctxt "" @@ -1104,7 +1104,7 @@ "par_id3155597\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Table of Objects is the selected type)" -msgstr "Escolha Inserir - Índice remissivo e índice - Índice remissivo, índice ou bibliografia - Entradas (se o tipo selecionado for Tabela de objetos)" +msgstr "Escolha Inserir - Índice remissivo e índice - Índice remissivo, índice ou bibliografia - Entradas (se o tipo selecionado for Índice de objetos)" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-27 22:43+0000\n" +"PO-Revision-Date: 2017-04-26 13:34+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490654615.000000\n" +"X-POOTLE-MTIME: 1493213672.000000\n" #: 01120000.xhp msgctxt "" @@ -11864,7 +11864,7 @@ "2\n" "help.text" msgid "The following options are available when you select Table of Objects as the index type." -msgstr "Estão disponíveis as seguintes opções quando se seleciona Tabela de objetos como o tipo de índice." +msgstr "Estão disponíveis as seguintes opções quando se seleciona Índice de objetos como o tipo de índice." #: 04120216.xhp msgctxt "" @@ -11882,7 +11882,7 @@ "4\n" "help.text" msgid "Select the object types that you want to include in a table of objects." -msgstr "Selecione os tipos de objetos que pretende incluir numa tabela (índice) de objetos." +msgstr "Selecione os tipos de objetos que pretende incluir no índice de objetos." #: 04120217.xhp msgctxt "" @@ -12714,7 +12714,7 @@ "tit\n" "help.text" msgid "Entries (table of objects)" -msgstr "Entradas (tabela de objetos)" +msgstr "Entradas (índice de objetos)" #: 04120226.xhp msgctxt "" @@ -12723,7 +12723,7 @@ "1\n" "help.text" msgid "Entries (table of objects)" -msgstr "Entradas (tabela de objetos)" +msgstr "Entradas (índice de objetos)" #: 04120226.xhp msgctxt "" @@ -12732,7 +12732,7 @@ "2\n" "help.text" msgid "Specify the format for the entries in a Table of Objects. " -msgstr "Especifique o formato das entradas numa Tabela de objetos. " +msgstr "Especifique o formato das entradas num índice de objetos." #: 04120226.xhp msgctxt "" @@ -12741,7 +12741,7 @@ "3\n" "help.text" msgid "A Table of Objects only has one index level." -msgstr "Uma tabela de objetos só possui um nível de índice." +msgstr "Um índice de objetos só possui um nível de índice." #: 04120227.xhp msgctxt "" @@ -15152,7 +15152,7 @@ "hd_id3147581\n" "help.text" msgid "Line numbering" -msgstr "" +msgstr "Numeração de linhas" #: 05030800.xhp msgctxt "" @@ -15160,7 +15160,7 @@ "par_id3152771\n" "help.text" msgid "Specify the Line numbering options. To add line numbers to your document, choose Tools - Line Numbering." -msgstr "" +msgstr "Especifique as opções de Numeração de linhas. Para adicionar números de linhas ao documento, escolha Ferramentas - Numeração de linhas." #: 05030800.xhp msgctxt "" @@ -15168,7 +15168,7 @@ "hd_id3153345\n" "help.text" msgid "Include this paragraph in line numbering" -msgstr "" +msgstr "Incluir este parágrafo na numeração das linhas" #: 05030800.xhp msgctxt "" @@ -15176,7 +15176,7 @@ "par_id3156267\n" "help.text" msgid "Includes the current paragraph in the line numbering." -msgstr "" +msgstr "Inclui o parágrafo atual na numeração de linhas." #: 05030800.xhp msgctxt "" @@ -15184,7 +15184,7 @@ "hd_id3151026\n" "help.text" msgid "Restart at this paragraph" -msgstr "" +msgstr "Reiniciar neste parágrafo" #: 05030800.xhp msgctxt "" @@ -15192,7 +15192,7 @@ "par_id3149168\n" "help.text" msgid "Restarts the line numbering at the current paragraph, or at the number that you enter." -msgstr "" +msgstr "Reinicia a numeração das linhas no parágrafo atual, ou no número que introduzir." #: 05030800.xhp msgctxt "" @@ -15200,7 +15200,7 @@ "hd_id3145775\n" "help.text" msgid "Start with" -msgstr "" +msgstr "Iniciar com" #: 05030800.xhp msgctxt "" @@ -15208,7 +15208,7 @@ "par_id3149355\n" "help.text" msgid "Enter the number at which to restart the line numbering" -msgstr "" +msgstr "Introduza o número a partir do qual reinicia a numeração de linhas" #: 05040000.xhp msgctxt "" @@ -15660,7 +15660,7 @@ "hd_id3154767\n" "help.text" msgid "Footnote" -msgstr "" +msgstr "Nota de rodapé" #: 05040600.xhp msgctxt "" @@ -15668,7 +15668,7 @@ "par_id3149351\n" "help.text" msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document." -msgstr "" +msgstr "Especifica as opções de esquema para as notas de rodapé, incluindo a linha que separa a nota de rodapé do corpo do documento." #: 05040600.xhp msgctxt "" @@ -15700,7 +15700,7 @@ "par_id3147514\n" "help.text" msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes." -msgstr "" +msgstr "Ajustar automaticamente a altura da área do rodapé de acordo com o número de notas de rodapé." #: 05040600.xhp msgctxt "" @@ -15708,7 +15708,7 @@ "hd_id3154099\n" "help.text" msgid "Maximum footnote height" -msgstr "" +msgstr "Altura máxima da nota de rodapé" #: 05040600.xhp msgctxt "" @@ -15716,7 +15716,7 @@ "par_id3149807\n" "help.text" msgid "Sets a maximum height for the footnote area. Enable this option, then enter the height." -msgstr "" +msgstr "Define uma altura máxima para a área da nota de rodapé. Ative esta opção e introduza a altura." #: 05040600.xhp msgctxt "" @@ -15724,7 +15724,7 @@ "par_id3154568\n" "help.text" msgid "Enter the maximum height for the footnote area." -msgstr "" +msgstr "Introduza a altura máxima para a área da nota de rodapé." #: 05040600.xhp msgctxt "" @@ -15732,7 +15732,7 @@ "hd_id3151318\n" "help.text" msgid "Space to text" -msgstr "" +msgstr "Espaço até ao texto:" #: 05040600.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-21 15:55+0000\n" +"PO-Revision-Date: 2017-04-29 14:32+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485014111.000000\n" +"X-POOTLE-MTIME: 1493476368.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -1940,7 +1940,7 @@ "label\n" "string.text" msgid "No Fill" -msgstr "Não preencher" +msgstr "Sem preenchimento" #: notebookbar_groups.ui msgctxt "" @@ -2678,7 +2678,7 @@ "label\n" "string.text" msgid "_Loop and repeat after:" -msgstr "Enro_lar e repetir após:" +msgstr "Cic_lo e repetir após:" #: presentationdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 22:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:44+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484863944.000000\n" +"X-POOTLE-MTIME: 1492263855.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierárquico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Modo de preenchimento de formato" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Novo estilo a partir da seleção" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Atualizar estilo" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-19 22:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:44+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484864138.000000\n" +"X-POOTLE-MTIME: 1492263873.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Todas as marcas aqui mencionadas, registadas ou não, são propriedade dos seus detentores.\n" "\n" -"Copyright © 2000-2016, os colaboradores do LibreOffice. Todos os direitos reservados.\n" +"Copyright © 2000-2017, os colaboradores do LibreOffice. Todos os direitos reservados.\n" "\n" "Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Aceda ao sítio http://www.libreoffice.org/ para saber mais detalhes." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-08-22 23:36+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:44+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1471909011.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492263881.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ msgstr "Texto formatado [RTF]" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Texto formatado [RTF]" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 22:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:44+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484864290.000000\n" +"X-POOTLE-MTIME: 1492263891.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Húngaro (alfabeto rúnico)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Inglês (Malásia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-21 16:10+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-05-02 21:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485015028.000000\n" +"X-POOTLE-MTIME: 1493761058.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Não foi possível carregar os objetos SmartArts. Guardar no Microsoft Office 2010 ou posterior teria evitado este problema." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/source/tbxctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/source/tbxctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/source/tbxctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/source/tbxctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-21 16:11+0000\n" +"PO-Revision-Date: 2017-04-29 14:32+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485015069.000000\n" +"X-POOTLE-MTIME: 1493476373.000000\n" #: colrctrl.src msgctxt "" @@ -478,7 +478,7 @@ "RID_SVXSTR_NOFILL\n" "string.text" msgid "No Fill" -msgstr "Não preencher" +msgstr "Sem preenchimento" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-02-15 22:14+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-15 13:45+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487196897.000000\n" +"X-POOTLE-MTIME: 1492263905.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Sair" +msgid "_Restart in Normal Mode" +msgstr "_Reiniciar no modo normal" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/sw/source/uibase/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/sw/source/uibase/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/sw/source/uibase/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/sw/source/uibase/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 22:28+0000\n" +"PO-Revision-Date: 2017-04-26 13:05+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484864881.000000\n" +"X-POOTLE-MTIME: 1493211922.000000\n" #: attrdesc.src msgctxt "" @@ -896,7 +896,7 @@ "STR_TOX_OBJ\n" "string.text" msgid "Table of Objects" -msgstr "Tabela de objetos" +msgstr "Índice de objetos" #: initui.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-24 23:49+0000\n" +"PO-Revision-Date: 2017-04-26 13:05+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490399396.000000\n" +"X-POOTLE-MTIME: 1493211926.000000\n" #: abstractdialog.ui msgctxt "" @@ -17351,7 +17351,7 @@ "5\n" "stringlist.text" msgid "Table of Objects" -msgstr "Tabela de objetos" +msgstr "Índice de objetos" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-13 12:49+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:00+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484311773.000000\n" +"X-POOTLE-MTIME: 1492020034.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Colaboradores do LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000 - 2017 Colaboradores do LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-01-26 12:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 17:27+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485432354.000000\n" +"X-POOTLE-MTIME: 1492018046.000000\n" #: 01120000.xhp msgctxt "" @@ -5677,16 +5677,16 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-26 12:12+0000\n" +"PO-Revision-Date: 2017-04-12 17:31+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485432730.000000\n" +"X-POOTLE-MTIME: 1492018262.000000\n" #: 01110000.xhp msgctxt "" @@ -16978,7 +16978,7 @@ "bm_id3083278\n" "help.text" msgid "page styles;editing/applying with statusbar" -msgstr "estilos de páginas;editar/aplicar com barra de status" +msgstr "estilos de página;editar/aplicar com barra de status" #: 20020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-26 12:33+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-12 17:29+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485433994.000000\n" +"X-POOTLE-MTIME: 1492018192.000000\n" #: 01000000.xhp msgctxt "" @@ -2453,8 +2453,8 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" -msgstr "Escolher" +msgid "Pick" +msgstr "Escolher" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-03 20:07+0000\n" +"PO-Revision-Date: 2017-04-12 17:31+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483474046.000000\n" +"X-POOTLE-MTIME: 1492018284.000000\n" #: 00000004.xhp msgctxt "" @@ -1404,7 +1404,7 @@ "par_id3153536\n" "help.text" msgid "Choose View - Styles and Formatting - open context menu New/Modify (for Page Styles)" -msgstr "Escolha Exibir - Estilos e formatação e abra o menu de contexto Novo/Modificar (para Estilos de páginas)" +msgstr "Escolha Exibir - Estilos e formatação e abra o menu de contexto Novo/Modificar (para Estilos de página)" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-11 14:56+0000\n" -"Last-Translator: Raul \n" +"PO-Revision-Date: 2017-04-12 17:32+0000\n" +"Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484146607.000000\n" +"X-POOTLE-MTIME: 1492018372.000000\n" #: 01120000.xhp msgctxt "" @@ -14329,7 +14329,7 @@ "par_id3145827\n" "help.text" msgid "Adds or removes a header from the page style that you select in the submenu. The header is added to all of the pages that use the same page style. In a new document, only the \"Default\" page style is listed. Other page styles are added to the list after you apply them in the document." -msgstr "Adiciona ou remove um cabeçalho do estilo de página que você selecionar no submenu. O cabeçalho é adicionado a todas as páginas que usam o mesmo estilo de página. Em um novo documento, é listado apenas o estilo de página \"Padrão\". Outros estilos de páginas serão adicionados à lista depois que você aplicá-los ao documento." +msgstr "Adiciona ou remove um cabeçalho do estilo de página que você selecionar no submenu. O cabeçalho é adicionado a todas as páginas que usam o mesmo estilo de página. Em um novo documento, é listado apenas o estilo de página \"Padrão\". Outros estilos de página serão adicionados à lista depois que você aplicá-los ao documento." #: 04220000.xhp msgctxt "" @@ -21091,7 +21091,7 @@ "13\n" "help.text" msgid "Use Page Styles to organize the structure of the document, and to add page numbers. You can also specify the page style to apply to the first page that follows after a page break." -msgstr "Utilize a opção Estilos de Página para organizar a estrutura do documento e adicionar números de páginas. Você também pode especificar o estilo de página a ser aplicado à primeira página posterior à quebra de página." +msgstr "Utilize a opção Estilos de página para organizar a estrutura do documento e adicionar números de páginas. Você também pode especificar o estilo de página a ser aplicado à primeira página posterior à quebra de página." #: 05130000.xhp msgctxt "" @@ -21861,7 +21861,7 @@ "par_id3147220\n" "help.text" msgid "Displays formatting styles for pages. Use page styles to determine page layouts, including the presence of headers and footers." -msgstr "Exibe estilos de formatação de páginas. Utilize estilos de páginas para determinar leiautes de página, incluindo a presença de cabeçalhos e rodapés." +msgstr "Exibe estilos de formatação de páginas. Utilize estilos de página para determinar leiautes de página, incluindo a presença de cabeçalhos e rodapés." #: 05140000.xhp msgctxt "" @@ -22808,7 +22808,7 @@ "15\n" "help.text" msgid "Loads the page styles from the selected document into the current document." -msgstr "Carrega os estilos de páginas do documento selecionado no documento atual." +msgstr "Carrega os estilos de página do documento selecionado no documento atual." #: 05170000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-26 13:12+0000\n" +"PO-Revision-Date: 2017-04-12 17:41+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485436325.000000\n" +"X-POOTLE-MTIME: 1492018917.000000\n" #: anchor_object.xhp msgctxt "" @@ -1292,7 +1292,7 @@ "par_id478530\n" "help.text" msgid "Page Backgrounds as Page Styles" -msgstr "Planos de fundo de páginas como estilos de página" +msgstr "Planos de fundo de página como estilos de página" #: border_character.xhp msgctxt "" @@ -1620,7 +1620,7 @@ "1\n" "help.text" msgid "In Writer, you define borders for page styles, not individual pages. All changes made to borders apply to all pages that use the same page style. Note that page style changes cannot be undone by the Undo function in $[officename]." -msgstr "No Writer, você pode definir bordas para estilos de páginas e não para páginas individuais. Todas as alterações realizadas nas bordas serão aplicadas a todas as páginas que utilizam o mesmo estilo de página. Observe que as alterações no estilo de página não podem ser desfeitas através da função Desfazer do $[officename]." +msgstr "No Writer, você pode definir bordas para estilos de página e não para páginas individuais. Todas as alterações realizadas nas bordas serão aplicadas a todas as páginas que utilizam o mesmo estilo de página. Observe que as alterações no estilo de página não podem ser desfeitas através da função Desfazer do $[officename]." #: border_page.xhp msgctxt "" @@ -2961,7 +2961,7 @@ "par_id3150503\n" "help.text" msgid "Open a new text document, choose View - Styles and Formatting, and then click the Page Styles icon." -msgstr "Abra um novo documento de texto, escolha Formatar - Estilos e formatação e, em seguida, clique no ícone Estilos de páginas." +msgstr "Abra um novo documento de texto, escolha Formatar - Estilos e formatação e, em seguida, clique no ícone Estilos de página." #: change_header.xhp msgctxt "" @@ -3582,7 +3582,7 @@ "tit\n" "help.text" msgid "Alternating Page Styles on Odd and Even Pages" -msgstr "Alternar estilos de páginas em páginas ímpares e pares" +msgstr "Alternar estilos de página em páginas ímpares e pares" #: even_odd_sdw.xhp msgctxt "" @@ -3590,7 +3590,7 @@ "bm_id3153407\n" "help.text" msgid "page styles; left and right pages blank pages with alternating page styles empty page with alternating page styles pages; left and right pages formatting; even/odd pages title pages; page styles First Page page style Left Page page style right pages even/odd pages;formatting" -msgstr "estilos de página;páginas à esquerda e à direitapáginas em branco com estilos de páginas alternadospáginas vazias com estilos de página alternadospáginas;páginas à esquerda e à direitaformatar;páginas pares/ímparespáginas de títulos;estilos de páginasestilo de página Primeira páginaestilo de página Página à esquerdapáginas à direitapáginas pares/ímpares;formatar" +msgstr "estilos de página;páginas à esquerda e à direitapáginas em branco com estilos de página alternadospáginas vazias com estilos de página alternadospáginas;páginas à esquerda e à direitaformatar;páginas pares/ímparespáginas de títulos;estilos de páginaestilo de página Primeira páginaestilo de página Página à esquerdapáginas à direitapáginas pares/ímpares;formatar" #: even_odd_sdw.xhp msgctxt "" @@ -3614,7 +3614,7 @@ "par_id3147126\n" "help.text" msgid "$[officename] can automatically apply alternating page styles on even (left) and odd pages (right) in your document. For example, you can use page styles to display different headers and footers on even and odd pages. The current page style is displayed in the Status Bar at the bottom of the workplace." -msgstr "O $[officename] pode automaticamente aplicar estilos de páginas alternados em páginas pares (à esquerda) do documento. Por exemplo, você pode usar estilos de página para exibir diferentes cabeçalhos e rodapés em páginas pares e ímpares. O estilo de página atual aparece na Barra de status na parte inferior da área de trabalho." +msgstr "O $[officename] pode automaticamente aplicar estilos de página alternados em páginas pares (à esquerda) do documento. Por exemplo, você pode usar estilos de página para exibir diferentes cabeçalhos e rodapés em páginas pares e ímpares. O estilo de página atual aparece na Barra de status na parte inferior da área de trabalho." #: even_odd_sdw.xhp msgctxt "" @@ -3622,7 +3622,7 @@ "hd_id8194219\n" "help.text" msgid "To Set Up Alternating Page Styles" -msgstr "Para configurar estilos de páginas alternadas" +msgstr "Para configurar estilos de página alternadas" #: even_odd_sdw.xhp msgctxt "" @@ -3678,7 +3678,7 @@ "par_id3155561\n" "help.text" msgid "Go to the first page in your document, and double-click \"Right Page\" in the list of page styles in the Styles and Formatting window." -msgstr "Vá para a primeira página do documento e clique duas vezes em \"Página direita\" na lista de estilos de páginas da janela Estilos e formatação." +msgstr "Vá para a primeira página do documento e clique duas vezes em \"Página direita\" na lista de estilos de página da janela Estilos e formatação." #: even_odd_sdw.xhp msgctxt "" @@ -6067,7 +6067,7 @@ "par_id3146876\n" "help.text" msgid "To use different headers or footers in your document, you must add them to different Page Styles, and then apply the styles to the pages where you want the headers or footer to appear." -msgstr "Para utilizar diferentes cabeçalhos e rodapés documento, adicione-os a diferentes estilos de páginas e, em seguida, aplique os estilos às páginas nas deseja exibir os cabeçalhos ou rodapés." +msgstr "Para utilizar diferentes cabeçalhos e rodapés documento, adicione-os a diferentes estilos de página e, em seguida, aplique os estilos às páginas nas deseja exibir os cabeçalhos ou rodapés." #: header_footer.xhp msgctxt "" @@ -6091,7 +6091,7 @@ "par_id3153174\n" "help.text" msgid "Page Styles" -msgstr "Estilos de páginas" +msgstr "Estilos de página" #: header_pagestyles.xhp msgctxt "" @@ -6155,7 +6155,7 @@ "par_id3150946\n" "help.text" msgid "Choose View - Styles and Formatting and click the Page Styles icon in the Styles and Formatting sidebar deck." -msgstr "Escolha Formatar - Estilos e formatação e clique no ícone Estilos de páginas no painel Estilos e formatação da barra lateral." +msgstr "Escolha Formatar - Estilos e formatação e clique no ícone Estilos de página no painel Estilos e formatação da barra lateral." #: header_pagestyles.xhp msgctxt "" @@ -6203,7 +6203,7 @@ "par_id3150714\n" "help.text" msgid "In the Styles and Formatting window, right-click \"Left Page\" in the list of page styles and choose Modify." -msgstr "Na janela Estilos e formatação, clique com o botão direito em \"Página esquerda\" na lista de estilos de páginas e, em seguida, escolha Modificar." +msgstr "Na janela Estilos e formatação, clique com o botão direito em \"Página esquerda\" na lista de estilos de página e, em seguida, escolha Modificar." #: header_pagestyles.xhp msgctxt "" @@ -10101,7 +10101,7 @@ "par_idN10812\n" "help.text" msgid "$[officename] uses page styles to specify the background of the pages in a document. For example, to change the page background of one or more pages in a document to a watermark, you need to create a page style that uses the watermark background, and then apply the page style to the pages." -msgstr "O $[officename] utiliza estilos de páginas para especificar o plano de fundo das páginas de um documento. Por exemplo, de modo a alterar o plano de fundo de uma ou mais páginas de um documento para uma marca d'água, você precisará criar um estilo de página que use o plano de fundo de marca d'água e, em seguida, aplicar o estilo de página às páginas." +msgstr "O $[officename] utiliza estilos de página para especificar o plano de fundo das páginas de um documento. Por exemplo, de modo a alterar o plano de fundo de uma ou mais páginas de um documento para uma marca d'água, você precisará criar um estilo de página que use o plano de fundo de marca d'água e, em seguida, aplicar o estilo de página às páginas." #: pagebackground.xhp msgctxt "" @@ -10125,7 +10125,7 @@ "par_idN1082F\n" "help.text" msgid "Click the Page Styles icon." -msgstr "Clique no ícone Estilos de páginas." +msgstr "Clique no ícone Estilos de página." #: pagebackground.xhp msgctxt "" @@ -10133,7 +10133,7 @@ "par_idN10837\n" "help.text" msgid "In the list of page styles, right-click an item, and then choose New." -msgstr "Na lista de estilos de páginas, clique com o botão direito do mouse em um item e, em seguida, e escolha Novo." +msgstr "Na lista de estilos de página, clique com o botão direito do mouse em um item e, em seguida, e escolha Novo." #: pagebackground.xhp msgctxt "" @@ -10221,7 +10221,7 @@ "par_idN1089A\n" "help.text" msgid "Click the Page Styles icon." -msgstr "Clique no ícone Estilos de páginas." +msgstr "Clique no ícone Estilos de página." #: pagebackground.xhp msgctxt "" @@ -10669,7 +10669,7 @@ "par_id6418042\n" "help.text" msgid "All page properties for Writer text documents, like for example the page orientation, are defined by page styles. By default, a new text document uses the “Default” page style for all pages. If you open an existing text document, different page styles may have been applied to the different pages." -msgstr "Todas as propriedades de página dos documentos de texto do Writer, como por exemplo a orientação da página, são definidas por estilos de página. Por padrão, um novo documento de texto utiliza o estilo de página “Padrão” para todas as páginas. Se você abrir um documento existente, estilos de páginas diferentes podem ter sido utilizados em diferentes páginas." +msgstr "Todas as propriedades de página dos documentos de texto do Writer, como por exemplo a orientação da página, são definidas por estilos de página. Por padrão, um novo documento de texto utiliza o estilo de página “Padrão” para todas as páginas. Se abrir um documento existente, estilos de página diferentes podem ter sido utilizados em diferentes páginas." #: pageorientation.xhp msgctxt "" @@ -10781,7 +10781,7 @@ "par_idN10741\n" "help.text" msgid "Click the Page Styles icon." -msgstr "Clique no ícone Estilos de páginas." +msgstr "Clique no ícone Estilos de página." #: pageorientation.xhp msgctxt "" @@ -10837,7 +10837,7 @@ "par_id1658375\n" "help.text" msgid "Now you have defined a proper page style with the name \"My Landscape\". To apply the new style, double-click the \"My Landscape\" page style in the Styles and Formatting window. All pages in the current scope of page styles will be changed. If you defined the \"next style\" to be a different style, only the first page of the current scope of page styles will be changed." -msgstr "Você agora definiu um estilo de página apropriado com o nome \"Página deitada\". Para aplicar o novo estilo, faça um clique duplo no estilo de página \"Página deitada\" na janela Estilos e formatação. Todas as páginas com este escopo de estilo de página serão alteradas. Se você definiu o \"próximo estilo\" como sendo um estilo diferente, somente a primeira página do escopo atual de páginas será alterada." +msgstr "Você agora definiu um estilo de página apropriado com o nome \"Página deitada\". Para aplicar o novo estilo, faça um clique duplo no estilo de página \"Página deitada\" na janela Estilos e formatação. Todas as páginas com este escopo de estilo de página serão alteradas. Se definiu o \"próximo estilo\" como sendo um estilo diferente, somente a primeira página do escopo atual de páginas será alterada." #: pageorientation.xhp msgctxt "" @@ -10957,7 +10957,7 @@ "tit\n" "help.text" msgid "Creating and Applying Page Styles" -msgstr "Criar e utilizar estilos de páginas" +msgstr "Criar e utilizar estilos de página" #: pagestyles.xhp msgctxt "" @@ -10965,7 +10965,7 @@ "bm_id7071138\n" "help.text" msgid "page styles;creating and applying defining;page styles styles;for pages" -msgstr "estilos de páginas;criar e aplicarestilos; para páginasdefinir;estilos de páginas" +msgstr "estilos de página;criar e aplicarestilos; para páginasdefinir;estilos de página" #: pagestyles.xhp msgctxt "" @@ -11005,7 +11005,7 @@ "par_id3153133\n" "help.text" msgid "Click the Page Styles icon." -msgstr "Clique no ícone Estilos de páginas." +msgstr "Clique no ícone Estilos de página." #: pagestyles.xhp msgctxt "" @@ -11013,7 +11013,7 @@ "par_id3149641\n" "help.text" msgid "In the list of page styles, right-click an item, and then choose New." -msgstr "Na lista de estilos de páginas, clique com o botão direito do mouse em um item e, em seguida, e escolha Novo." +msgstr "Na lista de estilos de página, clique com o botão direito do mouse em um item e, em seguida, e escolha Novo." #: pagestyles.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-09 20:55+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:02+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481316954.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492020143.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierárquico" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Modo de preenchimento de formato" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Novo estilo a partir da seleção" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Atualizar estilo" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-09 19:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:02+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481311404.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492020174.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" @@ -804,7 +804,7 @@ "\n" "Todas as marcas aqui mencionadas, registradas ou não, são de propriedade dos seus titulares.\n" "\n" -"Copyright © 2000-2016 os colaboradores do LibreOffice. Todos os direitos reservados.\n" +"Copyright © 2000-2017 os colaboradores do LibreOffice. Todos os direitos reservados.\n" "\n" "Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Acesse a página http://www.libreoffice.org/ para mais detalhes." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-13 21:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:03+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" "Language: pt_BR\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450043520.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492020205.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Texto formatado [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-09 21:01+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:03+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481317272.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492020210.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Húngaro (alfabeto rúnico)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Inglês (Malásia)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-11 23:15+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:04+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481498109.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492020248.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Não foi possível carregar todos os SmartArts. Salvar em Microsoft Office 2010 ou posterior resolveria este problema." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/pt-BR/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/pt-BR/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-01-13 11:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 18:04+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484307755.000000\n" +"X-POOTLE-MTIME: 1492020281.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Sair" +msgid "_Restart in Normal Mode" +msgstr "_Reiniciar em modo normal" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-16 13:59+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484575174.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 LibreOffice contribuitori." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 23:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5677,7 +5677,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5685,7 +5685,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 16:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-16 14:04+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484575467.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Ierarhic" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-16 14:11+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484575888.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME a fost publicat sub termenii licenței Mozilla Public License, v. 2.0. Copia licenței MPL se poate obține de pe adresa http://mozilla.org/MPL/2.0/.\n" -"\n" -"Notițele copyright referitoare la porțiunile sursei făcute de terțe părți, licențierea la unele părți a programului se pot găsi în fișierul LICENSE.html; alegeți Afișare licență pentru a citi detaliile exacte în limba engleză.\n" -"\n" -"Toate mărcile comerciale și mările comerciale înregistrate menționate aici sunt în proprietatea părților.\n" -"\n" -"Copyright © 2000–2016 LibreOffice contribuitori. Toate drepturile rezervate.\n" -"\n" -"Acest produs a fost crea de %OOOVENDOR, bazat pe OpenOffice.org, care este Copyright 2000, 2011 Oracle și/sau afiliați lui. %OOOVENDOR salută toți contribuitorii din comunitate. Pentru mai multe detalii vizitați http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-29 10:53+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1454064811.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-03 14:49+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483454972.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Maghiară (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:49+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-06-29 13:16+0000\n" +"Last-Translator: Ákos Nagy \n" "Language-Team: LANGUAGE \n" "Language: ro\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449863387.000000\n" +"X-POOTLE-MTIME: 1435583783.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ro/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ro/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ro/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ro/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 20:40+0000\n" "Last-Translator: Jobava \n" "Language-Team: LANGUAGE \n" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-18 18:03+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487440992.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 участники сообщества LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: 01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-08 13:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-03-30 10:17+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488979100.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1490869040.000000\n" #: 01120000.xhp msgctxt "" @@ -5711,7 +5711,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5719,7 +5719,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp @@ -53510,7 +53510,7 @@ "hd_id3153709\n" "help.text" msgid "Icon Set" -msgstr "" +msgstr "Набор значков" #: 05120000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-10-08 09:11+0000\n" "Last-Translator: bormant \n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.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: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-08 13:07+0000\n" +"PO-Revision-Date: 2017-03-30 10:17+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488978470.000000\n" +"X-POOTLE-MTIME: 1490869060.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1130,7 +1130,7 @@ "Label\n" "value.text" msgid "Conditional Formatting: Icon Set" -msgstr "Условное форматирование: Набор пиктограмм" +msgstr "Условное форматирование: Набор значков" #: CalcCommands.xcu msgctxt "" @@ -1139,7 +1139,7 @@ "ContextLabel\n" "value.text" msgid "Icon Set..." -msgstr "Набор пиктограмм..." +msgstr "Набор значков..." #: CalcCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: dialog\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 08:13+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484986410.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "По иерархии" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-06 18:17+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483726631.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME доступен в соответствии с условиями Mozilla Public License версии 2.0. Копию лицензии MPL можно найти на http://mozilla.org/MPL/2.0/.\n" -"\n" -"Дополнительные уведомления об авторских правах и условия лицензии на код третьих лиц, применяемые к отдельным частям программного обеспечения, изложены в файле LICENSE.html; выберите Показать лицензию для просмотра подробностей на английском языке.\n" -"\n" -"Все товарные знаки, упомянутые здесь, являются собственностью их владельцев.\n" -"\n" -"Copyright © 2000-2016 разработчики LibreOffice. Все права защищены.\n" -"\n" -"Этот продукт был создан %OOOVENDOR на основе OpenOffice.org, Copyright 2000, 2011 Oracle и/или её аффилированные лица. %OOOVENDOR признателен всем участникам сообщества, подробности смотрите по адресу http://www.libreoffice.org/ ." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: dialogs\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2015-12-13 10:37+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1450003066.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "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: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-24 19:03+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482606216.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Венгерский (венгерские руны)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: stbctrls\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-06 18:17+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483726642.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-15 16:32+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484497967.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "Выход" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Применить и перезапустить" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ru/wizards/source/formwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/ru/wizards/source/formwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ru/wizards/source/formwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ru/wizards/source/formwizard.po 2017-05-03 16:46:29.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-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-06-16 17:38+0000\n" +"PO-Revision-Date: 2017-03-30 10:18+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1466098730.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490869102.000000\n" #: dbwizres.src msgctxt "" @@ -4595,7 +4595,7 @@ "RID_WEBWIZARDDIALOG_START + 100\n" "string.text" msgid "Icon sets" -msgstr "Набор значков" +msgstr "Наборы значков" #: dbwizres.src msgctxt "" @@ -4889,7 +4889,7 @@ "RID_WEBWIZARDDIALOG_START +137\n" "string.text" msgid "Icon set:" -msgstr "Набор пиктограмм:" +msgstr "Набор значков:" #: dbwizres.src msgctxt "" @@ -4897,7 +4897,7 @@ "RID_WEBWIZARDDIALOG_START +138\n" "string.text" msgid "The icon set is used for presentations in HTML format." -msgstr "Набор пиктограмм используется для представления в HTML-формате." +msgstr "Набор значков используется для представления в HTML-формате." #: dbwizres.src msgctxt "" @@ -4953,7 +4953,7 @@ "RID_WEBWIZARDDIALOG_START +145\n" "string.text" msgid "" -msgstr "<без набора пиктограмм>" +msgstr "<без набора значков>" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 14:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476802389.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 02:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -719,6 +719,30 @@ msgid "Hierarchical" msgstr "Birutanwa" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 07:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467703464.000000\n" #: alienwarndialog.ui @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 20:45+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 19:38+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: rw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385498705.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449862731.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-23 23:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464045317.000000\n" +"X-POOTLE-MTIME: 1464045316.000000\n" #: imagemgr.src msgctxt "" @@ -3908,6 +3908,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:42+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: rw\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449862948.000000\n" +"X-POOTLE-MTIME: 1431517555.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/rw/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/rw/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/rw/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/rw/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 07:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476802756.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476802680.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 01:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457744516.000000\n" +"X-POOTLE-MTIME: 1457744514.000000\n" #: dialog.src msgctxt "" @@ -727,6 +727,30 @@ msgid "Hierarchical" msgstr "आधिपत्यक्रमावलीसंबन्धिनी" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 07:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467704922.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467704908.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-09-29 06:19+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:01+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sa_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411971543.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864088.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462791676.000000\n" +"X-POOTLE-MTIME: 1462791663.000000\n" #: imagemgr.src msgctxt "" @@ -3911,6 +3911,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 13:31+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sa_IN\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864311.000000\n" +"X-POOTLE-MTIME: 1431523907.000000\n" #: stbctrls.src msgctxt "" @@ -154,6 +154,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sa-IN/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sa-IN/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 08:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5094,16 +5094,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 15:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sat\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476802935.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476802804.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 01:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457745173.000000\n" +"X-POOTLE-MTIME: 1457745172.000000\n" #: dialog.src #, fuzzy @@ -782,6 +782,30 @@ msgid "Hierarchical" msgstr "थार लेकाते (~w)" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 07:28+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 07:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sat\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467703712.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467703679.000000\n" #: alienwarndialog.ui msgctxt "" @@ -806,7 +806,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-09-24 05:21+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:02+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sat\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411536075.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864176.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462792846.000000\n" +"X-POOTLE-MTIME: 1462792835.000000\n" #: imagemgr.src msgctxt "" @@ -3919,6 +3919,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:06+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 12:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sat\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864401.000000\n" +"X-POOTLE-MTIME: 1431520414.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sat/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sat/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sat/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sat/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 07:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5110,16 +5110,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 14:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476802776.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476802694.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 01:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457745447.000000\n" +"X-POOTLE-MTIME: 1457745439.000000\n" #: dialog.src msgctxt "" @@ -724,6 +724,30 @@ msgid "Hierarchical" msgstr "درجيوار" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 07:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 07:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467705254.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467705228.000000\n" #: alienwarndialog.ui msgctxt "" @@ -800,7 +800,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2014-08-19 10:48+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:01+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1408445336.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864066.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 10:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3922,6 +3922,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:05+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 14:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sd\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864325.000000\n" +"X-POOTLE-MTIME: 1431527905.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sd/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sd/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sd/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sd/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 08:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5093,16 +5093,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/si/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 14:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: si\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476802815.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476802712.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-06 17:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5695,7 +5695,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5703,7 +5703,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 17:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/si/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 01:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457745407.000000\n" +"X-POOTLE-MTIME: 1457745405.000000\n" #: dialog.src msgctxt "" @@ -731,6 +731,30 @@ msgid "Hierarchical" msgstr "ධූරාන්වයික" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/si/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 08:39+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 08:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: si\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467707952.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467707928.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/si/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 21:18+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 19:53+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385500687.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449863591.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/si/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462791889.000000\n" +"X-POOTLE-MTIME: 1462791888.000000\n" #: imagemgr.src msgctxt "" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/si/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:57+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 15:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: si\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449863825.000000\n" +"X-POOTLE-MTIME: 1431531544.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/si/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/si/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/si/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/si/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 08:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5080,16 +5080,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-06 19:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sid\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476802972.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1481051187.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 20:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Sidama Localizers\n" @@ -5724,22 +5724,20 @@ msgstr "Assiishshubba" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 20:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Malaate Alemu\n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-12 01:17+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 18:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Sdaama ICT\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1457745439.000000\n" +"X-POOTLE-MTIME: 1481309281.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Deerraantete" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 08:40+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 19:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sid\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467708012.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1481311408.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,19 +3,19 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 21:22+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 19:54+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Sdaama ICT\n" "Language: sid\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1385500944.000000\n" +"X-POOTLE-MTIME: 1449863652.000000\n" #: addresstemplate.src msgctxt "" @@ -339,6 +339,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-09 11:12+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 20:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Sidama translators\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1462792367.000000\n" +"X-POOTLE-MTIME: 1481313616.000000\n" #: imagemgr.src msgctxt "" @@ -3894,6 +3894,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:58+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 22:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Sdaama ICT\n" "Language: sid\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1449863890.000000\n" +"X-POOTLE-MTIME: 1481321439.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sid/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sid/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sid/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sid/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LO4-1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-10 01:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -5087,16 +5087,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 14:22+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484835721.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 prispievatelia LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-22 08:56+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487753779.000000\n" #: 01120000.xhp @@ -5709,22 +5709,20 @@ msgstr "Funkcie" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-01-19 15:42+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484840527.000000\n" #: 01000000.xhp @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-14 10:49+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484390961.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarchický" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 14:21+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484835678.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME je k dispozícii za podmienok licencie Mozilla Public License, v. 2.0, ktorej kópiu nájdete na stránke http://mozilla.org/MPL/2.0/\n" -"\n" -"Doplnkové údaje o autorských právach a licenčných podmienkach tretích strán, vzťahujúcich sa na časti tohto programu, nájdete v súbore LICENSE.html. Ak sa chcete zoznámiť s detailami, zvoľte možnosť Zobraziť licenciu (informácie len v angličtine).\n" -"\n" -"Všetky ochranné známky a registrované ochranné známky, ktoré sú tu spomenuté, sú majetkom ich vlastníkov.\n" -"\n" -"Copyright © 2000–2016 prispievatelia do LibreOffice a / alebo ich pridružené spoločnosti. Všetky práva vyhradené.\n" -"\n" -"Tento produkt vytvorila %OOOVENDOR na základe OpenOffice.org, ktorý je Copyright 2000, 2011 Oracle a / alebo jeho pobočky. %OOOVENDOR ďakuje všetkým členom komunity, podrobnosti nájdete na stránke http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 14:22+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484835745.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 14:22+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484835747.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "maďarčina (staromaďarské písmo)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-08 07:12+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483859530.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sk/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sk/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sk/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sk/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 14:22+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484835744.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "U_končiť" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Použiť zmeny a _reštartovať" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-06 15:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LibreOffice Albanian Translators\n" "Language: sq\n" @@ -12,10 +12,10 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1476802847.000000\n" +"X-POOTLE-MTIME: 1481039201.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,8 +185,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000–2016 Kontribuuesit e LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 23:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5700,22 +5700,20 @@ msgstr "Funksionet" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 20:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-12 01:59+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 03:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457747942.000000\n" +"X-POOTLE-MTIME: 1481254085.000000\n" #: dialog.src msgctxt "" @@ -721,6 +721,30 @@ msgid "Hierarchical" msgstr "Hierarkike" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 09:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 04:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: sq\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467710295.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1481256356.000000\n" #: alienwarndialog.ui msgctxt "" @@ -796,7 +796,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-06-18 09:43+0000\n" -"Last-Translator: Indrit Bashkimi \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:05+0000\n" +"Last-Translator: Anonymous Pootle User\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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434620595.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864334.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-09 11:02+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 07:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: sq\n" "Language: sq\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1462791776.000000\n" +"X-POOTLE-MTIME: 1481266910.000000\n" #: imagemgr.src msgctxt "" @@ -3890,6 +3890,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:08+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-12-09 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sq\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864495.000000\n" +"X-POOTLE-MTIME: 1481284666.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sq/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sq/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sq/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sq/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-09 16:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5066,16 +5066,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476802893.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 01:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457744794.000000\n" +"X-POOTLE-MTIME: 1457744790.000000\n" #: dialog.src msgctxt "" @@ -715,6 +715,30 @@ msgid "Hierarchical" msgstr "Ngekwetigaba" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 08:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467709112.000000\n" #: alienwarndialog.ui @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 21:36+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:02+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ss\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385501781.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864138.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 10:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3935,6 +3935,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 19:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ss\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864259.000000\n" +"X-POOTLE-MTIME: 1431543908.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ss/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ss/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ss/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ss/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/st/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476802980.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/st/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 03:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -716,6 +716,30 @@ msgid "Hierarchical" msgstr "E nang le mehato e fapaneng" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/st/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467710669.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467710668.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/st/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 21:43+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:02+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385502236.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864158.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/st/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 10:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3973,6 +3973,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/st/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:04+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 19:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: st\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449864277.000000\n" +"X-POOTLE-MTIME: 1431546174.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/st/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/st/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/st/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/st/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-29 11:08+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490785680.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice bidragsgivare." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/extensions/source/propctrlr.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/extensions/source/propctrlr.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/extensions/source/propctrlr.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/extensions/source/propctrlr.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 19:50+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-31 17:11+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449863447.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490980282.000000\n" #: formlinkdialog.src msgctxt "" @@ -1279,7 +1279,7 @@ "13:45\n" "itemlist.text" msgid "13:45" -msgstr "" +msgstr "13:45" #: formres.src msgctxt "" @@ -1288,7 +1288,7 @@ "13:45:00\n" "itemlist.text" msgid "13:45:00" -msgstr "" +msgstr "13:45:00" #: formres.src msgctxt "" @@ -1297,7 +1297,7 @@ "01:45 PM\n" "itemlist.text" msgid "01:45 PM" -msgstr "" +msgstr "01:45 PM" #: formres.src msgctxt "" @@ -1306,7 +1306,7 @@ "01:45:00 PM\n" "itemlist.text" msgid "01:45:00 PM" -msgstr "" +msgstr "01:45:00 PM" #: formres.src msgctxt "" @@ -1315,7 +1315,7 @@ "Not Selected\n" "itemlist.text" msgid "Not Selected" -msgstr "" +msgstr "Ej vald" #: formres.src msgctxt "" @@ -1333,7 +1333,7 @@ "Not Defined\n" "itemlist.text" msgid "Not Defined" -msgstr "" +msgstr "Inte definierad" #: formres.src msgctxt "" @@ -1342,7 +1342,7 @@ "All records\n" "itemlist.text" msgid "All records" -msgstr "" +msgstr "Alla poster" #: formres.src msgctxt "" @@ -1351,7 +1351,7 @@ "Active record\n" "itemlist.text" msgid "Active record" -msgstr "" +msgstr "Aktiv post" #: formres.src msgctxt "" @@ -1360,7 +1360,7 @@ "Current page\n" "itemlist.text" msgid "Current page" -msgstr "" +msgstr "Aktuell sida" #: formres.src msgctxt "" @@ -1369,7 +1369,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Nej" #: formres.src msgctxt "" @@ -1378,7 +1378,7 @@ "Yes\n" "itemlist.text" msgid "Yes" -msgstr "" +msgstr "Ja" #: formres.src msgctxt "" @@ -1387,7 +1387,7 @@ "Parent Form\n" "itemlist.text" msgid "Parent Form" -msgstr "" +msgstr "Huvudformulär" #: formres.src msgctxt "" @@ -1396,7 +1396,7 @@ "_blank\n" "itemlist.text" msgid "_blank" -msgstr "" +msgstr "_blank" #: formres.src msgctxt "" @@ -1405,7 +1405,7 @@ "_parent\n" "itemlist.text" msgid "_parent" -msgstr "" +msgstr "_parent" #: formres.src msgctxt "" @@ -1414,7 +1414,7 @@ "_self\n" "itemlist.text" msgid "_self" -msgstr "" +msgstr "_self" #: formres.src msgctxt "" @@ -1423,7 +1423,7 @@ "_top\n" "itemlist.text" msgid "_top" -msgstr "" +msgstr "_top" #: formres.src msgctxt "" @@ -1432,7 +1432,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Ingen" #: formres.src msgctxt "" @@ -1992,7 +1992,7 @@ "Cancel\n" "itemlist.text" msgid "Cancel" -msgstr "" +msgstr "Avbryt" #: formres.src msgctxt "" @@ -2001,7 +2001,7 @@ "Help\n" "itemlist.text" msgid "Help" -msgstr "" +msgstr "Hjälp" #: formres.src msgctxt "" @@ -2076,7 +2076,7 @@ "Single-line\n" "itemlist.text" msgid "Single-line" -msgstr "" +msgstr "Enradig" #: formres.src msgctxt "" @@ -2085,7 +2085,7 @@ "Multi-line\n" "itemlist.text" msgid "Multi-line" -msgstr "" +msgstr "Flerradig" #: formres.src msgctxt "" @@ -2094,7 +2094,7 @@ "Multi-line with formatting\n" "itemlist.text" msgid "Multi-line with formatting" -msgstr "" +msgstr "Flerradig med formateringar" #: formres.src msgctxt "" @@ -2119,7 +2119,7 @@ "LF (Unix)\n" "itemlist.text" msgid "LF (Unix)" -msgstr "" +msgstr "LF (Unix)" #: formres.src msgctxt "" @@ -2128,7 +2128,7 @@ "CR+LF (Windows)\n" "itemlist.text" msgid "CR+LF (Windows)" -msgstr "" +msgstr "CR+LF (Windows)" #: formres.src msgctxt "" @@ -2137,7 +2137,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Ingen" #: formres.src msgctxt "" @@ -2146,7 +2146,7 @@ "Horizontal\n" "itemlist.text" msgid "Horizontal" -msgstr "" +msgstr "Horisontell" #: formres.src msgctxt "" @@ -2155,7 +2155,7 @@ "Vertical\n" "itemlist.text" msgid "Vertical" -msgstr "" +msgstr "Vertikal" #: formres.src msgctxt "" @@ -2164,7 +2164,7 @@ "Both\n" "itemlist.text" msgid "Both" -msgstr "" +msgstr "Båda" #: formres.src msgctxt "" @@ -2173,7 +2173,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Tabell" #: formres.src msgctxt "" @@ -2182,7 +2182,7 @@ "Query\n" "itemlist.text" msgid "Query" -msgstr "" +msgstr "Fråga" #: formres.src msgctxt "" @@ -2191,7 +2191,7 @@ "SQL command\n" "itemlist.text" msgid "SQL command" -msgstr "" +msgstr "SQL-kommando" #: formres.src msgctxt "" @@ -2232,7 +2232,7 @@ "3D\n" "itemlist.text" msgid "3D" -msgstr "" +msgstr "3D" #: formres.src msgctxt "" @@ -2241,7 +2241,7 @@ "Flat\n" "itemlist.text" msgid "Flat" -msgstr "" +msgstr "Platt" #: formres.src msgctxt "" @@ -3084,7 +3084,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Nej" #: propres.src msgctxt "" @@ -3093,7 +3093,7 @@ "Yes\n" "itemlist.text" msgid "Yes" -msgstr "" +msgstr "Ja" #: propres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/filter/source/config/fragments/internalgraphicfilters.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/filter/source/config/fragments/internalgraphicfilters.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/filter/source/config/fragments/internalgraphicfilters.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-11 23:46+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-03-31 17:11+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457739972.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490980315.000000\n" #: bmp_Export.xcu msgctxt "" @@ -194,7 +194,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pdf_Import.xcu msgctxt "" @@ -203,7 +203,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pgm_Import.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/filter/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/filter/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/filter/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/filter/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-25 18:02+0000\n" +"PO-Revision-Date: 2017-03-31 17:12+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464199327.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490980322.000000\n" #: impswfdialog.ui msgctxt "" @@ -1422,7 +1422,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "XML Filter List" -msgstr "" +msgstr "XML-filterlista" #: xmlfiltertabpagegeneral.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/sbasic/shared.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 17:09+0000\n" +"PO-Revision-Date: 2017-03-30 10:23+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467824974.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490869408.000000\n" #: 00000002.xhp msgctxt "" @@ -27622,7 +27622,7 @@ "par_id3146313\n" "help.text" msgid "String variable" -msgstr "8" +msgstr "Strängvariabel" #: 03103600.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-25 07:43+0000\n" +"PO-Revision-Date: 2017-04-04 11:02+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490427838.000000\n" +"X-POOTLE-MTIME: 1491303721.000000\n" #: 00000004.xhp msgctxt "" @@ -1336,7 +1336,7 @@ "48\n" "help.text" msgid "On Table Data bar, click Reset Filter/Sort" -msgstr "Formulärnavigering - ikonen Nollställ filter/sortering" +msgstr "På verktygsraden Formulärnavigering, klicka på Nollställ filter/sortering" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-12-22 17:05+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-03-30 10:31+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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482426324.000000\n" +"X-POOTLE-MTIME: 1490869903.000000\n" #: 01120000.xhp msgctxt "" @@ -5684,22 +5684,20 @@ msgstr "Funktioner" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -22314,7 +22312,7 @@ "par_idN1182D\n" "help.text" msgid "=HYPERLINK($B4) where cell B4 contains http://www.example.org. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result." -msgstr "=LÄNK($B4) där cell B4 innehåller http://www.example.org. Funktionen lägger till http://www.exempel.org till webbadressen för länkcellen, och returnerar samma text som används som formelresultat." +msgstr "=LÄNK($B4) där cell B4 innehåller http://www.exampel.org. Funktionen lägger till http://www.exempel.org till webbadressen för länkcellen, och returnerar samma text som används som formelresultat." #: 04060109.xhp msgctxt "" @@ -45444,14 +45442,13 @@ msgstr "Exempel" #: 04060184.xhp -#, fuzzy msgctxt "" "04060184.xhp\n" "par_id2859147\n" "119\n" "help.text" msgid "=PERCENTILE.EXC(A1:A50;10%) represents the value in the data set, which equals 10% of the total data scale in A1:A50." -msgstr "=PERCENTIL(A1:A50;0,1) representerar det värde i datamängden som motsvarar 10 % av den totala dataskalan i A1:A50." +msgstr "=PERCENTIL.EXK(A1:A50;10%) representerar det värde i datamängden som motsvarar 10 % av den totala dataskalan i A1:A50." #: 04060184.xhp #, fuzzy @@ -58409,14 +58406,13 @@ msgstr "Alternativ" #: 12090104.xhp -#, fuzzy msgctxt "" "12090104.xhp\n" "par_id3147102\n" "2\n" "help.text" msgid "Displays or hides additional filtering options." -msgstr "Visar eller döljer ytterligare filtreringsalternativ." +msgstr "Visar eller döljer ytterligare filtreringsalternativ." #: 12090104.xhp msgctxt "" @@ -61795,13 +61791,12 @@ msgstr "" #: func_averageif.xhp -#, fuzzy msgctxt "" "func_averageif.xhp\n" "par_id316901523627285\n" "help.text" msgid "=AVERAGEIF(B2:B6;\"<\"&E2;C2:C6)" -msgstr "=MEDEL (A1:A50)" +msgstr "=MEDEL.OM(B2:B6;\"<\"&E2;C2:C6)" #: func_averageif.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-11-21 21:03+0000\n" +"PO-Revision-Date: 2017-03-30 10:31+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479762222.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490869918.000000\n" #: address_auto.xhp msgctxt "" @@ -6307,7 +6307,7 @@ "46\n" "help.text" msgid "Displays 16% of the contents of A1." -msgstr "Visar 16 procent av innehållet i A1." +msgstr "Visar 16 % av innehållet i A1." #: formulas.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-19 14:53+0000\n" +"PO-Revision-Date: 2017-03-30 10:37+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487516003.000000\n" +"X-POOTLE-MTIME: 1490870252.000000\n" #: 01010000.xhp msgctxt "" @@ -120,7 +120,7 @@ "62\n" "help.text" msgid "Creates a new text document ($[officename] Writer)." -msgstr "Skapar ett nytt textdokument." +msgstr "Skapar ett nytt textdokument ($[officename] Writer)." #: 01010000.xhp msgctxt "" @@ -146,7 +146,7 @@ "64\n" "help.text" msgid "Creates a new spreadsheet document ($[officename] Calc)." -msgstr "Skapar ett nytt kalkylblad." +msgstr "Skapar ett nytt kalkylblad ($[officename] Calc)." #: 01010000.xhp msgctxt "" @@ -324,7 +324,7 @@ "78\n" "help.text" msgid "Creates a new formula document ($[officename] Math)." -msgstr "Skapar ett nytt formeldokument." +msgstr "Skapar ett nytt formeldokument ($[officename] Math)." #: 01010000.xhp msgctxt "" @@ -6698,7 +6698,7 @@ "3\n" "help.text" msgid " To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet. " -msgstr " Om du vill markera alla celler i en tabell klickar du på knappen i skärningspunkten mellan kolumn- och radhuvudena i tabellens övre vänstra hörn. " +msgstr "Om du vill markera alla celler på ett blad klickar du på knappen i skärningspunkten mellan kolumn- och radhuvudena i tabellens övre vänstra hörn. " #: 02090000.xhp msgctxt "" @@ -9921,13 +9921,12 @@ msgstr "Redigera" #: 02200100.xhp -#, fuzzy msgctxt "" "02200100.xhp\n" "par_id3150008\n" "help.text" msgid "Lets you edit a selected object in your file that you inserted with the Insert – Object command." -msgstr "Med det här alternativet kan du redigera ett markerat objekt i filen som är infogat med kommandot Infoga - Objekt." +msgstr "Med det här alternativet kan du redigera ett markerat objekt i filen som är infogat med kommandot Infoga - Objekt." #: 02200200.xhp msgctxt "" @@ -10462,13 +10461,12 @@ msgstr "Rektangel" #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3150870\n" "help.text" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Ritar en rektangulär stödpunkt där du drar i grafiken. Du kan sedan ange adress och text för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas." +msgstr "Ritar en rektangulär stödpunkt där du drar i grafiken. Du kan sedan ange adress och text för stödpunkten, och markera den ram där du vill att URL:en ska öppnas." #: 02220000.xhp msgctxt "" @@ -10497,13 +10495,12 @@ msgstr "Ellips" #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3145591\n" "help.text" msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Ritar en elliptisk stödpunkt där du drar i grafiken. Du kan sedan ange adress och text för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas." +msgstr "Ritar en elliptisk stödpunkt där du drar i grafiken. Du kan sedan ange adress och text för stödpunkten, och markera den ram där du vill att URL:en ska öppnas." #: 02220000.xhp msgctxt "" @@ -10532,13 +10529,12 @@ msgstr "Polygon" #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3153190\n" "help.text" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Ritar en polygon stödpunkt i det grafiska objektet. Definiera en sida av polygonen genom att klicka på den här ikonen, dra i grafiken och klicka igen. Flytta till den position där du vill placera slutet av nästa sida och klicka. Upprepa operationen tills du har ritat alla polygonens sidor. När du är färdig sluter du polygonen genom att dubbelklicka. Du kan sedan ange adress och text för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas." +msgstr "Ritar en polygon stödpunkt i det grafiska objektet. Definiera en sida av polygonen genom att klicka på den här ikonen, dra i grafiken och klicka igen. Flytta till den position där du vill placera slutet av nästa sida och klicka. Upprepa operationen tills du har ritat alla polygonens sidor. När du är färdig sluter du polygonen genom att dubbelklicka. Du kan sedan ange adress och text för stödpunkten, och markera den ram där du vill att URL:en ska öppnas." #: 02220000.xhp msgctxt "" @@ -10567,13 +10563,12 @@ msgstr "Frihandspolygon" #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3147046\n" "help.text" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Ritar en stödpunkt som är baserad på en frihandspolygon. Klicka på ikonen och flytta till den plats där du vill rita en stödpunkt. Dra en frihandslinje och slut formen genom att släppa knappen. Du kan sedan ange adress och text för stödpunkten, och markera den <#BOLD>ram<#/BOLD> där du vill att URL:en ska öppnas." +msgstr "Ritar en stödpunkt som är baserad på en frihandspolygon. Klicka på ikonen och flytta till den plats där du vill rita en stödpunkt. Dra en frihandslinje och slut formen genom att släppa knappen. Du kan sedan ange adress och text för stödpunkten, och markera den ram där du vill att URL:en ska öppnas." #: 02220000.xhp msgctxt "" @@ -10910,13 +10905,12 @@ msgstr "Grafikvy" #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3150382\n" "help.text" msgid "Displays the image map, so that you can click and edit the hotspots." -msgstr "Visar en image map där du kan klicka och redigera stödpunkterna." +msgstr "Visar en image map där du kan klicka och redigera stödpunkterna." #: 02220000.xhp msgctxt "" @@ -12343,7 +12337,7 @@ "41\n" "help.text" msgid "The supplied bibliography database contains sample records of books." -msgstr "Den litteraturförteckning som följer med programmet innehåller exempel på böcker om $[officename]." +msgstr "Den litteraturförteckning som följer med programmet innehåller exempel på böcker." #: 02250000.xhp msgctxt "" @@ -19332,13 +19326,12 @@ msgstr "Asiatisk layout" #: 05020600.xhp -#, fuzzy msgctxt "" "05020600.xhp\n" "par_id3155351\n" "help.text" msgid "Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command." -msgstr "Anger alternativ för dubbelrader i asiatiska språk. Markera tecknen i texten och välj detta kommando." +msgstr "Anger alternativ för dubbelrader i asiatiska språk. Markera tecknen i texten och välj detta kommando." #: 05020600.xhp msgctxt "" @@ -25328,14 +25321,13 @@ msgstr "Namn" #: 05200200.xhp -#, fuzzy msgctxt "" "05200200.xhp\n" "par_id3153681\n" "20\n" "help.text" msgid "Enter a name." -msgstr "Skriv ett namn." +msgstr "Skriv ett namn." #: 05200200.xhp msgctxt "" @@ -37596,13 +37588,12 @@ msgstr "Lägga till bibliotek" #: 06130500.xhp -#, fuzzy msgctxt "" "06130500.xhp\n" "par_id3155271\n" "help.text" msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open." -msgstr "Leta upp det bibliotek för %PRODUCTNAME Basic som du vill lägga till i den aktuella listan och klicka sedan på Öppna." +msgstr "Leta upp det bibliotek för %PRODUCTNAME Basic som du vill lägga till i den aktuella listan och klicka sedan på Öppna." #: 06130500.xhp msgctxt "" @@ -39475,14 +39466,13 @@ msgstr "Allmänt" #: 06150110.xhp -#, fuzzy msgctxt "" "06150110.xhp\n" "par_id3149038\n" "12\n" "help.text" msgid "Enter or edit general information for an XML filter." -msgstr "Ange eller redigera allmän information för ett XML-filter." +msgstr "Ange eller redigera allmän information för ett XML-filter." #: 06150110.xhp msgctxt "" @@ -39592,14 +39582,13 @@ msgstr "Tarnsformering" #: 06150120.xhp -#, fuzzy msgctxt "" "06150120.xhp\n" "par_id3154350\n" "1\n" "help.text" msgid "Enter or edit file information for an XML filter." -msgstr "Ange eller redigera filinformation för ett XML-filter." +msgstr "Ange eller redigera filinformation för ett XML-filter." #: 06150120.xhp msgctxt "" @@ -43286,14 +43275,13 @@ msgstr "Ange huvudlösenord" #: password_main.xhp -#, fuzzy msgctxt "" "password_main.xhp\n" "par_id3154841\n" "2\n" "help.text" msgid "Assign a master password to protect the access to a saved password." -msgstr "Tilldela ett huvudlösenord som skyddar sparade lösenord." +msgstr "Tilldela ett huvudlösenord som skyddar sparade lösenord." #: password_main.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-21 21:12+0000\n" +"PO-Revision-Date: 2017-03-30 10:00+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1479762767.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868041.000000\n" #: 01110000.xhp msgctxt "" @@ -11895,7 +11895,7 @@ "2\n" "help.text" msgid "Loads a document specified by an entered URL. You can type a new URL, edit an URL, or select one from the list. Displays the full path of the current document." -msgstr "Läser in ett dokument som angetts i form av en URL. Du kan ange URL-adressen eller välja en från listan. Filsökvägen omvandlas automatiskt till URL-format i %PRODUCTNAME." +msgstr "Läser in ett dokument som angetts i form av en URL. Du kan ange URL-adressen eller välja en från listan. Visar den fullständiga sökvägen till aktuellt dokument." #: 07010000.xhp msgctxt "" @@ -14195,7 +14195,7 @@ "15\n" "help.text" msgid "By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the \"none\" entry in the Paragraph Style list box. This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document. The list box displays the available Paragraph Styles defined in %PRODUCTNAME and managed in the Style Catalog." -msgstr "Standardinställningen är att de infogade styckena formateras med den aktuella styckeformatmallen. Detta format motsvaras av alternativet \"ingen\" i listrutan Styckeformatmall. Här kan du välja andra styckeformatmallar som ska användas i det stycke som kommer att infogas i dokumentet. I listrutan visas andra styckeformatmallar som finns definierade i $[officename] och som hanteras med mallkatalogen." +msgstr "Standardinställningen är att de infogade styckena formateras med den aktuella styckeformatmallen. Detta format motsvaras av alternativet \"ingen\" i listrutan Styckeformatmall. Här kan du välja andra styckeformatmallar som ska användas i det stycke som kommer att infogas i dokumentet. I listrutan visas andra styckeformatmallar som finns definierade i %PRODUCTNAME och som hanteras med mallkatalogen." #: 12070300.xhp msgctxt "" @@ -14979,7 +14979,7 @@ "111\n" "help.text" msgid "The search described here is carried out by %PRODUCTNAME. If you want to use the SQL server to search in a database, then you should use the Form-based Filters icon on the Form Bar." -msgstr "Den sökning som beskrivs här utförs av $[officename]. Om du vill låta en SQL-server söka i databasen ska du använda ikonen Formulärbaserat filter på symbollisten Formulär." +msgstr "Den sökning som beskrivs här utförs av %PRODUCTNAME. Om du vill låta en SQL-server söka i databasen ska du använda ikonen Formulärbaserat filter på verktygsraden Formulär." #: 12100200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/05.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/05.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2015-12-11 12:42+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-03-30 10:01+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449837748.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868112.000000\n" #: 00000001.xhp msgctxt "" @@ -57,7 +57,7 @@ "3\n" "help.text" msgid "For a summary of the current support services refer to the Readme file in the %PRODUCTNAME folder." -msgstr "Det finns en sammanfattning av alla supporttjänster som vi för närvarande erbjuder i en \"Readme\"-fil i $[officename]-mappen." +msgstr "Det finns en sammanfattning av alla supporttjänster som vi för närvarande erbjuder i en \"Readme\"-fil i %PRODUCTNAME-mappen." #: 00000001.xhp msgctxt "" @@ -105,7 +105,7 @@ "par_id0915200811081778\n" "help.text" msgid "You can access web forums to ask and answer questions about %PRODUCTNAME." -msgstr "Du kan vända dig till webbforum för frågor och svar om OpenOffice.org." +msgstr "Du kan vända dig till webbforum för frågor och svar om %PRODUCTNAME." #: 00000001.xhp msgctxt "" @@ -169,7 +169,7 @@ "par_id0120200910361848\n" "help.text" msgid "If you want to take an active role in the worldwide %PRODUCTNAME community, you are very welcome to give feedback, discuss features, propose enhancements, write your own article in an FAQ, how-to, manual, create a video tutorial, etc." -msgstr "Om du vill ta på dig en aktiv roll i den världsomspännande nätgemenskapen OpenOffice.org så är du varmt välkommen att ge feedback, diskutera funktioner, föreslå förbättringar eller bidra med en artikel i vanliga frågor och svar (FAQ), instruktionerna eller i användarhandledningen. Du kan också skapa en egen utbildningsvideo." +msgstr "Om du vill ta på dig en aktiv roll i den världsomspännande nätgemenskapen %PRODUCTNAME så är du varmt välkommen att ge feedback, diskutera funktioner, föreslå förbättringar eller bidra med en artikel i vanliga frågor och svar (FAQ), instruktionerna eller i användarhandledningen. Du kan också skapa en egen utbildningsvideo." #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/autopi.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-26 06:51+0000\n" +"PO-Revision-Date: 2017-03-30 10:03+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1472194295.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868227.000000\n" #: 01000000.xhp msgctxt "" @@ -409,7 +409,7 @@ "5\n" "help.text" msgid "Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo." -msgstr "Anger att en logotyp inte har inkluderats i brevet eller faxmeddelandet." +msgstr "Anger att en logotyp redan finns förtryckt på brevpappret. %PRODUCTNAME kommer inte att skruva ut någon logotyp." #: 01010200.xhp msgctxt "" @@ -4060,13 +4060,12 @@ msgstr "Rapportguiden - Layouturval" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "par_id3154894\n" "help.text" msgid "Choose the layout from different templates and styles, and choose landscape or portrait page orientation." -msgstr "Välj layouten från olika mallar och formatmallar, och välj sedan liggande eller stående orientering." +msgstr "Välj layouten från olika mallar och formatmallar, och välj sedan liggande eller stående orientering." #: 01100400.xhp msgctxt "" @@ -7649,13 +7648,12 @@ msgstr "Fälttilldelning" #: 01170500.xhp -#, fuzzy msgctxt "" "01170500.xhp\n" "par_id3143284\n" "help.text" msgid "Opens a dialog that allows you to specify the field assignment." -msgstr "Öppnar en dialogruta som du kan använda för att ange fälttilldelningar." +msgstr "Öppnar en dialogruta som du kan använda för att ange fälttilldelningar." #: 01170500.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-10-18 20:42+0000\n" +"PO-Revision-Date: 2017-03-30 09:49+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476823367.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490867343.000000\n" #: 02000000.xhp msgctxt "" @@ -5468,13 +5468,12 @@ msgstr "Tabellbeskrivning" #: 05040200.xhp -#, fuzzy msgctxt "" "05040200.xhp\n" "par_id3154422\n" "help.text" msgid "Displays the description for the selected table." -msgstr "Visar beskrivningen för den markerade tabellen." +msgstr "Visar beskrivningen för den markerade tabellen." #: 11000002.xhp msgctxt "" @@ -5564,13 +5563,12 @@ msgstr "ODBC" #: 11020000.xhp -#, fuzzy msgctxt "" "11020000.xhp\n" "par_id3150499\n" "help.text" msgid "Specifies the settings for ODBC databases. This includes your user access data, driver settings, and font definitions." -msgstr "Anger inställningarna för ODBC-databaser. Här ingår dina användaråtkomstdata, drivrutinsinställningar och teckensnittsdefinitioner." +msgstr "Anger inställningarna för ODBC-databaser. Här ingår dina användaråtkomstdata, drivrutinsinställningar och teckensnittsdefinitioner." #: 11020000.xhp msgctxt "" @@ -5806,13 +5804,12 @@ msgstr "dBASE" #: 11030000.xhp -#, fuzzy msgctxt "" "11030000.xhp\n" "par_id3147088\n" "help.text" msgid "Specify the settings for a dBASE database." -msgstr "Ange inställningar för en dBASE-databas." +msgstr "Ange inställningar för en dBASE-databas." #: 11030000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2016-11-21 21:16+0000\n" +"PO-Revision-Date: 2017-03-30 10:48+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479762968.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490870886.000000\n" #: aaa_start.xhp msgctxt "" @@ -358,7 +358,7 @@ "bm_id3143267\n" "help.text" msgid "ActiveX controlinstalling;ActiveX controlInternet; Internet Explorer for displaying $[officename] documents$[officename] documents;viewing and editing in Internet Explorerviewing;%PRODUCTNAME documents in Internet Explorerediting;%PRODUCTNAME documents in Internet Explorer" -msgstr "ActiveX-kontrollInstallera;ActiveX-kontrollInternet; Internet Explorer för visning av $[officename] dokument$[officename] dokument;visa och redigera i Internet ExplorerVisa;%PRODUCTNAME dokument i Internet Explorer" +msgstr "ActiveX-kontrollInstallera; ActiveX-kontrollInternet; Internet Explorer för visning av %PRODUCTNAME dokument%PRODUCTNAME dokument; visa och redigera i Internet ExplorerVisa; %PRODUCTNAME dokument i Internet Explorer" #: activex.xhp msgctxt "" @@ -3808,7 +3808,7 @@ "3\n" "help.text" msgid "In %PRODUCTNAME you can register different data sources. The contents of the data fields are then available to you for use in various fields and controls. Your system address book is such a data source." -msgstr "I $[officename] kan du registrera olika datakällor. Innehållet i datafälten är sedan tillgängliga att användas i olika fält och kontroller. Systemets adressbok är en sådan datakälla." +msgstr "I %PRODUCTNAME kan du registrera olika datakällor. Innehållet i datafälten är sedan tillgängliga att användas i olika fält och kontroller. Systemets adressbok är en sådan datakälla." #: data_addressbook.xhp msgctxt "" @@ -8377,14 +8377,13 @@ msgstr "Du kan konfigurera $[officename] så att du via en enkelklickning på en ikon automatiskt skickar det aktuella dokumentet som ett fax-meddelande:" #: fax.xhp -#, fuzzy msgctxt "" "fax.xhp\n" "par_id3145315\n" "11\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "Välj %PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAMEWriter – Skriv ut." +msgstr "Välj %PRODUCTNAME - InställningarVerktyg - Alternativ - %PRODUCTNAME Writer - Skriv ut." #: fax.xhp msgctxt "" @@ -12791,7 +12790,7 @@ "20\n" "help.text" msgid "In %PRODUCTNAME Calc, choose Format - Cells and proceed accordingly." -msgstr "I $[officename] Calc väljer du Format - Cell och gör på samma sätt." +msgstr "I %PRODUCTNAME Calc väljer du Format - Celler och gör på samma sätt." #: language_select.xhp msgctxt "" @@ -13914,7 +13913,7 @@ "hd_id3145261\n" "help.text" msgid "Configuring and Modifying %PRODUCTNAME" -msgstr "Anpassa och ändra $[officename]" +msgstr "Anpassa och ändra %PRODUCTNAME" #: main.xhp msgctxt "" @@ -14051,7 +14050,7 @@ "9\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General" -msgstr "%PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAMEWriter – Allmänt" +msgstr "%PRODUCTNAME - InställningarVerktyg - Alternativ - %PRODUCTNAME Writer - Allmänt" #: microsoft_terms.xhp msgctxt "" @@ -16154,13 +16153,12 @@ msgstr "Det aktuella dokumentet skrivs ut i svartvitt." #: print_blackwhite.xhp -#, fuzzy msgctxt "" "print_blackwhite.xhp\n" "hd_id3147653\n" "help.text" msgid "Printing in Black and White in %PRODUCTNAME Impress and %PRODUCTNAME Draw" -msgstr "Skriva ut i $[officename] Impress och $[officename] Draw" +msgstr "Skriva ut i svartvitt i %PRODUCTNAME Impress och %PRODUCTNAME Draw" #: print_blackwhite.xhp msgctxt "" @@ -16232,7 +16230,7 @@ "18\n" "help.text" msgid "In %PRODUCTNAME Writer you can choose to print color-formatted text in black and white. You can specify this either for all subsequent text documents to be printed, or only for the current printing process." -msgstr "I $[officename] Writer kan du välja att skriva ut färgformaterad text i svartvitt. Du kan välja det här alternativet för alla senare textdokument som ska skrivas ut, eller endast för den aktuella utskriften." +msgstr "I %PRODUCTNAME Writer kan du välja att skriva ut färgformaterad text i svartvitt. Du kan välja det här alternativet för alla senare textdokument som ska skrivas ut, eller endast för den aktuella utskriften." #: print_blackwhite.xhp #, fuzzy @@ -16461,7 +16459,7 @@ "3\n" "help.text" msgid "The following is an overview of the different ways of protecting contents in %PRODUCTNAME from being modified, deleted or viewed." -msgstr "Följande avsnitt är en översikt över olika sätt att skydda innehåll i $[officename] från att ändras, tas bort eller visas." +msgstr "Följande avsnitt är en översikt över olika sätt att skydda innehåll i %PRODUCTNAME från att ändras, tas bort eller visas." #: protection.xhp msgctxt "" @@ -16542,7 +16540,7 @@ "11\n" "help.text" msgid "With every change made in %PRODUCTNAME Calc and %PRODUCTNAME Writer, the review function records who made the change. This function can be turned on with protection, so that it can only be turned off when the correct password is entered. Until then, all changes will continue to be recorded. Acceptance or rejection of changes is not possible." -msgstr "Du kan använda granskningsfunktionen för att visa vem som gjort en ändring i $[officename] Calc och $[officename] Writer. Du kan aktivera funktionen med lösenord så att den bara den som känner till lösenordet kan stänga av granskningsfunktionen. Tills funktionen stängs av kommer alla ändringar att registreras. Det går inte att godkänna eller ignorera ändringar." +msgstr "Du kan använda granskningsfunktionen för att visa vem som gjort en ändring i %PRODUCTNAME Calc och %PRODUCTNAME Writer. Du kan aktivera funktionen med lösenord så att den bara den som känner till lösenordet kan stänga av granskningsfunktionen. Tills funktionen stängs av kommer alla ändringar att registreras. Det går inte att godkänna eller ignorera ändringar." #: protection.xhp msgctxt "" @@ -16945,7 +16943,7 @@ "33\n" "help.text" msgid "If one of the authors has made changes to a document without recording them, you can compare the changed document to your original document." -msgstr "Kanske har någon av de personer som har fått en kopia av dokumentet gjort ändringar utan att registrera dem med kommandot Redigera - Ändringar - Registrera. Du kan antingen be personen göra om ändringarna och registrera dem i $[officename], eller så kan du själv jämföra kopian av dokumentet med originalet." +msgstr "Kanske har någon av de personer som har fått en kopia av dokumentet gjort ändringar utan att registrera dem med funktionen spåra ändringar. Du kan antingen be personen göra om ändringarna och registrera dem, eller så kan du själv jämföra kopian av dokumentet med originalet." #: redlining_doccompare.xhp msgctxt "" @@ -18051,13 +18049,12 @@ msgstr "" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "par_id3154749\n" "help.text" msgid "In order to enter dashes, you can find under Tools - AutoCorrect - AutoCorrect Options - Options the Replace dashes option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see AutoCorrect Options)." -msgstr "Om du vill mata in längre streck kan du använda alternativet Verktyg - Autokorrigering- Alternativ alternativet Ersätt tankstreck. Det här alternativet ersätter ett eller två minustecken under vissa villkor med ett kort eller långt tankstreck (se $[officename]-hjälpen)." +msgstr "Om du vill mata in tankstreck kan du använda alternativet Verktyg - Autokorrigering - Alternativ alternativet Ersätt tankstreck. Det här alternativet ersätter ett eller två minustecken under vissa villkor med ett kort eller långt tankstreck (se Alternativ för autokorrigering)." #: space_hyphen.xhp #, fuzzy diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-21 21:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-03-30 12:50+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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479762998.000000\n" +"X-POOTLE-MTIME: 1490878251.000000\n" #: 01000000.xhp msgctxt "" @@ -912,7 +912,7 @@ "36\n" "help.text" msgid "The Help tip always displays an absolute path. However, if a document is saved in HTML format, %PRODUCTNAME will enter a relative path if the appropriate check box is selected." -msgstr "Visningen i tipshjälpen visar alltid en absolut sökväg. Men när du sparar i HTML-filformat anges en relativ sökväg i $[officename] om du aktiverar det här alternativet." +msgstr "Visningen i tipshjälpen visar alltid en absolut sökväg. Men när du sparar i HTML-filformat anges en relativ sökväg i %PRODUCTNAME om du aktiverar det här alternativet." #: 01010200.xhp msgctxt "" @@ -2177,7 +2177,7 @@ "19\n" "help.text" msgid "For all language selection fields in %PRODUCTNAME, the following applies:" -msgstr "Följande gäller för alla språkvalsfält i $[officename]:" +msgstr "Följande gäller för alla språkvalsfält i %PRODUCTNAME:" #: 01010401.xhp msgctxt "" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp @@ -4630,7 +4630,7 @@ "4\n" "help.text" msgid "High contrast is an operating system setting that changes the system color scheme to improve readability. You can decide how %PRODUCTNAME uses the high contrast settings of the operating system." -msgstr "Högkontrast är en operativsysteminställning som ändrar systemets färgschema för att förbättra läsbarheten. Du kan bestämma hur $[officename] använder högkontrastinställningarna." +msgstr "Högkontrast är en operativsysteminställning som ändrar systemets färgschema för att förbättra läsbarheten. Du kan bestämma hur %PRODUCTNAME använder högkontrastinställningarna." #: 01013000.xhp msgctxt "" @@ -4837,14 +4837,13 @@ msgstr "Alternativ för att läsa in/spara" #: 01020000.xhp -#, fuzzy msgctxt "" "01020000.xhp\n" "par_id3146957\n" "2\n" "help.text" msgid "Specifies general Load/Save settings. " -msgstr "Anger allmänna inställningar för inläsning/spara. " +msgstr "Anger allmänna inställningar för inläsning/spara. " #: 01020100.xhp msgctxt "" @@ -8988,13 +8987,12 @@ msgstr "Bakgrund" #: 01050300.xhp -#, fuzzy msgctxt "" "01050300.xhp\n" "par_id3150443\n" "help.text" msgid "Specifies the background for HTML documents. The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background." -msgstr "Anger bakgrunden för HTML dokument. Bakgrunden är giltig både för nya HTML dokument och för de dokument som du laddar, under förutsättning att det inte redan finns en bakgrund definierad för dokumenten." +msgstr "Anger bakgrunden för HTML dokument. Bakgrunden är giltig både för nya HTML dokument och för de dokument som du laddar, under förutsättning att det inte redan finns en bakgrund definierad för dokumenten." #: 01050300.xhp msgctxt "" @@ -10807,13 +10805,12 @@ msgstr "Skriv ut" #: 01060700.xhp -#, fuzzy msgctxt "" "01060700.xhp\n" "par_id3143267\n" "help.text" msgid "Determines the printer settings for spreadsheets." -msgstr "Anger utskriftsinställningar för kalykylblad" +msgstr "Anger utskriftsinställningar för kalykylblad" #: 01060700.xhp #, fuzzy @@ -12827,13 +12824,12 @@ msgstr "Diagramalternativ" #: 01110000.xhp -#, fuzzy msgctxt "" "01110000.xhp\n" "par_id3149182\n" "help.text" msgid "Defines the general settings for charts." -msgstr "Definierar allmänna inställningar för diagram." +msgstr "Definierar allmänna inställningar för diagram." #: 01110100.xhp msgctxt "" @@ -14027,7 +14023,7 @@ "6\n" "help.text" msgid "In languages such as Thai, rules specify that certain characters are not allowed next to other characters. If Sequence Input Checking (SIC) is enabled, %PRODUCTNAME will not allow a character next to another if this is forbidden by a rule." -msgstr "I språk som t.ex. thailändska finns det regler som anger att vissa tecken inte får förekomma intill varandra. OM SIC (Sequence Input Checking) är aktiverad tillämpas de här reglerna i $[officename]." +msgstr "I språk som t.ex. thailändska finns det regler som anger att vissa tecken inte får förekomma intill varandra. OM SIC (Sequence Input Checking) är aktiverad tillämpas de här reglerna i %PRODUCTNAME." #: 01150300.xhp msgctxt "" @@ -14178,7 +14174,7 @@ "19\n" "help.text" msgid "This setting is not saved in the document but in the %PRODUCTNAME configuration." -msgstr "Den här inställningen sparas inte i dokumentet utan i $[officename]-konfigurationen." +msgstr "Den här inställningen sparas inte i dokumentet utan i %PRODUCTNAME-konfigurationen." #: 01160000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-27 11:37+0000\n" +"PO-Revision-Date: 2017-03-30 10:16+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1472297858.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868974.000000\n" #: 01170000.xhp msgctxt "" @@ -5476,7 +5476,7 @@ "86\n" "help.text" msgid "You can copy and paste animations into %PRODUCTNAME Writer." -msgstr "Du kan kopiera och klistra in animationer i $[officename] Writer." +msgstr "Du kan kopiera och klistra in animationer i %PRODUCTNAME Writer." #: 06050000.xhp msgctxt "" @@ -7355,13 +7355,12 @@ msgstr "Definiera anpassad presentation" #: 06100100.xhp -#, fuzzy msgctxt "" "06100100.xhp\n" "par_id3154659\n" "help.text" msgid "Creates a custom slide show." -msgstr "Skapar en anpassad presentation." +msgstr "Skapar en anpassad presentation." #: 06100100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/04.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-01-08 13:42+0100\n" -"PO-Revision-Date: 2015-05-11 22:17+0000\n" +"PO-Revision-Date: 2017-03-30 12:51+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431382625.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490878310.000000\n" #: 01020000.xhp msgctxt "" @@ -66,7 +66,7 @@ "3\n" "help.text" msgid "Function Keys for $[officename] Impress" -msgstr "Funktionstangenter vid presentationsdokument" +msgstr "Funktionstangenter i $[officename] Impress" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/simpress/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-27 11:37+0000\n" +"PO-Revision-Date: 2017-03-30 13:03+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1472297876.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490878994.000000\n" #: 3d_create.xhp msgctxt "" @@ -2941,7 +2941,7 @@ "52\n" "help.text" msgid "Locate the file containing the line styles that you want to load, and then click OK. The file has the format [filename].sod." -msgstr "Leta rätt på filen som innehåller de formatmallar som ska läggas till och klicka på OK. Filen har formatet [filnamn].sod." +msgstr "Leta rätt på filen som innehåller de linjestilar som ska läggas till och klicka på OK. Filen har formatet [filnamn].sod." #: line_arrow_styles.xhp msgctxt "" @@ -2986,7 +2986,7 @@ "56\n" "help.text" msgid "Locate the file containing the arrow styles that you want to load, and then click OK. The file has the format [filename].soe." -msgstr "Leta rätt på filen som innehåller de linjeslutstilar som ska läggas till och klicka på OK. Filen har formatet [filnamn].soe." +msgstr "Leta rätt på filen som innehåller de linjestilar som ska läggas till och klicka på OK. Filen har formatet [filnamn].soe." #: line_arrow_styles.xhp msgctxt "" @@ -4300,7 +4300,7 @@ "81\n" "help.text" msgid "Locate the gradient list that you want to load, and then click Open. A gradient list file has the format [filename].sog." -msgstr "Leta rätt på gradienttabellen som du ska ladda och klicka på Öppna. En gradienttabellfil har formatet [filnamn].sog." +msgstr "Leta rätt på övertoningstabellen som du ska ladda och klicka på Öppna. En övertoningstabellfil har formatet [filnamn].sog." #: palette_files.xhp msgctxt "" @@ -4754,7 +4754,7 @@ "16\n" "help.text" msgid "Prepare the slides, start the show using a special icon, tell your imaginary audience what you want to tell for the first slide, then advance to the next slide and so on. $[officename] records the display time for each slide, so the next time you play the show with automatic slide changes, the timing will be as recorded." -msgstr "Skapa sidorna, starta presentationen med en särskild ikon och håll presentationen som du tänker hålla den för en riktig publik. När du byter sida sparas visningslängden för varje sida så att du kan köra presentationen automatiskt nästa gång." +msgstr "Skapa presentationssidorna, starta presentationen med en särskild ikon och håll presentationen som du tänker hålla den för en riktig publik. När du byter sida sparar $[officename] visningslängden för varje sida så att du kan köra presentationen automatiskt nästa gång." #: rehearse_timings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/smath/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/smath/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-21 21:24+0000\n" +"PO-Revision-Date: 2017-03-30 10:16+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479763458.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868985.000000\n" #: 02080000.xhp msgctxt "" @@ -6844,7 +6844,7 @@ "2\n" "help.text" msgid "More detailed information about scaling in %PRODUCTNAME Math as well as some examples can be found here. (The quotation marks in this text are for emphasis purposes only and are not part of the examples.)" -msgstr "Här finns mer information om skalning i $[officename] Math och tillhörande exempel. (Citattecknen används bara för att framhäva delar av texten och ingår inte i exemplen.)" +msgstr "Här finns mer information om skalning i %PRODUCTNAME Math och tillhörande exempel. (Citattecknen används bara för att framhäva delar av texten och ingår inte i exemplen.)" #: 03091400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/smath/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/smath/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/smath/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2015-06-22 13:43+0000\n" +"PO-Revision-Date: 2017-03-30 10:16+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1434980594.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490868992.000000\n" #: align.xhp msgctxt "" @@ -751,7 +751,7 @@ "2\n" "help.text" msgid "In %PRODUCTNAME Math, can brackets be shown separately so that the distance between them is freely definable?" -msgstr "Kan parenteser i $[officename] Math även visas enskilt och i fritt definierbar storlek?" +msgstr "Kan parenteser i %PRODUCTNAME Math även visas enskilt och i fritt definierbar storlek?" #: parentheses.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-21 21:25+0000\n" +"PO-Revision-Date: 2017-04-04 10:43+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479763505.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491302616.000000\n" #: 01120000.xhp msgctxt "" @@ -12462,7 +12462,7 @@ "17\n" "help.text" msgid "Page number (#)" -msgstr "Sidnr" +msgstr "Sidnummer (#)" #: 04120221.xhp msgctxt "" @@ -14107,7 +14107,7 @@ "53\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Table" -msgstr "%PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAMEWriter – Tabell" +msgstr "%PRODUCTNAME – InställningarVerktyg – Alternativ%PRODUCTNAME Writer – Tabell" #: 04180400.xhp msgctxt "" @@ -16086,14 +16086,13 @@ msgstr "Fot-/slutnoter" #: 05040700.xhp -#, fuzzy msgctxt "" "05040700.xhp\n" "par_id3147170\n" "2\n" "help.text" msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats." -msgstr "Anger var fotnoter och slutnoter ska visas och deras numreringsformat." +msgstr "Anger var fotnoter och slutnoter ska visas och deras numreringsformat." #: 05040700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/04.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-07-04 16:53+0200\n" -"PO-Revision-Date: 2016-05-25 03:47+0000\n" +"PO-Revision-Date: 2017-03-30 10:17+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464148026.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1490869044.000000\n" #: 01020000.xhp msgctxt "" @@ -66,7 +66,7 @@ "3\n" "help.text" msgid "Function Keys for %PRODUCTNAME Writer" -msgstr "Funktioner i textdokument med funktionstangenterna" +msgstr "Funktionstangenterna i %PRODUCTNAME Writer" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-11-21 21:29+0000\n" +"PO-Revision-Date: 2017-04-04 10:48+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1479763743.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491302890.000000\n" #: anchor_object.xhp msgctxt "" @@ -2411,7 +2411,7 @@ "15\n" "help.text" msgid "Click in the first cell of the series you want to sum up, drag to the final cell, and then release.
              $[officename] inserts a formula for calculating the sum of the values in the current column." -msgstr "Klicka i den första cellen i serien, dra till den sista cellen och släpp." +msgstr "Klicka i den första cellen i den serie som ska summeras, dra till den sista cellen och släpp.
              $[officename] infogar en formel för att beräkna summan av värdena i den aktuella kolumnen." #: calculate_intable.xhp msgctxt "" @@ -8597,7 +8597,7 @@ "1\n" "help.text" msgid "Inserting a Calc Chart into a Text Document" -msgstr "Infoga ett diagram från $[officename] Calc" +msgstr "Infoga ett Calc-diagram i ett textdokument" #: insert_graphic_fromchart.xhp msgctxt "" @@ -13822,13 +13822,12 @@ msgstr "Du kan kontrollera stavningen och grammatiken manuellt i ett markerat textavsnitt eller i hela dokumentet." #: spellcheck_dialog.xhp -#, fuzzy msgctxt "" "spellcheck_dialog.xhp\n" "par_id0525200902184476\n" "help.text" msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the extensions web page." -msgstr "För att kontrollera stavning och grammatik i en text så måste de tillhörande ordböckerna vara installerade. För många språk finns tre ordbokstyper: stavningskontroll, avstavning och synonymordbok. Varje ordbok täcker endast ett språk. Grammatikkontroller kan laddas ner som tillägg. Se hemsidan Tillägg." +msgstr "För att kontrollera stavning och grammatik i en text så måste de tillhörande ordböckerna vara installerade. För många språk finns tre ordbokstyper: stavningskontroll, avstavning och synonymordbok. Varje ordbok täcker endast ett språk. Grammatikkontroller kan laddas ner som tillägg. Se hemsidan Tillägg." #: spellcheck_dialog.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/helpcontent2/source/text/swriter/librelogo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/helpcontent2/source/text/swriter/librelogo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2016-11-21 21:29+0000\n" +"PO-Revision-Date: 2017-04-04 10:49+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479763780.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491302984.000000\n" #: LibreLogo.xhp msgctxt "" @@ -935,7 +935,7 @@ "par_1226\n" "help.text" msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%
              FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%
              FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%
              FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle
              FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center
              " -msgstr "FILLTRANSPARENCY 80 ; anger att aktuella fyllnadsfärgen ska vara 80% transparent (genomskinlig)
              FILLTRANSPARENCY [80] ; anger linjär transparent toning från 80% till 0%
              FILLTRANSPARENCY [80, 20, 1, 90] ; anger axiell transparent toning roterat med 90 grader från sköldpaddans aktuella position
              FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; anger radiell transparent toning från yttre 80% till inre 20% transparens med 20% inramning och 50-50% horisontell och vertikal position från mitten
              " +msgstr "FILLTRANSPARENCY 80 ; anger att aktuella fyllnadsfärgen ska vara 80% transparent (genomskinlig)
              FILLTRANSPARENCY [80] ; anger linjär transparent toning från 80% till 0%
              FILLTRANSPARENCY [80, 20] ; anger linjär transparent toning från 80% till 20%
              FILLTRANSPARENCY [80, 20, 1, 90] ; anger axiell transparent toning roterat med 90 grader från sköldpaddans aktuella position
              FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; anger radiell transparent toning från yttre 80% till inre 20% transparens med 20% inramning och 50-50% horisontell och vertikal position från mitten
              " #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-23 19:08+0000\n" +"PO-Revision-Date: 2017-03-31 18:34+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490296084.000000\n" +"X-POOTLE-MTIME: 1490985265.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -896,7 +896,7 @@ "Label\n" "value.text" msgid "Pivot Table" -msgstr "" +msgstr "Pivottabell" #: CalcCommands.xcu msgctxt "" @@ -914,7 +914,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Pivot Table" -msgstr "" +msgstr "Infoga pivottabell" #: CalcCommands.xcu msgctxt "" @@ -932,7 +932,7 @@ "Label\n" "value.text" msgid "~Create..." -msgstr "" +msgstr "Skapa..." #: CalcCommands.xcu msgctxt "" @@ -1202,7 +1202,7 @@ "Label\n" "value.text" msgid "Cell Edit Mode" -msgstr "" +msgstr "Cellredigeringsläge" #: CalcCommands.xcu msgctxt "" @@ -1274,7 +1274,7 @@ "Label\n" "value.text" msgid "Print Area" -msgstr "" +msgstr "Utskriftsområde" #: CalcCommands.xcu msgctxt "" @@ -1292,7 +1292,7 @@ "TooltipLabel\n" "value.text" msgid "Define Print Area" -msgstr "" +msgstr "Definiera utskriftsområde" #: CalcCommands.xcu msgctxt "" @@ -1301,7 +1301,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "Töm" #: CalcCommands.xcu msgctxt "" @@ -1319,7 +1319,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Print Ranges" -msgstr "" +msgstr "Ta bort utskriftsområde" #: CalcCommands.xcu msgctxt "" @@ -1328,7 +1328,7 @@ "Label\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Redigera" #: CalcCommands.xcu msgctxt "" @@ -1346,7 +1346,7 @@ "TooltipLabel\n" "value.text" msgid "Edit Print Ranges" -msgstr "" +msgstr "Redigera utskriftsområden" #: CalcCommands.xcu msgctxt "" @@ -1355,7 +1355,7 @@ "Label\n" "value.text" msgid "Add" -msgstr "" +msgstr "Lägg till" #: CalcCommands.xcu msgctxt "" @@ -1373,7 +1373,7 @@ "TooltipLabel\n" "value.text" msgid "Add Print Range" -msgstr "" +msgstr "Lägg till utskriftsområde" #: CalcCommands.xcu msgctxt "" @@ -1382,7 +1382,7 @@ "Label\n" "value.text" msgid "Cycle Cell Reference Types" -msgstr "" +msgstr "Växla cellreferenstyp" #: CalcCommands.xcu msgctxt "" @@ -2363,7 +2363,7 @@ "Label\n" "value.text" msgid "~Insert Named Range or Expression..." -msgstr "" +msgstr "Infoga namngivet områden eller uttryck" #: CalcCommands.xcu msgctxt "" @@ -2372,7 +2372,7 @@ "ContextLabel\n" "value.text" msgid "~Named Range or Expression..." -msgstr "" +msgstr "Namngivet områden eller uttryck" #: CalcCommands.xcu msgctxt "" @@ -2435,7 +2435,7 @@ "ContextLabel\n" "value.text" msgid "Ce~lls..." -msgstr "~Celler ..." +msgstr "~Celler..." #: CalcCommands.xcu msgctxt "" @@ -3128,7 +3128,7 @@ "Label\n" "value.text" msgid "Insert Sheet At End..." -msgstr "" +msgstr "Infoga blad vid slutet..." #: CalcCommands.xcu msgctxt "" @@ -3236,7 +3236,7 @@ "Label\n" "value.text" msgid "Currency" -msgstr "" +msgstr "Valuta" #: CalcCommands.xcu msgctxt "" @@ -3245,7 +3245,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "" +msgstr "Formatera som valuta" #: CalcCommands.xcu msgctxt "" @@ -3254,7 +3254,7 @@ "Label\n" "value.text" msgid "Currency" -msgstr "" +msgstr "Valuta" #: CalcCommands.xcu msgctxt "" @@ -3263,7 +3263,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "" +msgstr "Formatera som valuta" #: CalcCommands.xcu msgctxt "" @@ -3272,7 +3272,7 @@ "Label\n" "value.text" msgid "Percent" -msgstr "" +msgstr "Procent" #: CalcCommands.xcu msgctxt "" @@ -3281,7 +3281,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Percent" -msgstr "" +msgstr "Formatera som procent" #: CalcCommands.xcu msgctxt "" @@ -3290,7 +3290,7 @@ "Label\n" "value.text" msgid "General" -msgstr "" +msgstr "Allmänt" #: CalcCommands.xcu msgctxt "" @@ -3299,7 +3299,7 @@ "TooltipLabel\n" "value.text" msgid "Format as General" -msgstr "" +msgstr "Formatera som allmänt" #: CalcCommands.xcu msgctxt "" @@ -3308,7 +3308,7 @@ "Label\n" "value.text" msgid "Date" -msgstr "" +msgstr "Datum" #: CalcCommands.xcu msgctxt "" @@ -3317,7 +3317,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Date" -msgstr "" +msgstr "Formatera som datum" #: CalcCommands.xcu msgctxt "" @@ -3326,7 +3326,7 @@ "Label\n" "value.text" msgid "Number" -msgstr "" +msgstr "Tal" #: CalcCommands.xcu msgctxt "" @@ -3335,7 +3335,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Number" -msgstr "" +msgstr "Formatera som tal" #: CalcCommands.xcu msgctxt "" @@ -3344,7 +3344,7 @@ "Label\n" "value.text" msgid "Scientific" -msgstr "" +msgstr "Vetenskaplig" #: CalcCommands.xcu msgctxt "" @@ -3353,7 +3353,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Scientific" -msgstr "" +msgstr "Formatera som vetenskaplig" #: CalcCommands.xcu msgctxt "" @@ -3362,7 +3362,7 @@ "Label\n" "value.text" msgid "Time" -msgstr "" +msgstr "Tid" #: CalcCommands.xcu msgctxt "" @@ -3371,7 +3371,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Time" -msgstr "" +msgstr "Formatera som tid" #: CalcCommands.xcu msgctxt "" @@ -3641,7 +3641,7 @@ "Label\n" "value.text" msgid "~Named Ranges and Expressions" -msgstr "" +msgstr "Namngivna områden och uttryck" #: CalcCommands.xcu msgctxt "" @@ -3722,7 +3722,7 @@ "Label\n" "value.text" msgid "Ro~ws" -msgstr "" +msgstr "~Rader" #: CalcCommands.xcu msgctxt "" @@ -3731,7 +3731,7 @@ "Label\n" "value.text" msgid "Colu~mns" -msgstr "" +msgstr "K~olumner" #: CalcCommands.xcu msgctxt "" @@ -3821,7 +3821,7 @@ "ContextLabel\n" "value.text" msgid "~Date" -msgstr "" +msgstr "Datum" #: CalcCommands.xcu msgctxt "" @@ -3839,7 +3839,7 @@ "ContextLabel\n" "value.text" msgid "~Time" -msgstr "" +msgstr "Tid" #: CalcCommands.xcu msgctxt "" @@ -3857,7 +3857,7 @@ "Label\n" "value.text" msgid "Edit Link" -msgstr "" +msgstr "Redigera länk" #: CalcCommands.xcu msgctxt "" @@ -3866,7 +3866,7 @@ "Label\n" "value.text" msgid "Remove Link" -msgstr "" +msgstr "Ta bort länk" #: CalcCommands.xcu msgctxt "" @@ -3938,7 +3938,7 @@ "Label\n" "value.text" msgid "Paste Only Numbers" -msgstr "" +msgstr "Klistra endast in nummer" #: CalcCommands.xcu msgctxt "" @@ -3974,7 +3974,7 @@ "Label\n" "value.text" msgid "~Insert..." -msgstr "" +msgstr "Infoga..." #: CalcWindowState.xcu msgctxt "" @@ -4460,7 +4460,7 @@ "UIName\n" "value.text" msgid "Arrows" -msgstr "" +msgstr "Pilar" #: ChartCommands.xcu msgctxt "" @@ -4523,7 +4523,7 @@ "Label\n" "value.text" msgid "Tre~nd Line..." -msgstr "" +msgstr "Tre~ndlinje..." #: ChartCommands.xcu msgctxt "" @@ -5918,7 +5918,7 @@ "PopupLabel\n" "value.text" msgid "Open..." -msgstr "" +msgstr "Öppna..." #: DbuCommands.xcu msgctxt "" @@ -6116,7 +6116,7 @@ "Label\n" "value.text" msgid "Report..." -msgstr "" +msgstr "Rapport..." #: DbuCommands.xcu msgctxt "" @@ -13937,7 +13937,7 @@ "ContextLabel\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Öka styckeavståndet" #: GenericCommands.xcu msgctxt "" @@ -13946,7 +13946,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Öka styckeavståndet" #: GenericCommands.xcu msgctxt "" @@ -13955,7 +13955,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "Minska" #: GenericCommands.xcu msgctxt "" @@ -13964,7 +13964,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Minska styckeavståndet" #: GenericCommands.xcu msgctxt "" @@ -13973,7 +13973,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Minska styckeavståndet" #: GenericCommands.xcu msgctxt "" @@ -13982,7 +13982,7 @@ "Label\n" "value.text" msgid "Arrow Shapes" -msgstr "" +msgstr "Pilformer" #: GenericCommands.xcu msgctxt "" @@ -13991,7 +13991,7 @@ "ContextLabel\n" "value.text" msgid "~Arrow" -msgstr "" +msgstr "Pil" #: GenericCommands.xcu msgctxt "" @@ -14009,7 +14009,7 @@ "ContextLabel\n" "value.text" msgid "~Flowchart" -msgstr "" +msgstr "Flödesschema" #: GenericCommands.xcu msgctxt "" @@ -14027,7 +14027,7 @@ "ContextLabel\n" "value.text" msgid "~Callout" -msgstr "" +msgstr "Pratbubblor" #: GenericCommands.xcu msgctxt "" @@ -15512,7 +15512,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "Öka" #: GenericCommands.xcu msgctxt "" @@ -15530,7 +15530,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Öka teckenstorlek" #: GenericCommands.xcu msgctxt "" @@ -15539,7 +15539,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "Minska" #: GenericCommands.xcu msgctxt "" @@ -15557,7 +15557,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Minska teckenstorlek" #: GenericCommands.xcu msgctxt "" @@ -15818,7 +15818,7 @@ "Label\n" "value.text" msgid "Left" -msgstr "" +msgstr "Vänster" #: GenericCommands.xcu msgctxt "" @@ -15827,7 +15827,7 @@ "TooltipLabel\n" "value.text" msgid "Align Left" -msgstr "" +msgstr "Vänsterjustera" #: GenericCommands.xcu msgctxt "" @@ -15836,7 +15836,7 @@ "Label\n" "value.text" msgid "Right" -msgstr "" +msgstr "Höger" #: GenericCommands.xcu msgctxt "" @@ -15845,7 +15845,7 @@ "TooltipLabel\n" "value.text" msgid "Align Right" -msgstr "" +msgstr "Högerjusterat" #: GenericCommands.xcu msgctxt "" @@ -16385,7 +16385,7 @@ "Label\n" "value.text" msgid "Crop" -msgstr "" +msgstr "Beskär" #: GenericCommands.xcu msgctxt "" @@ -16936,7 +16936,7 @@ "Label\n" "value.text" msgid "Chart from File..." -msgstr "" +msgstr "Diagram från fil..." #: GenericCommands.xcu msgctxt "" @@ -17296,7 +17296,7 @@ "ContextLabel\n" "value.text" msgid "St~yles and Formatting" -msgstr "" +msgstr "~Formatmallar och formatering" #: GenericCommands.xcu msgctxt "" @@ -17521,7 +17521,7 @@ "ContextLabel\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "~Ny formatmall..." #: GenericCommands.xcu msgctxt "" @@ -17557,7 +17557,7 @@ "ContextLabel\n" "value.text" msgid "~Update Style" -msgstr "" +msgstr "~Uppdatera formatmall" #: GenericCommands.xcu msgctxt "" @@ -18853,7 +18853,7 @@ "ContextLabel\n" "value.text" msgid "Clone Formatting" -msgstr "" +msgstr "Klona formatering" #: GenericCommands.xcu msgctxt "" @@ -19519,7 +19519,7 @@ "ContextLabel\n" "value.text" msgid "~Display Grid" -msgstr "" +msgstr "~Visa raster" #: GenericCommands.xcu msgctxt "" @@ -19636,7 +19636,7 @@ "ContextLabel\n" "value.text" msgid "Co~mpare Document..." -msgstr "" +msgstr "~Jämför dokument..." #: GenericCommands.xcu msgctxt "" @@ -19663,7 +19663,7 @@ "ContextLabel\n" "value.text" msgid "Merge Documen~t..." -msgstr "" +msgstr "Sammanfoga dokument..." #: GenericCommands.xcu msgctxt "" @@ -21598,7 +21598,7 @@ "Label\n" "value.text" msgid "Toolbar Layout" -msgstr "" +msgstr "Typ av verktygsrad" #: GenericCommands.xcu msgctxt "" @@ -21967,7 +21967,7 @@ "Label\n" "value.text" msgid "~Chart" -msgstr "" +msgstr "Diagram" #: GenericCommands.xcu msgctxt "" @@ -22219,7 +22219,7 @@ "ContextLabel\n" "value.text" msgid "Audio or ~Video..." -msgstr "" +msgstr "Ljud eller video..." #: GenericCommands.xcu msgctxt "" @@ -24784,7 +24784,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Standard" #: ToolbarMode.xcu msgctxt "" @@ -24793,7 +24793,7 @@ "Label\n" "value.text" msgid "Single toolbar" -msgstr "" +msgstr "Enkel" #: ToolbarMode.xcu msgctxt "" @@ -24802,7 +24802,7 @@ "Label\n" "value.text" msgid "Sidebar" -msgstr "" +msgstr "Sidopanel" #: ToolbarMode.xcu msgctxt "" @@ -24811,7 +24811,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Notebook" #: ToolbarMode.xcu msgctxt "" @@ -24820,7 +24820,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Standard" #: ToolbarMode.xcu msgctxt "" @@ -24829,7 +24829,7 @@ "Label\n" "value.text" msgid "Single toolbar" -msgstr "" +msgstr "Enkel" #: ToolbarMode.xcu msgctxt "" @@ -24838,7 +24838,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Notebook" #: WriterCommands.xcu msgctxt "" @@ -24928,7 +24928,7 @@ "Label\n" "value.text" msgid "Show Comments" -msgstr "" +msgstr "Visa kommentarer" #: WriterCommands.xcu msgctxt "" @@ -24937,7 +24937,7 @@ "ContextLabel\n" "value.text" msgid "Comments" -msgstr "" +msgstr "Kommentarer" #: WriterCommands.xcu msgctxt "" @@ -25018,7 +25018,7 @@ "Label\n" "value.text" msgid "~Endnote" -msgstr "" +msgstr "Slutnot" #: WriterCommands.xcu msgctxt "" @@ -25027,7 +25027,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Endnote" -msgstr "" +msgstr "Infoga slutnot" #: WriterCommands.xcu msgctxt "" @@ -25054,7 +25054,7 @@ "Label\n" "value.text" msgid "Table of Contents" -msgstr "" +msgstr "Innehållsförteckning" #: WriterCommands.xcu msgctxt "" @@ -25063,7 +25063,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "Infoga innehållsförteckning, index eller källförteckning" #: WriterCommands.xcu msgctxt "" @@ -25126,7 +25126,7 @@ "Label\n" "value.text" msgid "Update All" -msgstr "" +msgstr "Uppdatera alla" #: WriterCommands.xcu msgctxt "" @@ -25135,7 +25135,7 @@ "ContextLabel\n" "value.text" msgid "Indexes and ~Tables" -msgstr "" +msgstr "Förteckningar" #: WriterCommands.xcu msgctxt "" @@ -25144,7 +25144,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "" +msgstr "Uppdatera förteckning" #: WriterCommands.xcu msgctxt "" @@ -25153,7 +25153,7 @@ "ContextLabel\n" "value.text" msgid "Current ~Index" -msgstr "" +msgstr "Aktuell förteckning" #: WriterCommands.xcu msgctxt "" @@ -25162,7 +25162,7 @@ "PopupLabel\n" "value.text" msgid "Update index" -msgstr "Uppdatera index" +msgstr "Uppdatera förteckning" #: WriterCommands.xcu msgctxt "" @@ -25180,7 +25180,7 @@ "Label\n" "value.text" msgid "~Protect..." -msgstr "" +msgstr "Skydda..." #: WriterCommands.xcu msgctxt "" @@ -25189,7 +25189,7 @@ "TooltipLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "Skydda spårade ändringar" #: WriterCommands.xcu msgctxt "" @@ -25198,7 +25198,7 @@ "Label\n" "value.text" msgid "Reject" -msgstr "" +msgstr "Neka" #: WriterCommands.xcu msgctxt "" @@ -25207,7 +25207,7 @@ "TooltipLabel\n" "value.text" msgid "Reject Track Change" -msgstr "" +msgstr "Neka spårad ändring" #: WriterCommands.xcu msgctxt "" @@ -25216,7 +25216,7 @@ "PopupLabel\n" "value.text" msgid "Reject Change" -msgstr "" +msgstr "Neka ändring" #: WriterCommands.xcu msgctxt "" @@ -25225,7 +25225,7 @@ "Label\n" "value.text" msgid "Accept" -msgstr "" +msgstr "Acceptera" #: WriterCommands.xcu msgctxt "" @@ -25234,7 +25234,7 @@ "TooltipLabel\n" "value.text" msgid "Accept Track Change" -msgstr "" +msgstr "Acceptera spårad ändring" #: WriterCommands.xcu msgctxt "" @@ -25243,7 +25243,7 @@ "PopupLabel\n" "value.text" msgid "Accept Change" -msgstr "" +msgstr "Acceptera ändring" #: WriterCommands.xcu msgctxt "" @@ -25252,7 +25252,7 @@ "Label\n" "value.text" msgid "Next" -msgstr "" +msgstr "Nästa" #: WriterCommands.xcu msgctxt "" @@ -25261,7 +25261,7 @@ "TooltipLabel\n" "value.text" msgid "Next Track Change" -msgstr "" +msgstr "Nästa spårade ändring" #: WriterCommands.xcu msgctxt "" @@ -25270,7 +25270,7 @@ "Label\n" "value.text" msgid "Pr~evious" -msgstr "" +msgstr "Föregående" #: WriterCommands.xcu msgctxt "" @@ -25279,7 +25279,7 @@ "TooltipLabel\n" "value.text" msgid "Previous Track Change" -msgstr "" +msgstr "Föregående ändring" #: WriterCommands.xcu msgctxt "" @@ -25306,7 +25306,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "" +msgstr "Registrera ändringar" #: WriterCommands.xcu msgctxt "" @@ -25315,7 +25315,7 @@ "Label\n" "value.text" msgid "Track Changes Functions" -msgstr "" +msgstr "Funktioner för spårade ändringar" #: WriterCommands.xcu msgctxt "" @@ -25324,7 +25324,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes Functions" -msgstr "" +msgstr "Visa funktioner för spårade ändringar" #: WriterCommands.xcu msgctxt "" @@ -25342,7 +25342,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "" +msgstr "Visa spårade ändringar" #: WriterCommands.xcu msgctxt "" @@ -25378,7 +25378,7 @@ "TooltipLabel\n" "value.text" msgid "Insert ODF Track Change Comment" -msgstr "" +msgstr "Infoga ODF ändringskommentar" #: WriterCommands.xcu msgctxt "" @@ -25450,7 +25450,7 @@ "Label\n" "value.text" msgid "~Link" -msgstr "" +msgstr "Länk" #: WriterCommands.xcu msgctxt "" @@ -25459,7 +25459,7 @@ "PopupLabel\n" "value.text" msgid "Edit Link..." -msgstr "" +msgstr "Redigera länk..." #: WriterCommands.xcu msgctxt "" @@ -25468,7 +25468,7 @@ "Label\n" "value.text" msgid "Remove Link" -msgstr "" +msgstr "Ta bort länk" #: WriterCommands.xcu msgctxt "" @@ -25477,7 +25477,7 @@ "Label\n" "value.text" msgid "Copy Link Location" -msgstr "" +msgstr "Kopiera länkadress" #: WriterCommands.xcu msgctxt "" @@ -25495,7 +25495,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Bookmark" -msgstr "" +msgstr "Infoga bokmärke" #: WriterCommands.xcu msgctxt "" @@ -25567,7 +25567,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Caption" -msgstr "" +msgstr "Infoga bildtext/figurtext" #: WriterCommands.xcu msgctxt "" @@ -25576,7 +25576,7 @@ "PopupLabel\n" "value.text" msgid "Insert Caption..." -msgstr "Infoga bildtext..." +msgstr "Infoga bildtext/figurtext..." #: WriterCommands.xcu msgctxt "" @@ -25603,7 +25603,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Cross-reference" -msgstr "" +msgstr "Infoga korshänvisningar" #: WriterCommands.xcu msgctxt "" @@ -25612,7 +25612,7 @@ "Label\n" "value.text" msgid "Insert Link" -msgstr "" +msgstr "Infoga länk" #: WriterCommands.xcu msgctxt "" @@ -25639,7 +25639,7 @@ "Label\n" "value.text" msgid "~Page Break" -msgstr "" +msgstr "Sidbrytning" #: WriterCommands.xcu msgctxt "" @@ -25648,7 +25648,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Page Break" -msgstr "" +msgstr "Infoga sidbrytning" #: WriterCommands.xcu msgctxt "" @@ -25657,7 +25657,7 @@ "Label\n" "value.text" msgid "Table" -msgstr "" +msgstr "Tabell" #: WriterCommands.xcu msgctxt "" @@ -25666,7 +25666,7 @@ "ContextLabel\n" "value.text" msgid "Insert ~Table..." -msgstr "" +msgstr "Infoga tabell..." #: WriterCommands.xcu msgctxt "" @@ -25693,7 +25693,7 @@ "Label\n" "value.text" msgid "Frame" -msgstr "" +msgstr "Ram" #: WriterCommands.xcu msgctxt "" @@ -25711,7 +25711,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Frame" -msgstr "" +msgstr "Infoga ram" #: WriterCommands.xcu msgctxt "" @@ -25729,7 +25729,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Index Entry" -msgstr "" +msgstr "Infoga förteckningspost" #: WriterCommands.xcu msgctxt "" @@ -25936,7 +25936,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula" -msgstr "" +msgstr "Infoga formel" #: WriterCommands.xcu msgctxt "" @@ -25999,7 +25999,7 @@ "Label\n" "value.text" msgid "Fiel~d" -msgstr "" +msgstr "Fält" #: WriterCommands.xcu msgctxt "" @@ -26008,7 +26008,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Field" -msgstr "" +msgstr "Infoga fält" #: WriterCommands.xcu msgctxt "" @@ -26089,7 +26089,7 @@ "Label\n" "value.text" msgid "~Footnote" -msgstr "" +msgstr "Fotnot" #: WriterCommands.xcu msgctxt "" @@ -26098,7 +26098,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Footnote" -msgstr "" +msgstr "Infoga fotnot" #: WriterCommands.xcu msgctxt "" @@ -26170,7 +26170,7 @@ "Label\n" "value.text" msgid "Links Active" -msgstr "" +msgstr "Aktiva länkar" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 03:48+0000\n" -"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457754495.000000\n" +"X-POOTLE-MTIME: 1457754480.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hierarkiskt" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-19 16:18+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487521100.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME görs tillgänglig i enlighet med villkoren i Mozilla Public License version 2.0. En kopia av MPL-licensen kan hittas på http://mozilla.org/MPL/2.0/.\n" -"\n" -"Ytterligare meddelanden om upphovsrätt och licensvillkor för kod från tredje part, som gäller delar av programvaran, anges i filen LICENSE.html. Välj Visa licens för att se exakta uppgifter på engelska.\n" -"\n" -"Alla varumärken och registrerade varumärken som nämns häri tillhör sina respektive ägare.\n" -"\n" -"Copyright © 2000, 2016 LibreOffice bidragsgivare. Alla rättigheter förbehålls.\n" -"\n" -"Denna produkt skapades av %OOOVENDOR, baserad på OpenOffice.org, som är Copyright 2000, 2011 Oracle och/eller dess dotterbolag. %OOOVENDOR erkänner alla gemenskapens medlemmar, se http://www.libreoffice.org/ för mer information." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-01-14 18:27+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1452796069.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-09-14 06:59+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:25+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-07-10 23: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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449865548.000000\n" +"X-POOTLE-MTIME: 1436570192.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sv/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sv/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sv/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sv/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-23 16:40+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490287251.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476803290.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 03:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -721,6 +721,30 @@ msgid "Hierarchical" msgstr "Ya msonge" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467710724.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467710723.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 21:53+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:15+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sw_TZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385502810.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449864947.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3908,6 +3908,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:19+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 21:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: sw_TZ\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449865169.000000\n" +"X-POOTLE-MTIME: 1431551774.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/sw-TZ/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/sw-TZ/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-08-29 10:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1472466300.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-29 10:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-08-29 10:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: szl\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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1472466300.000000\n" +"X-POOTLE-MTIME: 1472464905.000000\n" #: dialog.src msgctxt "" @@ -714,6 +714,30 @@ msgid "Hierarchical" msgstr "" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-08-29 10:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1472464961.000000\n" #: alienwarndialog.ui @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-08-29 10:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-08-29 10:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: szl\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1472466300.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1472465072.000000\n" #: addresstemplate.src #, fuzzy @@ -338,6 +338,14 @@ msgstr "" #: formats.src +msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-29 10:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-08-29 10:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: szl\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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1472466300.000000\n" +"X-POOTLE-MTIME: 1472465141.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-29 10:25+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-08-29 10:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: szl\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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1472466300.000000\n" +"X-POOTLE-MTIME: 1472465378.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/szl/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/szl/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/szl/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/szl/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-08-29 10:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/chart2/source/controller/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/chart2/source/controller/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/chart2/source/controller/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-02 03:33+0000\n" -"Last-Translator: tamil \n" +"PO-Revision-Date: 2017-04-14 02:48+0000\n" +"Last-Translator: அருண் குமார் (Arun Kumar) \n" "Language-Team: American English \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462160004.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492138108.000000\n" #: Strings.src msgctxt "" @@ -670,7 +670,7 @@ "STR_STATUS_DATAPOINT_MARKED\n" "string.text" msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES" -msgstr "தரவு வரிசை %SERIESNUMBER இலுள்ள தரவுப்புள்ளி %POINTNUMBER தேரப்பட்டது, மதிப்புகள்: %POINTVALUES" +msgstr "தரவு வரிசை %SERIESNUMBER என்பதிலுள்ள தரவுப்புள்ளி %POINTNUMBER தேர்ந்த, மதிப்புகள்: %POINTVALUES" #: Strings.src msgctxt "" @@ -950,7 +950,7 @@ "STR_DATA_SELECT_RANGE_FOR_SERIES\n" "string.text" msgid "Select Range for %VALUETYPE of %SERIESNAME" -msgstr "%SERIESNAME இன் %VALUETYPE க்கான வீச்சைத் தேர்" +msgstr "%SERIESNAME இல் %VALUETYPE என்ற வீச்சைத் தேர்" #: Strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:18+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-14 02:48+0000\n" +"Last-Translator: அருண் குமார் (Arun Kumar) \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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476803902.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492138130.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "பதிப்புரிமை © 2000-2016 லிப்ரெஓபிஸ் பங்களிப்பாளர்கள்." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" @@ -3470,7 +3470,7 @@ "label\n" "string.text" msgid "Hex _#:" -msgstr "பதின்னறும:" +msgstr "பதின்னறும _#:" #: colorpickerdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/extensions/source/update/check.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/extensions/source/update/check.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/extensions/source/update/check.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/extensions/source/update/check.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-23 21:37+0200\n" -"PO-Revision-Date: 2016-03-29 03:54+0000\n" -"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) \n" +"PO-Revision-Date: 2017-04-14 02:53+0000\n" +"Last-Translator: அருண் குமார் (Arun Kumar) \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1459223663.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492138394.000000\n" #: updatehdl.src msgctxt "" @@ -53,11 +53,12 @@ "Note: Before downloading an update, please ensure that you have sufficient access rights to install it.\n" "A password, usually the administrator's or root password, may be required." msgstr "" -"%PRODUCTNAME %NEXTVERSION கிடைப்பிலுள்ளது.\n" +"இருக்கின்ற பதிப்பு %PRODUCTNAME %NEXTVERSION.\n" "\n" "நிறுவப்பட்டுள்ள பதிப்பு %PRODUCTNAME %PRODUCTVERSION ஆகும்.\n" "\n" -"குறிப்பு: புதுப்பித்தலைப் பதிவிறக்கும் முன், அதனை நிறுவுவதற்கான அணுகல் அனுமதி உங்களிடம் இருப்பதை உறுதிசெய்து கொள்ளுங்கள். ஒரு நிர்வாகி அல்லது வேர் கடவுச்சொல் தேவைப்படலாம்." +"குறிப்பு: புதுப்பித்தலைப் பதிவிறக்கும் முன், அதனை நிறுவுவதற்கான அணுகல் அனுமதி உங்களிடம் இருப்பதை உறுதிசெய்து கொள்ளுங்கள்.\n" +"ஒரு நிர்வாகி அல்லது வேர் கடவுச்சொல் தேவைப்படலாம்." #: updatehdl.src msgctxt "" @@ -181,7 +182,7 @@ "RID_UPDATE_STR_INSTALL_ERROR\n" "string.text" msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually." -msgstr "நிறுவியை இயக்க முடியவில்லை, %DOWNLOAD_PATH இலுள்ள %FILE_NAME ஐக் கைமுறையாக இயக்குங்கள்." +msgstr "நிறுவியை இயக்க முடியவில்லை, %DOWNLOAD_PATH அடைவிலுள்ள %FILE_NAME கோப்பைக் கைமுறையாக இயக்குங்கள்." #: updatehdl.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/extensions/uiconfig/scanner/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/extensions/uiconfig/scanner/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/extensions/uiconfig/scanner/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/extensions/uiconfig/scanner/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-30 17:05+0000\n" -"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) \n" +"PO-Revision-Date: 2017-04-14 02:53+0000\n" +"Last-Translator: அருண் குமார் (Arun Kumar) \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1443632745.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492138416.000000\n" #: griddialog.ui msgctxt "" @@ -140,7 +140,7 @@ "label\n" "string.text" msgid "Resolution [_DPI]" -msgstr "தெளிவுத்திறன் [DPI]" +msgstr "தெளிவுத்திறன் [_DPI]" #: sanedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 14:38+0000\n" "Last-Translator: ரேவதி மதியழகன்/ REVATHI.M \n" "Language-Team: LANGUAGE \n" @@ -5689,22 +5689,20 @@ msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-08-24 07:22+0000\n" "Last-Translator: ரேவதி மதியழகன்/ REVATHI.M \n" "Language-Team: LANGUAGE \n" @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-05-24 08:57+0000\n" +"PO-Revision-Date: 2017-04-14 03:25+0000\n" "Last-Translator: அருண் குமார் (Arun Kumar) \n" "Language-Team: American English <>\n" "Language: ta\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1464080278.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492140323.000000\n" #: readme.xrm msgctxt "" @@ -46,7 +46,7 @@ "A7\n" "readmeitem.text" msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to http://www.libreoffice.org/." -msgstr "இம்மென்பொருளை மேம்படுத்திவரும் ${PRODUCTNAME} சமூகம், உங்களை உறுபினராக இணைய அழைக்கிறது. நீங்கள் புதிய பயனரென்றால், ${PRODUCTNAME} தளத்திற்குச் சென்று பாருங்கள். ${PRODUCTNAME} செயல்திட்டம் பற்றிய பல தகவலை நீங்கள் அங்கு பெறலாம். அத்திட்டத்தைச் சார்ந்த சமூகங்கள் பற்றியும் அறிந்து கொள்ளலாம். சுட்டி: http://ta.libreoffice.org/." +msgstr "இம்மென்பொருளை மேம்படுத்திவரும் ${PRODUCTNAME} சமூகம், உங்களை உறுப்பினராக இணைய அழைக்கிறது. நீங்கள் புதிய பயனரென்றால், ${PRODUCTNAME} தளத்திற்குச் சென்று பாருங்கள். ${PRODUCTNAME} செயல்திட்டம் பற்றிய பல தகவலை நீங்கள் அங்கு பெறலாம். அத்திட்டத்தைச் சார்ந்த சமூகங்கள் பற்றியும் அறிந்து கொள்ளலாம். சுட்டி: http://ta.libreoffice.org/." #: readme.xrm msgctxt "" @@ -662,7 +662,7 @@ "access7\n" "readmeitem.text" msgid "For more information on the accessibility features in ${PRODUCTNAME}, see http://www.libreoffice.org/accessibility/" -msgstr "${PRODUCTNAME} இலுள்ள அனுகல் அம்சங்களைப் பற்றிய மேலதிக தகவலுக்கு, http://ta.libreoffice.org/accessibility/ ஐப் பார்க்கவும்" +msgstr "${PRODUCTNAME} என்பதிலுள்ள அனுகல் அம்சங்களைப் பற்றிய கூடுதல் தகவலுக்கு, http://ta.libreoffice.org/accessibility/ பக்கத்தைப் பார்க்கவும்" #: readme.xrm msgctxt "" @@ -678,7 +678,7 @@ "support1\n" "readmeitem.text" msgid "The main support page http://www.libreoffice.org/support/ offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at http://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at http://www.libreoffice.org/lists/users/. Alternatively, you can send in your questions to users@libreoffice.org. If you like to subscribe to the list (to get email responses), send an empty mail to: users+subscribe@libreoffice.org." -msgstr "முதன்மை ஆதரவு பக்கமான http://ta.libreoffice.org/get-help/feedback/ ${PRODUCTNAME} க்குத் தேவையான பலவித உதவி வாய்ப்புகளை அளிக்கிறது. உங்கள் கேள்விக்கு ஏற்கனவே பதிலளிக்கப்பட்டிருக்கலாம் - சமூக மன்றத்தை http://ta.libreoffice.org/get-help/nabble/ இல் சோதித்துப் பார்க்கவும், அல்லது http://ta.libreoffice.org/get-help/mailing-lists/ யிலுள்ள 'users@libreoffice.org' அஞ்சல் பட்டியலில் தேடிப் பார்க்கவும். மாறாக, உங்கள் கேள்விகளை users@libreoffice.org க்கும் நீங்கள் அனுப்பலாம். அந்த பட்டியலில் பங்களிக்க (அஞ்சல்வழி பதில் பெற) நீங்கள் விரும்பினால், ஒரு வெற்று மின்னஞ்சலை இங்கு அனுப்பவும்: users+subscribe@libreoffice.org." +msgstr "முதன்மை ஆதரவு பக்கமான http://ta.libreoffice.org/get-help/feedback/ ${PRODUCTNAME} என்பதற்க்குத் தேவையான பலவித உதவி வாய்ப்புகளை அளிக்கிறது. உங்கள் கேள்விக்கு ஏற்கனவே பதிலளிக்கப்பட்டிருக்கலாம் - சமூக மன்ற http://ta.libreoffice.org/get-help/nabble/தளத்தில் சோதித்துப் பார்க்கவும், அல்லது http://ta.libreoffice.org/get-help/mailing-lists/ மடலாடற் குழு பக்கத்தில் 'users@libreoffice.org' அஞ்சல் பட்டியலில் தேடிப் பார்க்கவும். மாறாக, உங்கள் கேள்விகளை users@libreoffice.org முகவரிக்கும் அனுப்பலாம். அந்த பட்டியலில் பங்களிக்க (அஞ்சல்வழி பதில் பெற) நீங்கள் விரும்பினால், ஒரு வெற்று மின்னஞ்சலை இங்கு அனுப்பவும்: users+subscribe@libreoffice.org." #: readme.xrm msgctxt "" @@ -686,7 +686,7 @@ "faq\n" "readmeitem.text" msgid "Also check the FAQ section at http://www.libreoffice.org/faq/." -msgstr "அ.கே.கே பிரிவையும் http://ta.libreoffice.org/faq/ இல் பார்க்கவும்." +msgstr "அகேகே பிரிவை http://ta.libreoffice.org/faq/ பக்கத்தில் பார்க்கவும்." #: 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 "பிழைகள்பற்றி புகார் அளிக்க, கண்காணிக்க, தீர்க்க நாங்கள் https://bugs.freedesktop.org/இல் வழங்கப்படும் BugZilla ஐப் பயன்படுத்துகிறோம். உங்கள் இயங்குதளத்தில் எழும் பிழைகளை உரிமையுடன் எங்களிடம் புகார் செய்யும்படி நாங்கள் வேண்டிக்கொள்கிறோம். ஊக்கமாக புகார் அளிப்பது ${PRODUCTNAME} இன் தொடர் மேம்பாட்டிற்கும் முன்னேற்றத்திற்கும் பயனர் சமூகம் செய்யும் முக்கிய உதவிகளில் ஒன்றாகும்." +msgstr "பிழைகள் பற்றி புகார் அளிக்க, கண்காணிக்க, தீர்க்க நாங்கள் https://bugs.libreoffice.org/ தளத்தில் வழங்கப்படும் BugZilla மென்பொருளைப் பயன்படுத்துகிறோம். உங்கள் இயங்குதளத்தில் எழும் பிழைகளை உரிமையுடன் எங்களிடம் புகார் செய்யும்படி நாங்கள் வேண்டிக்கொள்கிறோம். ஊக்கமாக புகார் அளிப்பது ${PRODUCTNAME} திட்டத்தை தொடர்ந்து மேம்பாடுத்தவும் முன்னேற்றவும் பயனர் சமூகம் செய்யும் முக்கிய உதவிகளில் ஒன்றாகும்." #: readme.xrm msgctxt "" @@ -726,7 +726,7 @@ "gettingimvolved3\n" "readmeitem.text" msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at http://www.libreoffice.org/contribution/" -msgstr "ஒரு பயனராக, நீங்கள் இப்போதே இத்தொகுப்பின் மேம்பாட்டுச் செயல்முறையின் ஒரு முக்கிய அங்கமாக விளங்குகிறீர்கள்; சமூகத்தின் நீண்ட கால பங்களிப்பாளராக இன்னும் அதிகமான பங்களிப்பை வழங்கும்படி உங்களை நாங்கள் ஊக்குவிக்கிறோம். தயைகூர்ந்து இணைந்து பங்களிப்பு பக்கத்தை http://ta.libreoffice.org/community/get-involved/ இல் பாருங்கள்" +msgstr "ஒரு பயனராக, நீங்கள் இப்போதே இத்தொகுப்பின் மேம்பாட்டுச் செயல்முறையின் ஒரு முக்கிய அங்கமாக விளங்குகிறீர்கள்; சமூகத்தின் நீண்ட கால பங்களிப்பாளராக இன்னும் அதிகமான பங்களிப்பை வழங்கும்படி உங்களை நாங்கள் ஊக்குவிக்கிறோம். தயைகூர்ந்து இணைந்து பங்களிப்பு பக்கத்தைப் http://ta.libreoffice.org/contribution/ பாருங்கள்" #: readme.xrm msgctxt "" @@ -742,7 +742,7 @@ "howtostart1\n" "readmeitem.text" msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at http://www.libreoffice.org/develop/." -msgstr "ஒன்று அல்லது அதிகமான அஞ்சல் பட்டியல்களில் குழுசேர்ந்து, சிறிது நேரம் காத்திருந்து, அக்டோபர் 2000 இல் ${PRODUCTNAME} இன் மூலக் குறியீடு வெளியானதிலிருந்து நடந்த விவாதங்களின் தலைப்புகளில் பரிச்சயம் அடைவதே இதில் பங்களிக்கத் தொடங்க எளிய வழியாகும். நீங்கள் சௌகரியமாக உணரும் போது நீங்கள் செய்ய வேண்டியதெல்லாம், உங்களை அறிமுகப்படுத்திக்கொண்டு ஒரு மின்னஞ்சல் அனுப்பி களத்தில் இறங்க வேண்டியதுதான். திறந்த மூல திட்டப்பணிகளில் நீங்கள் நல்ல பரிச்சயம் கொண்டவர் எனில், எங்கள் செய்ய வேண்டியவை பட்டியலில் உள்ளவற்றைப் பார்த்து http://ta.libreoffice.org/community/developers/ இல் நீங்கள் உதவக்கூடிய அம்சம் ஏதேனும் உள்ளதா எனப் பார்க்கவும்." +msgstr "ஒன்று அல்லது அதிகமான அஞ்சல் பட்டியல்களில் குழுசேர்ந்து, சிறிது காலம் காத்திருந்து, அக்டோபர் 2000 ஆண்டில் ${PRODUCTNAME} திட்டத்தின் மூலக் குறியீடு வெளியானதிலிருந்து நடந்த விவாதங்களின் தலைப்புகளில் பரிச்சயம் அடைவதே இதில் பங்களிக்கத் தொடங்க எளிய வழியாகும். நீங்கள் சௌகரியமாக உணரும் போது நீங்கள் செய்ய வேண்டியதெல்லாம், உங்களை அறிமுகப்படுத்திக்கொண்டு ஒரு மின்னஞ்சல் அனுப்பி களத்தில் இறங்க வேண்டியதுதான். திறந்த மூல திட்டப்பணிகளில் நீங்கள் நல்ல பரிச்சயம் கொண்டவர் எனில், எங்கள் செய்ய வேண்டியவை பட்டியலில் உள்ளவற்றைப் பார்த்து http://ta.libreoffice.org/develop/ தளத்தில் நீங்கள் உதவக்கூடிய அம்சம் ஏதேனும் உள்ளதா எனப் பார்க்கவும்." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/scaddins/source/analysis.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/scaddins/source/analysis.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/scaddins/source/analysis.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/scaddins/source/analysis.po 2017-05-03 16:46:29.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-11-10 19:33+0100\n" -"PO-Revision-Date: 2016-03-29 05:45+0000\n" -"Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) \n" +"PO-Revision-Date: 2017-04-14 03:26+0000\n" +"Last-Translator: அருண் குமார் (Arun Kumar) \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1459230305.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492140377.000000\n" #: analysis.src msgctxt "" @@ -3568,7 +3568,7 @@ "1\n" "string.text" msgid "Returns the price per 100 currency units face value of a security that pays periodic interest" -msgstr "விலை $100 முக மதிப்பு அல்லது கருவூல ரசீதை அளிக்கிறது" +msgstr "விலை $100 முக மதிப்பு அல்லது கருவூல இரசீதை அளிக்கிறது" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 04:56+0000\n" -"Last-Translator: tamil \n" +"Last-Translator: Anonymous Pootle User\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-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457758617.000000\n" +"X-POOTLE-MTIME: 1457758584.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "வரிசைமுறை" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 04:51+0000\n" "Last-Translator: tamil \n" "Language-Team: Tamil <>\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476766288.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME Mozilla Public License, v. 2.0 விதிகளுக்கு உட்பட்டு வழங்கப்படுகிறது. MPL இன் ஒரு நகலை http://mozilla.org/MPL/2.0/ இல் பெறலாம்.\n" -"\n" -"மென்பொருள் பகுதிகளுடன் தொடர்புள்ள மூன்றாம் தரப்பினர் குறியீட்டுக்கான கூடுதல் பதிப்புரிமை அறிவிப்புகளும் உரிம விதிமுறைகளும் LICENSE.html கோப்பில் உள்ளன; துல்லியமான விவரங்களை ஆங்கிலத்தில் காண Show License ஐத் தேர்ந்தெடுக்கவும்.\n" -"\n" -"இங்கு குறிப்பிடப்பட்டுள்ள அனைத்து வர்த்தக முத்திரைகளும் பதிவு செய்யப்பட்ட வர்த்தக முத்திரைகளும் அந்தந்த உரிமையாளர்களுக்கே சொந்தம்.\n" -"\n" -"பதிப்புரிமை © 2000, 2016 லிப்ரெஓபிஸ் பங்களிப்பாளர்கள். அனைத்து உரிமைகளும் காக்கப்பட்டவை.\n" -"\n" -"இந்தத் தயாரிப்பு 2000, 2011 Oracle மற்றும்/அல்லது அதன் இணையாளர்களின் பதிப்புரிமை பெற்ற OpenOffice.org ஐ அடிப்படையாகக் கொண்டு %OOOVENDOR ஆல் உருவாக்கப்பட்டது. %OOOVENDOR அனைத்து சமூக உறுப்பினர்களுக்கும் நன்றி தெரிவித்துக்கொள்கிறது, மேல் விவரங்களுக்கு http://www.libreoffice.org/ ஐப் பார்க்கவும்." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-29 05:36+0000\n" "Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) \n" "Language-Team: American English \n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1459229803.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-09-19 08:37+0000\n" "Last-Translator: tamil \n" "Language-Team: American English <>\n" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-29 06:08+0000\n" "Last-Translator: வே. இளஞ்செழியன் (Ve. Elanjelian) \n" "Language-Team: American English <>\n" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ta/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ta/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ta/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ta/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 01:09+0000\n" "Last-Translator: tamil \n" "Language-Team: Tamil <>\n" @@ -5071,16 +5071,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/te/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:21+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 15:20+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" "Language: te\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476804066.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476804026.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–2016 LibreOffice contributors." -msgstr "కాపీరైట్ © 2000 - 2014 లిబ్రేఆఫీస్ సహాయకులు." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/te/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-12 06:20+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-03-12 06:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457763611.000000\n" +"X-POOTLE-MTIME: 1457763595.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "వరుసక్రమం" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/te/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 09:53+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467712427.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467712412.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/te/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/svtools/source/dialogs.po 2017-05-03 16:46:29.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-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 22:01+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:43+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385503273.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449866639.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/te/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462794310.000000\n" +"X-POOTLE-MTIME: 1462794309.000000\n" #: imagemgr.src msgctxt "" @@ -3893,6 +3893,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/te/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:48+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-13 23:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" "Language: te\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449866911.000000\n" +"X-POOTLE-MTIME: 1431559614.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/te/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/te/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/te/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/te/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" @@ -5087,16 +5087,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476803678.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-21 00:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5715,22 +5715,20 @@ msgstr "Функтсияҳо" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 21:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2456,7 +2456,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 03:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -721,6 +721,30 @@ msgid "Hierarchical" msgstr "Бо иерархия" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 10:16+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 10:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: tg\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467713766.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467713748.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 22:05+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:35+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385503546.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449866129.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 10:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3909,6 +3909,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:40+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 00:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: tg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449866407.000000\n" +"X-POOTLE-MTIME: 1431561976.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tg/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tg/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tg/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tg/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/th/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 15:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476803896.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476803798.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/th/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 06:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457763905.000000\n" +"X-POOTLE-MTIME: 1457763901.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "ลำดับชั้น" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/th/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467713754.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467713753.000000\n" #: alienwarndialog.ui msgctxt "" @@ -799,7 +799,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/th/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-05-14 00:54+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:42+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431564842.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449866579.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/th/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 11:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462791962.000000\n" +"X-POOTLE-MTIME: 1462791961.000000\n" #: imagemgr.src msgctxt "" @@ -3896,6 +3896,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/th/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:46+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 00:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449866795.000000\n" +"X-POOTLE-MTIME: 1431565078.000000\n" #: stbctrls.src msgctxt "" @@ -153,6 +153,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/th/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/th/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/th/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/th/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5074,16 +5074,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476803809.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 05:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457759397.000000\n" +"X-POOTLE-MTIME: 1457759384.000000\n" #: dialog.src msgctxt "" @@ -743,6 +743,30 @@ msgid "Hierarchical" msgstr "Tatelano" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:37+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467715040.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467715035.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 22:17+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:40+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: tn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385504264.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449866423.000000\n" #: addresstemplate.src msgctxt "" @@ -344,6 +344,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 13:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3957,6 +3957,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:43+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 01:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: tn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449866623.000000\n" +"X-POOTLE-MTIME: 1431567580.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tn/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tn/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tn/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tn/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 10:49+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-23 00:22+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485130971.000000\n" #: aboutconfigdialog.ui @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Telif Hakkı © 2000–2016 LibreOffice katkıcıları." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-24 19:08+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487963319.000000\n" #: 01120000.xhp @@ -5708,7 +5708,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5716,7 +5716,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-02-19 21:46+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487540793.000000\n" #: 01000000.xhp @@ -2454,7 +2454,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 11:12+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484997153.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Hiyerarşik" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 17:24+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485019472.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME Mozilla Kamu Lisansı'nın v. 2.0 sürümünde belirtilen şartlar çerçevesinde kullanıma sunulmaktadır. MPL'nin bir kopyası http://mozilla.org/MPL/2.0/ adresinden alınabilir.\n" -"\n" -"Yazılımın bazı kısımlar için geçerli Üçüncü Taraflara Ait Ek Kodların telif hakkı bildirimleri ve lisans şartları LICENSE.html dosyasında belirtilmektedir; tüm ayrıntıları İngilizce görmek için Show License seçeneğini seçiniz.\n" -"\n" -"Burada sözü edilen tüm ticari markalar ve tescilli markalar ilgili sahiplerine aittir.\n" -"\n" -"Telif Hakkı© 2000–2016 LibreOffice Katkıcılar Topluluğu. Tüm hakları saklıdır.\n" -"\n" -"Bu ürün 2000, 2011 Telif Hakları Oracle ve/veya yan kuruluşlarına ait olan OpenOffice.org temel alınarak %OOOVENDOR tarafından geliştirilmiştir. %OOOVENDOR tüm topluluk üyelerinin katkısını tanımaktadır, daha fazla bilgi için http://www.libreoffice.org/ adresini ziyaret ediniz." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-02 22:32+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1488493931.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 17:12+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1485018779.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Macarca (Szekely-Macarca Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-05 23:33+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483659204.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/tr/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/tr/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/tr/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/tr/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-21 11:12+0000\n" "Last-Translator: Necdet Yucel \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484997166.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Çık" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "_Değişiklikleri uygula ve yeniden başlat" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476803993.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 05:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457759849.000000\n" +"X-POOTLE-MTIME: 1457759844.000000\n" #: dialog.src msgctxt "" @@ -715,6 +715,30 @@ msgid "Hierarchical" msgstr "Hi ku landzelelana" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467716508.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467716507.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 22:28+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:49+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ts\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385504925.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449866944.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 13:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3965,6 +3965,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:52+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 03:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ts\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449867162.000000\n" +"X-POOTLE-MTIME: 1431573742.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ts/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ts/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ts/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ts/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:09+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 15:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: ug\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476804375.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476804290.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "نەشر ھوقۇقىغا ئىگە © 2000 - 2016 LibreOffice تۆھپىكارلار." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-22 15:22+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5684,22 +5684,20 @@ msgstr "فونكىسىيە" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" -msgstr "" +msgid "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-06 22:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 06:15+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457763324.000000\n" +"X-POOTLE-MTIME: 1457763316.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "دەرىجىگە ئايرىلغان" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467717393.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467717363.000000\n" #: alienwarndialog.ui msgctxt "" @@ -791,7 +791,6 @@ msgstr "ئىجازەتنامە كۆرسەت(_S)" #: licensedialog.ui -#, fuzzy msgctxt "" "licensedialog.ui\n" "label\n" @@ -804,19 +803,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME نى Mozilla ئاممىۋى ئىجازەت كېلىشىمى، v. 2.0 دە ھوقۇق بەرگەن ماددىلىرىغا ئاساسەن كۆپچىلىكنىڭ ئىشلىتى ئۈچۈن تارقىتىلغان. MPL ماددىلىرىنىڭ كۆپەيتىلمە نۇسخىسىغا http://mozilla.org/MPL/2.0/ دىن ئېرىشەلەيسىز.\n" -"\n" -"بۇ يۇمشاق دېتالغا ئىشلىتىلگەن ئۈچىنچى تەرەپ قوشۇمچە كودلىرىنىڭ ئەسەر ھوقۇقى باياناتى ۋە ماددىلىرىنىڭ تەپسىلات قىسمى ئۇنىڭ ماددىلىرىنىڭ تىزىمى LICENSE.html ھۆججەتتە؛ ئىجازەتنامىنى كۆرسىتىش چېكىلسە ئىنگلىزچە تەپسىلاتىنى كۆرسىتىدۇ.\n" -"\n" -"بارلىق تاۋار ماركىلىرى ۋە خەتلەتكەن تاۋار ماركىلىرى مەزكۇر تېكىستتە تىلغا ئېلىنغانلارنىڭ ئۆزلىرىنىڭ مۈلكىدۇر.\n" -"\n" -"نەشر ھوقۇقىغا ئىگە ©2000, 2014 LibreOffice تۆھپىكارلىرى ۋە ياكى ئۇنىڭغا تەۋە ئورۇن. بارلىق ھوقۇقنى ساقلاپ قالىدۇ.\n" -"\n" -"بۇ مەھسۇلات %OOOVENDOR نى OpenOffice.org ئاساسىدا قۇرغان. OpenOffice.org نەشر ھوقۇقىغا ئىگە 2000, 2011 Oracle ۋە ياكى ئۇنىڭغا تەۋە ئورۇنلار. %OOOVENDOR بارلىق جامائەت ئەزالىرىغا رەھمەت ئېيتىدۇ، ئەگەر تېخىمۇ كۆپ تەپسىلاتنى بىلمەكچى بولسىڭىز http://www.libreoffice.org/ دىن كۆرۈڭ." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-02-21 02:02+0000\n" -"Last-Translator: Abduqadir Abliz \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-02 04:21+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1456020175.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1462162897.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-14 00:10+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: LANGUAGE \n" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 04:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ug/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ug/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ug/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ug/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5087,16 +5087,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-28 13:55+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:18+0000\n" +"Last-Translator: Андрій Бандура \n" "Language-Team: none\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490709323.000000\n" +"X-POOTLE-MTIME: 1491988700.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 учасники спільноти LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "Copyright © 2000–2017 учасники спільноти LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/dbaccess/source/ui/querydesign.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/dbaccess/source/ui/querydesign.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/dbaccess/source/ui/querydesign.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-23 16:02+0000\n" +"PO-Revision-Date: 2017-04-03 20:43+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482508969.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491252187.000000\n" #: query.src msgctxt "" @@ -187,7 +187,7 @@ "STR_QUERY_FUNCTIONS\n" "string.text" msgid "(no function);Group" -msgstr "(без функції);Group" +msgstr "(без функції);Групувати" #: query.src msgctxt "" @@ -239,7 +239,7 @@ "ID_QUERY_DISTINCT\n" "menuitem.text" msgid "Distinct Values" -msgstr "Однозначні значення" +msgstr "Різні значення" #: query.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/dbaccess/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/dbaccess/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/dbaccess/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/dbaccess/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-08-04 22:11+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2017-05-02 19:59+0000\n" +"Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1470348715.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493755154.000000\n" #: admindialog.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "De_finition and data" -msgstr "_Означення та дані" +msgstr "Ст_руктура та дані" #: copytablepage.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Def_inition" -msgstr "О_значення" +msgstr "Ст_руктура" #: copytablepage.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "A_s table view" -msgstr "_Як таблиця" +msgstr "_Як представлення" #: copytablepage.ui msgctxt "" @@ -2144,7 +2144,7 @@ "label\n" "string.text" msgid "Distinct values:" -msgstr "Окремі значення:" +msgstr "Різні значення:" #: relationdialog.ui msgctxt "" @@ -2639,7 +2639,7 @@ "label\n" "string.text" msgid "Use Outer Join syntax '{oj }'" -msgstr "Використовуйте синтаксис зовнішнього з'єднання '{oj }'" +msgstr "Використовувати синтаксис зовнішнього з'єднання '{oj }'" #: specialsettingspage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-20 17:56+0000\n" -"Last-Translator: Андрій Бандура \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-23 17:26+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490032577.000000\n" +"X-POOTLE-MTIME: 1492968388.000000\n" #: 01120000.xhp msgctxt "" @@ -2906,7 +2906,7 @@ "par_id3150792\n" "help.text" msgid "Display the page breaks and print ranges in the sheet. Choose View - Normal to switch this mode off." -msgstr "Відображає розбиття на сторінки та діапазон друку в аркушу. Виберіть Перегляд - Звичайний для вимикання цього режиму." +msgstr "Показує розбиття на сторінки та діапазон друку на аркуші. Виберіть Перегляд - Звичайний, щоб вимкнути цей режим." #: 03100000.xhp msgctxt "" @@ -5677,7 +5677,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5685,7 +5685,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp @@ -5844,7 +5844,7 @@ "370\n" "help.text" msgid "Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered." -msgstr "" +msgstr "Служить для розрахунку величини лінійної амортизації за розрахунковий період. Якщо капітал набутий протягом платіжного періоду, використовується пропорційно розподілена амортизація." #: 04060103.xhp msgctxt "" @@ -5853,7 +5853,7 @@ "371\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Синтаксис" #: 04060103.xhp msgctxt "" @@ -5862,7 +5862,7 @@ "372\n" "help.text" msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)" -msgstr "" +msgstr "AMORLINC(Вартість; Дата_придбання; Перший термін; Залишкова вартість; Термін; Ставка; Базис)" #: 04060103.xhp msgctxt "" @@ -5871,7 +5871,7 @@ "373\n" "help.text" msgid "Cost means the acquisition costs." -msgstr "" +msgstr "Вартість – початкова вартість." #: 04060103.xhp msgctxt "" @@ -5880,7 +5880,7 @@ "374\n" "help.text" msgid "DatePurchased is the date of acquisition." -msgstr "" +msgstr "Дата придбання – дата купівлі." #: 04060103.xhp msgctxt "" @@ -5889,7 +5889,7 @@ "375\n" "help.text" msgid "FirstPeriod is the end date of the first settlement period." -msgstr "" +msgstr "Перший термін – дата закінчення першого платіжного періоду." #: 04060103.xhp msgctxt "" @@ -5898,7 +5898,7 @@ "376\n" "help.text" msgid "Salvage is the salvage value of the capital asset at the end of the depreciable life." -msgstr "" +msgstr "Залишкова вартість – ліквідаційна вартість майна у кінці періоду амортизації." #: 04060103.xhp msgctxt "" @@ -5907,7 +5907,7 @@ "377\n" "help.text" msgid "Period is the settlement period to be considered." -msgstr "" +msgstr "Період – розглядуваний платіжний період." #: 04060103.xhp msgctxt "" @@ -5916,7 +5916,7 @@ "378\n" "help.text" msgid "Rate is the rate of depreciation." -msgstr "" +msgstr "Ставка – ставка амортизації у відсотках." #: 04060103.xhp msgctxt "" @@ -5924,7 +5924,7 @@ "bm_id3145257\n" "help.text" msgid "ACCRINT function" -msgstr "" +msgstr "функція ACCRINT" #: 04060103.xhp msgctxt "" @@ -5933,7 +5933,7 @@ "335\n" "help.text" msgid "ACCRINT" -msgstr "" +msgstr "ACCRINT" #: 04060103.xhp msgctxt "" @@ -6040,7 +6040,7 @@ "346\n" "help.text" msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?" -msgstr "" +msgstr "Цінні папери придбані 28.02.01. Дата нарахування перших відсотків – 31.08.2001. Дата виплати відсотків – 01.05.01. Відсоткова ставка дорівнює 10% (0,1), а номінал становить 1000 грошових одиниць. Відсотки виплачуються раз на півроку (частота 2). Базис – американський спосіб (0). Скільки становить накопичений відсоток?" #: 04060103.xhp msgctxt "" @@ -6049,7 +6049,7 @@ "347\n" "help.text" msgid "=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0) returns 16.94444." -msgstr "" +msgstr "=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0) повертає значення 16,94444." #: 04060103.xhp msgctxt "" @@ -6057,7 +6057,7 @@ "bm_id3151240\n" "help.text" msgid "ACCRINTM function accrued interests;one-off payments" -msgstr "" +msgstr "функція ACCRINTM накопичені відсотки; разовий платіж" #: 04060103.xhp msgctxt "" @@ -6066,7 +6066,7 @@ "348\n" "help.text" msgid "ACCRINTM" -msgstr "" +msgstr "ACCRINTM" #: 04060103.xhp msgctxt "" @@ -6075,7 +6075,7 @@ "349\n" "help.text" msgid "Calculates the accrued interest of a security in the case of one-off payment at the settlement date." -msgstr "" +msgstr "Розраховує накопичений дохід для цінних паперів у разі разового платежу на дату угоди." #: 04060103.xhp msgctxt "" @@ -6084,7 +6084,7 @@ "350\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Синтаксис" #: 04060103.xhp msgctxt "" @@ -6093,7 +6093,7 @@ "351\n" "help.text" msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)" -msgstr "" +msgstr "ACCRINTM(Дата випуску; Дата розрахунку; Ставка; Номінал; Базис)" #: 04060103.xhp msgctxt "" @@ -6102,7 +6102,7 @@ "352\n" "help.text" msgid "Issue (required) is the issue date of the security." -msgstr "" +msgstr "Дата випуску (обов'язкова) дата випуску цінних паперів." #: 04060103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-20 17:12+0000\n" -"Last-Translator: Андрій Бандура \n" +"PO-Revision-Date: 2017-04-23 17:26+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490029958.000000\n" +"X-POOTLE-MTIME: 1492968417.000000\n" #: 01020000.xhp msgctxt "" @@ -856,7 +856,7 @@ "30\n" "help.text" msgid "Checks spelling in the current sheet." -msgstr "Перевіряє правопис поточного аркушу." +msgstr "Перевіряє правопис на поточному аркуші." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-26 12:46+0000\n" +"PO-Revision-Date: 2017-04-23 17:31+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490532363.000000\n" +"X-POOTLE-MTIME: 1492968679.000000\n" #: address_auto.xhp msgctxt "" @@ -2828,7 +2828,7 @@ "55\n" "help.text" msgid "Now you can apply the conditional formatting to the sheet:" -msgstr "Тепер можна застосувати умовне форматування до аркушу:" +msgstr "Тепер можна застосувати умовне форматування до аркуша:" #: cellstyle_conditional.xhp msgctxt "" @@ -3965,7 +3965,7 @@ "par_id9303872\n" "help.text" msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges." -msgstr "Якщо до того ж аркушу потрібно застосувати кілька автофільтрів, спочатку слід визначити діапазони бази даних, після чого застосувати автофільтри до цих діапазонів." +msgstr "Якщо до того ж аркуша потрібно застосувати кілька автофільтрів, спочатку слід визначити діапазони бази даних, після чого застосувати автофільтри до цих діапазонів." #: database_filter.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-28 13:58+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2017-04-04 18:58+0000\n" +"Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490709483.000000\n" +"X-POOTLE-MTIME: 1491332289.000000\n" #: 00000001.xhp msgctxt "" @@ -10484,7 +10484,7 @@ "par_id3148420\n" "help.text" msgid "Open Styles and Formatting - List Styles - context menu of an entry - choose New/Modify" -msgstr "" +msgstr "Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть Новий/Змінити" #: 00040500.xhp msgctxt "" @@ -10508,7 +10508,7 @@ "par_id3154930\n" "help.text" msgid "Open Styles and Formatting - List Styles - context menu of an entry - choose New/Modify" -msgstr "" +msgstr "Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть Новий/Змінити" #: 00040500.xhp msgctxt "" @@ -10532,7 +10532,7 @@ "par_id3156011\n" "help.text" msgid "Open Styles and Formatting - List Styles - context menu of an entry - choose New/Modify" -msgstr "" +msgstr "Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть Новий/Змінити" #: 00040500.xhp msgctxt "" @@ -10556,7 +10556,7 @@ "par_id3148733\n" "help.text" msgid "Open Styles and Formatting - List Styles - context menu of an entry - choose New/Modify" -msgstr "" +msgstr "Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть Новий/Змінити" #: 00040500.xhp msgctxt "" @@ -10580,7 +10580,7 @@ "par_id3153812\n" "help.text" msgid "Open Styles and Formatting - List Styles - context menu of an entry - choose New/Modify" -msgstr "" +msgstr "Відкрийте Стилі та форматування - Стилі списків, потім контекстне меню на елементі списку і виберіть Новий/Змінити" #: 00040500.xhp msgctxt "" @@ -10681,7 +10681,7 @@ "95\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form." -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть значок Поле зі списком або Список і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних." #: 00040501.xhp msgctxt "" @@ -10690,7 +10690,7 @@ "121\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 1." -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть значок Поле зі списком або Список і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 1." #: 00040501.xhp msgctxt "" @@ -10699,7 +10699,7 @@ "122\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box or List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 2." -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть значок Поле зі списком або Список і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 2." #: 00040501.xhp msgctxt "" @@ -10708,7 +10708,7 @@ "123\n" "help.text" msgid "Open Form Controls toolbar, click List Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть значок Список і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 3." #: 00040501.xhp msgctxt "" @@ -10717,7 +10717,7 @@ "124\n" "help.text" msgid "Open Form Controls toolbar, click Combo Box icon and drag mouse to generate field. Database connection must exist in the form: Wizard - Page 3." -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть значок Поле зі списком і перетягніть за допомогою миші, щоб створити поле. У формі має існувати підключення до бази даних: Помічник - сторінка 3." #: 00040501.xhp msgctxt "" @@ -10726,7 +10726,7 @@ "2\n" "help.text" msgid "Open Toolbox bar in Basic dialog editor, click" -msgstr "" +msgstr "Відкрийте Панель інструментів у редакторі діалогових вікон Basic, клацніть" #: 00040501.xhp msgctxt "" @@ -10778,7 +10778,7 @@ "97\n" "help.text" msgid "Open context menu of a selected form element - choose Form - General tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Форма - Загальні" #: 00040501.xhp msgctxt "" @@ -10787,7 +10787,7 @@ "98\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - General tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Форма, відкрийте вкладку Загальні" #: 00040501.xhp msgctxt "" @@ -10796,7 +10796,7 @@ "100\n" "help.text" msgid "Open context menu of a selected form element - choose Form - Data tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Форма - Дані" #: 00040501.xhp msgctxt "" @@ -10805,7 +10805,7 @@ "101\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Data tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Форма, відкрийте вкладку Дані" #: 00040501.xhp msgctxt "" @@ -10813,7 +10813,7 @@ "par_id1979125\n" "help.text" msgid "Open context menu of a selected control on an XML Form document, choose Control - Data tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента керування документа XML Form і перейдіть на вкладку Елемент керування - Дані" #: 00040501.xhp msgctxt "" @@ -10830,7 +10830,7 @@ "103\n" "help.text" msgid "Open context menu of a selected form element - choose Form - Events tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Форма - Події" #: 00040501.xhp msgctxt "" @@ -10839,7 +10839,7 @@ "104\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Form icon - Events tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Форма, відкрийте вкладку Події" #: 00040501.xhp msgctxt "" @@ -10848,7 +10848,7 @@ "78\n" "help.text" msgid "Open context menu of a selected form element - choose Control" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, виберіть команду Елемент керування" #: 00040501.xhp msgctxt "" @@ -10874,7 +10874,7 @@ "106\n" "help.text" msgid "Open context menu of a selected form element - choose Control - General tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Елемент керування - Загальні" #: 00040501.xhp msgctxt "" @@ -10883,7 +10883,7 @@ "107\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - General tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Елемент керування, відкрийте вкладку Загальні" #: 00040501.xhp msgctxt "" @@ -10892,7 +10892,7 @@ "109\n" "help.text" msgid "Open context menu of a selected form element - choose Control - Data tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Елемент керування - Дані" #: 00040501.xhp msgctxt "" @@ -10901,7 +10901,7 @@ "110\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Data tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Елемент керування, відкрийте вкладку Дані" #: 00040501.xhp msgctxt "" @@ -10910,7 +10910,7 @@ "112\n" "help.text" msgid "Open context menu of a selected form element - choose Control - Events tab" -msgstr "" +msgstr "Відкрийте контекстне меню вибраного елемента форми, перейдіть на вкладку Елемент керування - Події" #: 00040501.xhp msgctxt "" @@ -10919,7 +10919,7 @@ "113\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click Control icon - Events tab" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть піктограму Елемент керування, відкрийте вкладку Події" #: 00040501.xhp msgctxt "" @@ -10927,7 +10927,7 @@ "par_id6058839\n" "help.text" msgid "Open Form Design toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть" #: 00040501.xhp msgctxt "" @@ -10944,7 +10944,7 @@ "82\n" "help.text" msgid "Activation Order" -msgstr "" +msgstr "Порядок активації" #: 00040501.xhp msgctxt "" @@ -10952,7 +10952,7 @@ "par_id2709433\n" "help.text" msgid "Open Form Design toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть" #: 00040501.xhp msgctxt "" @@ -10969,7 +10969,7 @@ "84\n" "help.text" msgid "Add Field" -msgstr "" +msgstr "Додати поле" #: 00040501.xhp msgctxt "" @@ -10977,7 +10977,7 @@ "par_id9929502\n" "help.text" msgid "Open Form Design toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть" #: 00040501.xhp msgctxt "" @@ -10994,7 +10994,7 @@ "88\n" "help.text" msgid "Form Navigator" -msgstr "" +msgstr "Навігатор форми" #: 00040501.xhp msgctxt "" @@ -11002,7 +11002,7 @@ "par_id4886928\n" "help.text" msgid "Open Form Controls toolbar or Form Design toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\" або \"Конструктор форм\", клацніть" #: 00040501.xhp msgctxt "" @@ -11019,7 +11019,7 @@ "86\n" "help.text" msgid "Design Mode on/off" -msgstr "" +msgstr "Режим розробки" #: 00040501.xhp msgctxt "" @@ -11028,7 +11028,7 @@ "114\n" "help.text" msgid "Open Form Navigator - select form - open context menu - choose Open in design mode" -msgstr "" +msgstr "Відкрийте Навігатор форми, виберіть форму, відкрийте контекстне меню, виберіть команду Відкрити в режимі розробки" #: 00040501.xhp msgctxt "" @@ -11036,7 +11036,7 @@ "par_id8177434\n" "help.text" msgid "Open Form Design toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Конструктор форм\", клацніть" #: 00040501.xhp msgctxt "" @@ -11053,7 +11053,7 @@ "116\n" "help.text" msgid "Open in Design Mode" -msgstr "" +msgstr "Відкрити в режимі розробки" #: 00040501.xhp msgctxt "" @@ -11062,7 +11062,7 @@ "117\n" "help.text" msgid "Open Form Control toolbar, click" -msgstr "" +msgstr "Відкрийте панель інструментів \"Елементи керування\", клацніть" #: 00040501.xhp msgctxt "" @@ -11079,7 +11079,7 @@ "118\n" "help.text" msgid "Wizards On/Off" -msgstr "" +msgstr "Помічник" #: 00040501.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-26 12:56+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2017-04-03 16: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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490532994.000000\n" +"X-POOTLE-MTIME: 1491238437.000000\n" #: 01010000.xhp msgctxt "" @@ -172,7 +172,7 @@ "66\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Створює новий документ презентації ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -434,7 +434,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Створює новий документ презентації ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -2168,7 +2168,7 @@ "bm_id3145211\n" "help.text" msgid "directories; creating new folder creation My Documents folder; opening multiple documents; opening opening; several files selecting; several files opening; files, with placeholders placeholders;on opening files documents; opening with templates templates; opening documents with documents; styles changed styles; 'changed' message" -msgstr "" +msgstr "каталоги; створення нових створення теки тека Мої документи; відкриття множинний вибір; відкриття відкриття; кілька файлів вибір; кілька файлів відкриття; файли, з покажчиками місця заповнення заповнювачів;при відкритті файлів \"документи\"; відкриття за допомогою шаблонів шаблони; відкриття документів з допомогою документи; стилі змінені стилі; повідомлення \"змінені\"" #: 01020000.xhp msgctxt "" @@ -2176,7 +2176,7 @@ "hd_id3146936\n" "help.text" msgid "Open" -msgstr "" +msgstr "Відкрити" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-26 13:10+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2017-04-15 17:50+0000\n" +"Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490533837.000000\n" +"X-POOTLE-MTIME: 1492278648.000000\n" #: 01110000.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "par_idN10CC6\n" "help.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: 01170000.xhp msgctxt "" @@ -16585,7 +16585,7 @@ "tit\n" "help.text" msgid "Run SQL command directly" -msgstr "" +msgstr "Виконати команду SQL напряму" #: 14030000.xhp msgctxt "" @@ -16594,7 +16594,7 @@ "1\n" "help.text" msgid "Run SQL command directly" -msgstr "" +msgstr "Виконати команду SQL напряму" #: 14030000.xhp msgctxt "" @@ -16629,7 +16629,7 @@ "4\n" "help.text" msgid "Run SQL command directly" -msgstr "" +msgstr "Виконати команду SQL напряму" #: 14030000.xhp msgctxt "" @@ -16775,7 +16775,7 @@ "tit\n" "help.text" msgid "Distinct Values" -msgstr "" +msgstr "Різні значення" #: 14070000.xhp msgctxt "" @@ -16783,7 +16783,7 @@ "bm_id3149991\n" "help.text" msgid "SQL; DISTINCT parameterdistinct values in SQL queries" -msgstr "" +msgstr "SQL; параметр DISTINCTрізні значення в запитах SQL" #: 14070000.xhp msgctxt "" @@ -16792,7 +16792,7 @@ "1\n" "help.text" msgid "Distinct Values" -msgstr "Окремі значення" +msgstr "Різні значення" #: 14070000.xhp msgctxt "" @@ -16801,7 +16801,7 @@ "2\n" "help.text" msgid "Expands the created select statement of the SQL Query in the current column by the parameter DISTINCT. The consequence is that identical values occurring multiple times are listed only once." -msgstr "" +msgstr "Розширює створену виділену інструкцію запиту SQL в поточному стовпчику із використанням параметра DISTINCT. Як наслідок, усі однакові значення, які зустрічаються кілька разів, будуть відображені тільки один раз." #: 14070000.xhp msgctxt "" @@ -16818,7 +16818,7 @@ "3\n" "help.text" msgid "Distinct Values" -msgstr "" +msgstr "Різні значення" #: 18010000.xhp msgctxt "" @@ -18844,7 +18844,7 @@ "par_id3152820\n" "help.text" msgid "In the Query Properties dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set." -msgstr "" +msgstr "В діалоговому вікні Властивості запиту ви можете задати дві властивості цього запиту SQL, а саме чи слід повертати різні значення чи обмежити множину результатів." #: querypropdlg.xhp msgctxt "" @@ -18860,7 +18860,7 @@ "hd_id3154927\n" "help.text" msgid "Distinct Values" -msgstr "" +msgstr "Різні значення" #: querypropdlg.xhp msgctxt "" @@ -18868,7 +18868,7 @@ "par_id030520091208050\n" "help.text" msgid "Use distinct values in query." -msgstr "" +msgstr "Використовувати різні значення у запиті." #: querypropdlg.xhp msgctxt "" @@ -18876,7 +18876,7 @@ "par_id0305200912080610\n" "help.text" msgid "Not use distinct values in query." -msgstr "" +msgstr "Не використовувати різні значення у запиті." #: querypropdlg.xhp msgctxt "" @@ -18884,7 +18884,7 @@ "par_id3156040\n" "help.text" msgid "Expands the created select statement of the SQL Query in the current column by the parameter DISTINCT. The consequence is that identical values occurring multiple times are listed only once." -msgstr "" +msgstr "Розширює створену виділену інструкцію запиту SQL в поточному стовпчику із використанням параметра DISTINCT. Як наслідок, усі однакові значення, які зустрічаються кілька разів, будуть відображені тільки один раз." #: querypropdlg.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-10-18 20:42+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2017-05-02 19:59+0000\n" +"Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476823344.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493755142.000000\n" #: 02000000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3150445\n" "help.text" msgid "queries;overview (Base)tables in databases; printing queries (Base)printing; queries (Base)queries; printing (Base)" -msgstr "запити;огляд (Підстави)таблиці в базах даних; друк запитів (Підстави)друк; запити (Підстави)запити; друк (Підстави)" +msgstr "запити;огляд (Base)таблиці в базах даних; друк запитів (Base)друк; запити (Base)запити; друк (Base)" #: 02000000.xhp msgctxt "" @@ -138,7 +138,7 @@ "47\n" "help.text" msgid "You can also open the data source view (F4), select the entire database table in the data source view (button in the top left corner of the table), and then drag the selection to a text document or spreadsheet." -msgstr "Крім того, можна відкрити ракурс джерела даних (F4), вибрати всю таблицю бази даних у ракурсі джерела даних (кнопка у лівому верхньому куті таблиці) і перетягти вибране у текстовий документ або електронну таблицю." +msgstr "Крім того, можна відкрити перегляд джерела даних (Shift+Ctrl+F4), вибрати всю таблицю бази даних у перегляді джерела даних (кнопка у лівому верхньому куті таблиці) і перетягти вибране у текстовий документ або електронну таблицю." #: 02000000.xhp msgctxt "" @@ -298,7 +298,7 @@ "6\n" "help.text" msgid "Allows you to open the query in the Design View in spite of missing elements. This option also allows you to specify if other errors need to be ignored." -msgstr "Можливість відкрити запит в конструкторі, незважаючи на відсутні елементи. Також можна вказати інші помилки, які слід ігнорувати." +msgstr "Дозволяє відкрити запит в конструкторі, незважаючи на відсутні елементи. Ця опція також дозволяє вказати, чи потрібно ігнорувати інші помилки." #: 02000002.xhp msgctxt "" @@ -307,7 +307,7 @@ "7\n" "help.text" msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error." -msgstr "Запит відкривається в режимі конструктора (графічний інтерфейс). Відсутні таблиці показані порожніми, а неправильні поля відображаються в спеціальному списку полів. Це дозволяє працювати саме з тими полями, які викликали помилку." +msgstr "Запит відкривається в режимі конструктора (графічний інтерфейс). Відсутні таблиці показані порожніми, а недійсні поля з їх (недійсними) іменами відображаються в списку полів. Це дає змогу працювати саме з тими полями, які викликали помилку." #: 02000002.xhp msgctxt "" @@ -316,7 +316,7 @@ "8\n" "help.text" msgid "Open the query in the SQL View" -msgstr "Відкрити запит у представленні SQL" +msgstr "Відкрити запит у вигляді SQL" #: 02000002.xhp msgctxt "" @@ -325,7 +325,7 @@ "9\n" "help.text" msgid "Allows you to open the query design in the SQL Mode and to interpret the query as a Native SQL. You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)." -msgstr "Дозволяє відкрити вікно конструктора запитів у Режимі SQL та подати запит в якості Власного запиту SQL. Вийти з власного режиму SQL можна тільки після того, як інструкція $[officename] буде повністю інтерпретована (це можливо тільки у випадку, якщо використані таблиці або поля в запиті фактично існують)." +msgstr "Дозволяє відкрити вікно конструктора запитів у режимі SQL та обробити запит в якості SQL коду. Вийти з режиму SQL коду можна тільки після того, як інструкція $[officename] буде повністю інтерпретована (це можливо тільки при використанні в запиті таблиць або полів, що дійсно існують)." #: 02000002.xhp msgctxt "" @@ -343,7 +343,7 @@ "11\n" "help.text" msgid "Allows you to cancel the procedure and specify that the query should not be opened. This option corresponds to the function of the Cancel dialog button." -msgstr "Можливість скасувати процедуру і вказати, щоб відкриття запиту не виконувалося. Цей параметр відповідає функції кнопки Скасувати." +msgstr "Дозволяє скасувати процедуру і вказати, щоб відкриття запиту не виконувалося. Цей параметр відповідає функції кнопки Скасувати." #: 02000002.xhp msgctxt "" @@ -361,7 +361,7 @@ "13\n" "help.text" msgid "If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored. Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted." -msgstr "Якщо обраний перший варіант, то при відкритті запиту в графічному поданні, незважаючи на відсутні елементи, можна вказати інші помилки, які повинні ігноруватися. Отже, під час поточного процесу відкриття повідомлення про помилки не відображаються, якщо запит інтерпретується неправильно." +msgstr "Якщо ви обрали перший варіант та хочете відкрити цей запит в графічному поданні, незважаючи на відсутні елементи, то можете вказати ігнорування інших помилок. Отже, під час цього відкривання повідомлення про помилки не будуть відображені навіть, коли запит не можна правильно інтерпретувати." #: 02010100.xhp msgctxt "" @@ -377,7 +377,7 @@ "bm_id3153323\n" "help.text" msgid "views; creating database views (Base) queries; creating in design view (Base) designing; queries (Base) design view; queries/views (Base) joining;tables (Base) tables in databases; joining for queries (Base) queries; joining tables (Base) tables in databases; relations (Base) relations; joining tables (Base) queries; deleting table links (Base) criteria of query design (Base) queries; formulating filter conditions (Base) filter conditions;in queries (Base) parameters; queries (Base) queries; parameter queries (Base) SQL; queries (Base) native SQL (Base)" -msgstr "" +msgstr "перегляди; створення перегляду бази даних (Base) запити; створення в режимі конструктора (Base) проектування; запити (Base) проектування перегляду; запити/перегляди (Base) зв'язування; таблиці (Base) таблиці в базах даних; зв'язування для запитів (Base) запити; зв'язування таблиць (Base) таблиці в базах даних; зв'язки (Base) зв'язки; зв'язування таблиць (Base) запити; видалення посилань на таблицю (Base) критерії проектування запиту (Base) запити; формулювання умов фільтрації (Base) умови фільтрації; в запитах (Base) параметри; запити (Base) запити; параметри запитів (Base) SQL; запити (Base) SQL код (Base)" #: 02010100.xhp msgctxt "" @@ -433,7 +433,7 @@ "par_id3145673\n" "help.text" msgid "To create a query, click the Queries icon in a database document, then click Create Query in Design View." -msgstr "Щоб створити запит, клацніть піктограму Запити в документі бази даних, а потім виберіть Створити запит у режимі конструктора." +msgstr "Щоб створити запит, клацніть піктограму Запити в документі бази даних, а потім виберіть Створити запит у режимі дизайну." #: 02010100.xhp msgctxt "" @@ -441,7 +441,7 @@ "par_id3150255\n" "help.text" msgid "The lower pane of the Design View is where you define the query. To define a query, specify the database field names to include and the criteria for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press Command Ctrl+arrow key." -msgstr "" +msgstr "Нижня панель конструктора дозволяє вам визначити запит. Для цього, треба вказати назви полів бази даних які будуть використані в ньому, та критерії відображення полів. Щоб змінити послідовність розміщення стовпців у нижній панелі консруктора, перетягніть заголовок стовпця у потрібне місце розташування, або оберіть стовпець та натисніть Command Ctrl+клавіша зі стрілкою." #: 02010100.xhp msgctxt "" @@ -553,7 +553,7 @@ "par_id3144762\n" "help.text" msgid "Double-click fields to add them to the query. Drag-and-drop to define relations." -msgstr "Двічі клацніть поля, щоб додати їх до запиту. Перетягування для визначення зв'язків." +msgstr "Двічі клацніть поля, щоб додати їх до запиту. Перетягніть одне поле та відпустіть його на інше для визначення зв'язків між ними." #: 02010100.xhp msgctxt "" @@ -617,7 +617,7 @@ "par_id3152577\n" "help.text" msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must tell $[officename] what the relationship exists between the data in the two spreadsheets." -msgstr "Якщо, наприклад, є електронна таблиця для статей під номерами та електронна таблиця для клієнтів, у яку записуються всі статті, замовлені клієнтом з використанням відповідних номерів статей, то існує зв'язок між двома полями даних \"номер статті\". Тепер, щоб створити запит усіх замовлених клієнтом статей, необхідно отримати дані з двох таблиць. Для цього потрібно вказати у $[officename], який зв'язок існує між даними цих електронних таблиць." +msgstr "Якщо, наприклад, у вас є таблиця для статей ідентифікованих за номером статті та таблиця для клієнтів, у яку ви записуєте всі статті, замовлені клієнтом з використанням відповідних номерів статей, то існує зв'язок між двома полями даних \"номер статті\". Тепер, щоб створити запит усіх замовлених клієнтом статей, вам необхідно отримати дані з двох таблиць. Для цього потрібно вказати $[officename], який зв'язок існує між даними цих таблиць." #: 02010100.xhp msgctxt "" @@ -625,7 +625,7 @@ "par_id3155302\n" "help.text" msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields in the two windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query." -msgstr "Виберіть ім'я поля в таблиці (наприклад, ім'я поля \"Номер елемента таблиці клієнтів), утримуючи кнопку миші, і перетягніть ім'я поля на ім'я поля іншої таблиці (\"Номер елемента таблиці елементів). Якщо відпустити кнопку миші, то з'являється лінія, що з'єднує ці два поля в двох вікнах. Відповідна умова (вміст імен полів має збігатися) вводиться в підсумковий запит SQL." +msgstr "Щоб зробити це, клацніть ім'я поля в таблиці (наприклад, ім'я поля \"Номер елемента\" таблиці клієнтів), утримуйте кнопку миші натиснутою та перетягніть назву поля на назву поля іншої таблиці (\"Номер елемента\" таблиці елементів). Коли ви відпустите кнопку миші, з'явиться лінія, що з'єднає ці два поля в двох вікнах. Відповідна умова (вміст імен полів має збігатися) вводиться в підсумковий запит SQL." #: 02010100.xhp msgctxt "" @@ -633,7 +633,7 @@ "par_id3153876\n" "help.text" msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database." -msgstr "Створення запиту на основі декількох зв'язаних аркушів можливе тільки при використанні $[officename] в якості інтерфейсу для реляційної бази даних." +msgstr "Створення запиту на основі декількох зв'язаних таблиць можливе тільки при використанні $[officename] в якості інтерфейсу для реляційної бази даних." #: 02010100.xhp msgctxt "" @@ -657,7 +657,7 @@ "par_id3154791\n" "help.text" msgid "If you double-click the line connecting two linked fields or call the menu command Insert - New Relation, you can specify the type of link in the Relations dialog." -msgstr "Двічі клацніть лінію, що сполучає два пов'язаних поля, або виберіть команду меню Вставка - Створити зв'язок, щоб задати тип посилання в діалоговому вікні Зв'язки." +msgstr "Двічі клацніть лінію, що сполучає два пов'язаних поля, або виберіть команду меню Вставка - Створити зв'язок, щоб вказати тип посилання в діалоговому вікні Властивості зв'язку." #: 02010100.xhp msgctxt "" @@ -697,7 +697,7 @@ "hd_id3151208\n" "help.text" msgid "Define query" -msgstr "Визначити запит" +msgstr "Визначення запиту" #: 02010100.xhp msgctxt "" @@ -705,7 +705,7 @@ "par_id3158416\n" "help.text" msgid "Select conditions to define the query. Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND." -msgstr "Виберіть умови для визначення запиту. Кожен стовпець таблиці конструктора містить поле даних для запиту. Умови в одному рядку пов'язані з логічним І." +msgstr "Виберіть умови для визначення запиту. Кожен стовпець таблиці конструктора містить поле даних для запиту. Умови в одному рядку пов'язані за допомогою Логічного ТА." #: 02010100.xhp msgctxt "" @@ -713,7 +713,7 @@ "hd_id3154161\n" "help.text" msgid "Specify field name" -msgstr "Вкажіть назву поля" +msgstr "Вказати назву поля" #: 02010100.xhp msgctxt "" @@ -721,7 +721,7 @@ "par_id3146791\n" "help.text" msgid "First, select all field names from the tables that you want to add to the query. You can do this either with drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design. As you do this, you can decide which column you want to add the field to. Select a field name by double-clicking. It will then be added to the next free column." -msgstr "Спочатку виберіть всі імена полів таблиць, які потрібно додати до запиту. Для цього перетягніть або двічі клацніть ім'я поля у вікні таблиці. При перетягуванні перетягніть ім'я поля з вікна таблиці в нижню область конструктора запитів. Після цього можна визначити стовпці для додавання в поле. Щоб вибрати ім'я поля, двічі клацніть його. Воно буде додано до наступного порожнього стовпця." +msgstr "Спочатку оберіть всі назви полів таблиць, які потрібно додати до запиту. Ви можете зробити це за допомогою перетягування або подвійного клацання назви поля у вікні таблиці. Для перетягування мишкою пересуньте назву поля з вікна таблиці в нижню область конструктора запитів. Після цього ви можете визначити, у який саме стовпчик варто додати це поле. Виберіть ім'я поля подвійним клацанням. Його буде додано до наступного порожнього стовпця." #: 02010100.xhp msgctxt "" @@ -737,7 +737,7 @@ "par_id3154479\n" "help.text" msgid "To remove a field name from the query, click the column header of the field and choose the Delete command on the context menu for the column." -msgstr "Щоб видалити ім'я поля запиту, клацніть заголовок стовпця в полі і в контекстному меню стовпця виберіть команду Видалити." +msgstr "Щоб видалити назву поля із запиту, клацніть заголовок стовпця поля та виберіть команду Видалити у контекстному меню стовпця." #: 02010100.xhp msgctxt "" @@ -769,7 +769,7 @@ "par_id3154754\n" "help.text" msgid "Enter the name of the schema that is assigned to the query or table view." -msgstr "Введіть ім'я схеми, призначеної для запиту або таблиці." +msgstr "Введіть ім'я схеми, призначеної для запиту або представлення." #: 02010100.xhp msgctxt "" @@ -777,7 +777,7 @@ "hd_id3156717\n" "help.text" msgid "Query name or table view name" -msgstr "Назва запиту або таблиці" +msgstr "Назва запиту або назва представлення" #: 02010100.xhp msgctxt "" @@ -785,7 +785,7 @@ "par_id3154253\n" "help.text" msgid "Enter the name of the query or table view." -msgstr "Введіть ім'я запиту або таблиці." +msgstr "Введіть назву запиту або представлення." #: 02010100.xhp msgctxt "" @@ -929,7 +929,7 @@ "par_id3145134\n" "help.text" msgid "Specifies the criteria by which the content of the data field should be filtered." -msgstr "Задання умов фільтрації вмісту поля даних." +msgstr "Визначення умов, за якими має бути відфільтрований вміст поля даних." #: 02010100.xhp msgctxt "" @@ -1041,7 +1041,7 @@ "par_id3154486\n" "help.text" msgid "Calculates the arithmetic mean of a field." -msgstr "Обчислення середнього геометричного значення поля." +msgstr "Обчислення середнього арифметичного значення поля." #: 02010100.xhp msgctxt "" @@ -1065,7 +1065,7 @@ "par_id3155810\n" "help.text" msgid "Determines the number of records in the table. Empty fields can either be counted (a) or not (b)." -msgstr "Визначення кількості записів у таблиці. Порожні поля можуть враховуватися (a) або ні (b)." +msgstr "Визначення кількості записів у таблиці. Порожні поля можуть враховуватися (а) або ні (б)." #: 02010100.xhp msgctxt "" @@ -1081,7 +1081,7 @@ "par_id3152889\n" "help.text" msgid "b) COUNT(column): Passing a field name as an argument counts only fields in which the field name in question contains a value. Null values (empty fields) will not be counted." -msgstr "b) COUNT(стовпець): Призначення імені поля в якості аргументу, що враховує тільки ті поля, у яких дане ім'я поля містить значення. Нульові значення (порожні поля) не враховуються." +msgstr "б) COUNT(стовпець): Призначення імені поля в якості аргументу, що враховує тільки ті поля, у яких дане ім'я поля містить значення. Значення NULL (порожні поля) не враховуються." #: 02010100.xhp msgctxt "" @@ -1161,7 +1161,7 @@ "par_id3148820\n" "help.text" msgid "Group" -msgstr "Згрупувати" +msgstr "Групувати" #: 02010100.xhp msgctxt "" @@ -1169,7 +1169,7 @@ "par_id3145375\n" "help.text" msgid "GROUP BY" -msgstr "ГРУПУВАТИ ЗА" +msgstr "GROUP BY" #: 02010100.xhp msgctxt "" @@ -1177,7 +1177,7 @@ "par_id3149438\n" "help.text" msgid "Groups query data according to the field name selected. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING." -msgstr "Групування даних запиту відповідно до обраного імені поля. Виконання функцій відбувається відповідно зі зазначеними групами. У SQL цей параметр відповідає розділу GROUP BY. Якщо умова додано, то його запис з'являється в SQL HAVING." +msgstr "Виконується групування даних запиту згідно із значенням обраного поля. Виконання функцій відбувається відповідно до отриманих груп. У SQL цей параметр відповідає пропозиції GROUP BY. Якщо до групування додано умову, то її запис у SQL з'являється у пропозиції HAVING." #: 02010100.xhp msgctxt "" @@ -1217,7 +1217,7 @@ "par_id3159205\n" "help.text" msgid "Except for the Group function, the above functions are so-called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database system in use and on the current state of the Base driver." -msgstr "За виключення функції Група, вищевказані функції мають загальну назву \"Агрегатні функції\". Це функції, які виконують розрахунок даних для створення зведених даних на підставі одержаних результатів. Можуть бути доступні додаткові функції, не зазначені у полі зі списком. Це залежить від конкретної використовуваної бази даних системи і стану драйвера Base." +msgstr "За виключення функції Групувати, вищевказані функції мають загальну назву \"Агрегатні функції\". Це функції, які виконують розрахунок даних для створення зведених даних на підставі одержаних результатів. Можуть бути доступні додаткові функції, не зазначені у полі зі списком. Це залежить від конкретної використовуваної бази даних системи і стану драйвера Base." #: 02010100.xhp msgctxt "" @@ -1233,7 +1233,7 @@ "par_id3155098\n" "help.text" msgid "You can also assign aliases to function calls. If the query is not to be displayed in the column header, enter the desired name under Alias." -msgstr "Викликам функцій можна призначати псевдоніми. Щоб не відображати запит в заголовку стовпця, введіть потрібне ім'я в поле Псевдонім." +msgstr "Полям з викликами функцій можна призначати псевдоніми. Щоб приховати назву функції у заголовку стовпця, введіть потрібне ім'я в поле Псевдонім." #: 02010100.xhp msgctxt "" @@ -1241,7 +1241,7 @@ "par_id3155539\n" "help.text" msgid "The corresponding function in an SQL statement is:" -msgstr "Відповідна функція в інструції SQL:" +msgstr "Відповідна функція в інструкції SQL:" #: 02010100.xhp msgctxt "" @@ -1257,7 +1257,7 @@ "par_id3144431\n" "help.text" msgid "Example:" -msgstr "Приклад" +msgstr "Приклад:" #: 02010100.xhp msgctxt "" @@ -1265,7 +1265,7 @@ "par_id3154614\n" "help.text" msgid "SELECT COUNT(*) AS count FROM \"Item\"" -msgstr "SELECT COUNT(*) AS count FROM \"Item\"" +msgstr "SELECT COUNT(*) AS кількість FROM \"Елемент\"" #: 02010100.xhp msgctxt "" @@ -1273,7 +1273,7 @@ "par_id3154610\n" "help.text" msgid "If you run this function, you cannot insert any additional columns for the query other than receiving these columns as a \"Group\" function." -msgstr "При запуску цієї функції додаткові стовпці можуть бути вставлені в запит тільки за допомогою отримання цих стовпців як функції \"Групувати\"." +msgstr "При використанні цієї функції, додаткові стовпці можуть бути додані до запиту виключно при використанні їх із функцією \"Групувати\"." #: 02010100.xhp msgctxt "" @@ -1321,7 +1321,7 @@ "par_id3161652\n" "help.text" msgid "Double-click the \"Item_No\" field from the \"Item\" table. Display the Function line using the context menu and select the Count function." -msgstr "Двічі клацніть поле \"Номер елемента“ таблиці \"Елемент\". За допомогою контекстного меню перейдіть до рядка Функція і виберіть функцію \"Рахунок\"." +msgstr "Двічі клацніть поле \"Номер елемента\" в таблиці \"Елемент\". За допомогою контекстного меню увімкніть відображення рядка Функція та виберіть функцію \"Кількість\"." #: 02010100.xhp msgctxt "" @@ -1329,7 +1329,7 @@ "par_id3151009\n" "help.text" msgid "Enter >3 as a criterion and disable the Visible field." -msgstr "Введіть умову \">3\" і відключіть поле \"Видимий\"." +msgstr "Введіть умову \">3\" та зніміть прапорець у полі \"Видиме\"." #: 02010100.xhp msgctxt "" @@ -1393,7 +1393,7 @@ "par_id3151191\n" "help.text" msgid "Choose Group for the \"Supplier_No\" field." -msgstr "Виберіть групу для поля \"Номер постачальника\"." +msgstr "Виберіть функцію \"Групувати\" для поля \"Номер постачальника\"." #: 02010100.xhp msgctxt "" @@ -1409,7 +1409,7 @@ "par_id3147549\n" "help.text" msgid "The following context menu commands and symbols are available:" -msgstr "Доступні наступні символи і команди контекстного меню:" +msgstr "Доступні наступні елементи контекстного меню, оператори та команди:" #: 02010100.xhp msgctxt "" @@ -1417,7 +1417,7 @@ "hd_id3154172\n" "help.text" msgid "Functions" -msgstr "Функція" +msgstr "Функції" #: 02010100.xhp msgctxt "" @@ -1449,7 +1449,7 @@ "hd_id3145117\n" "help.text" msgid "Alias Name" -msgstr "Назва псевдоніма" +msgstr "Псевдонім" #: 02010100.xhp msgctxt "" @@ -1465,7 +1465,7 @@ "hd_id3153298\n" "help.text" msgid "Distinct Values" -msgstr "Однозначні значення" +msgstr "Різні значення" #: 02010100.xhp msgctxt "" @@ -1473,7 +1473,7 @@ "par_id3147500\n" "help.text" msgid "Applies only distinct values to the query. This applies to records containing data that appears several times in the selected fields. If the Distinct Values command is active, you will see only one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)." -msgstr "Застосування до запиту тільки однозначних значень. Запит застосовується до записів, що містять дані, які з'являються в обраних полях кілька разів. Якщо команда Однозначні значення активна, то в запиті буде відображатися тільки один запис (DISTINCT). В іншому випадку будуть відображатися всі записи, що задовольняють умовам запиту (ALL)." +msgstr "Застосовує до запиту тільки різні значення. Запит застосовується до записів, що містять дані, які з'являються в обраних полях кілька разів. Якщо команда Різні значення активна, то в запиті буде відображатися тільки один запис (DISTINCT). В іншому випадку будуть відображатися всі записи, що задовольняють умови запиту (ALL)." #: 02010100.xhp msgctxt "" @@ -1481,7 +1481,7 @@ "par_id3150436\n" "help.text" msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the Distinct Values command to specify in the query that the name \"Smith\" will occur only once." -msgstr "Наприклад, якщо в базі даних адрес кілька разів зустрічається прізвище \"Smith\", можна скористатися командою Однозначні значення і вказати в запиті, щоб це прізвище зустрічалося тільки один раз." +msgstr "Наприклад, якщо в базі даних адрес кілька разів зустрічається прізвище \"Сміт\", можна скористатися командою Різні значення і вказати в запиті, щоб це прізвище зустрічалося тільки один раз." #: 02010100.xhp msgctxt "" @@ -1489,7 +1489,7 @@ "par_id3152352\n" "help.text" msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the Distinct Values command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once." -msgstr "Для запиту, що включає декілька полів, поєднання значень всіх полів має бути унікальним, щоб можна було отримати результат у середині певного запису. Наприклад, в адресній книзі один раз зустрічається \"Smith in Chicago\" і два рази \"Smith in London\". За допомогою команди Однозначні значення у запиті будуть використовуватися два поля \"прізвище\" та \"місто\", а результат запит буде містити по одному значенню \"Smith in Chicago\" і \"Smith in London\"." +msgstr "Для запиту, що включає кілька полів, комбінація значень з усіх полів повинна бути унікальною, щоб результат міг бути сформований зі специфічного запису. Наприклад, в адресній книзі один раз зустрічається \"Сміт в Чикаго\" і два рази \"Сміт в Лондоні\". За допомогою команди Різні значення у запиті будуть використовуватися два поля \"прізвище\" та \"місто\", а результат запиту буде містити по одному значенню \"Сміт в Чикаго\" та \"Сміт в Лондоні\"." #: 02010100.xhp msgctxt "" @@ -1593,7 +1593,7 @@ "par_id3153120\n" "help.text" msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the operator = will be automatically adopted." -msgstr "Оператор = не відображається в полях запиту. Якщо значення вводиться без оператора, то автоматично використовується оператор =." +msgstr "Оператор = не відображається в полях запиту. Якщо ви введете значення без оператора, то оператор = буде використано автоматично." #: 02010100.xhp msgctxt "" @@ -1617,7 +1617,7 @@ "par_id3145635\n" "help.text" msgid "... the content of the field does not correspond to the specified expression." -msgstr "... вміст поля не збігається зі зазначеним виразом." +msgstr "... вміст поля не збігається із зазначеним виразом." #: 02010100.xhp msgctxt "" @@ -1777,7 +1777,7 @@ "par_id3154744\n" "help.text" msgid "... The field name is empty. For Yes/No fields with three states, this command automatically queries the undetermined state (neither Yes nor No)." -msgstr "... ім'я поля порожнє. Для полів \"Так/Ні\" з трьома станами ця команда автоматично запитує стан \"не визначено\" (ні \"Так\", ні \"ні\")." +msgstr "... значення поля порожнє. Для полів \"Так/Ні\" з трьома станами ця команда автоматично запитує стан \"не визначено\" (ні \"Так\", ні \"Ні\")." #: 02010100.xhp msgctxt "" @@ -1809,7 +1809,7 @@ "par_id3145304\n" "help.text" msgid "... the field name is not empty." -msgstr "... ім'я поля не порожнє." +msgstr "... значення поля не порожнє." #: 02010100.xhp msgctxt "" @@ -1921,7 +1921,7 @@ "par_id3161664\n" "help.text" msgid "... the field name does not contain the specified expression." -msgstr "... ім'я поля не містить зазначеного виразу." +msgstr "... значення поля не містить зазначеного виразу." #: 02010100.xhp msgctxt "" @@ -1953,7 +1953,7 @@ "par_id3154395\n" "help.text" msgid "... the field name contains a value that lies between the two values x and y." -msgstr "... ім'я поля містить значення, що лежить між значеннями x і y." +msgstr "... поле містить значення, що лежить між значеннями x та y." #: 02010100.xhp msgctxt "" @@ -1985,7 +1985,7 @@ "par_id3148992\n" "help.text" msgid "... the field name contains a value that does not lie between the two values x and y." -msgstr "... ім'я поля містить значення, що лежить за межами інтервалу між значеннями x і y." +msgstr "... поле містить значення, що лежить за межами інтервалу між значеннями x та y." #: 02010100.xhp msgctxt "" @@ -2249,7 +2249,7 @@ "par_id3146073\n" "help.text" msgid "Like Escape Sequence: {escape 'escape-character'}" -msgstr "" +msgstr "Керівна послідовність like : {escape \"escape-символ\"}" #: 02010100.xhp msgctxt "" @@ -2257,7 +2257,7 @@ "par_id3150661\n" "help.text" msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}" -msgstr "" +msgstr "Приклад: SELECT * FROM Item WHERE ItemName LIKE 'The *%' {escape '*'}" #: 02010100.xhp msgctxt "" @@ -2265,7 +2265,7 @@ "par_id3148541\n" "help.text" msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period." -msgstr "" +msgstr "Будуть отримані всі записи, ім'я яких починається із \"The *\". Це означає, що ви також можете шукати символи, що використовуються як заповнювачі, наприклад, *, ?, _, % або крапка." #: 02010100.xhp msgctxt "" @@ -2273,7 +2273,7 @@ "par_id3150572\n" "help.text" msgid "Outer Join Escape Sequence: {oj outer-join}" -msgstr "" +msgstr "Керівна послідовність Outer Join: {oj outer-join}" #: 02010100.xhp msgctxt "" @@ -2281,7 +2281,7 @@ "par_id3156052\n" "help.text" msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" -msgstr "" +msgstr "Приклад: SELECT Article.* FROM {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" #: 02010100.xhp msgctxt "" @@ -2289,7 +2289,7 @@ "hd_id3153674\n" "help.text" msgid "Querying text fields" -msgstr "" +msgstr "Запит на текстові поля" #: 02010100.xhp msgctxt "" @@ -2297,7 +2297,7 @@ "par_id3149134\n" "help.text" msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't see it that strict)." -msgstr "" +msgstr "Щоб запросити вміст текстового поля, необхідно взяти вираз в одинарні лапки. Розрізнення великих та малих літер залежить від використовуваної бази даних. При використанні \"LIKE\" регістр враховується за визначенням (в деяких базах даних це дотримується не так суворо)." #: 02010100.xhp msgctxt "" @@ -2513,7 +2513,7 @@ "par_id3156092\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Так" #: 02010100.xhp msgctxt "" @@ -2697,7 +2697,7 @@ "par_id3152570\n" "help.text" msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query design, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the Switch Design View On/Off button, you change to the SQL view, you can see the SQL commands for a query that has been created previously." -msgstr "" +msgstr "Для переважного числа запитів у $[officename] знання SQL не вимагається, бо не потрібно вводити код SQL. При створенні запиту за допомогою конструктора запитів $[officename] автоматично перетворює ваші інструкції у відповідний синтаксис SQL. Щоб переглянути команди SQL-запиту, створеного раніше, перейдіть до вигляду SQL за допомогою кнопки Увімкнення та вимкнення режиму конструктора." #: 02010100.xhp msgctxt "" @@ -2721,7 +2721,7 @@ "par_id3149632\n" "help.text" msgid "By clicking the Run SQL command directly icon in the SQL view, you can formulate a query that is not processed by $[officename]." -msgstr "" +msgstr "Щоб сформулювати запит, не оброблюваний через $[officename], клацніть піктограму Виконати команду SQL напряму." #: 02010101.xhp msgctxt "" @@ -7208,7 +7208,7 @@ "par_idN105A5\n" "help.text" msgid "Use Outer Join syntax '{OJ }'" -msgstr "" +msgstr "Використовувати синтаксис зовнішнього з'єднання '{OJ }'" #: dabaadvpropdat.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-22 16:45+0000\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" +"PO-Revision-Date: 2017-04-02 21:59+0000\n" "Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490201120.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491170350.000000\n" #: 01000000.xhp msgctxt "" @@ -109,7 +109,7 @@ "19\n" "help.text" msgid "Language Settings" -msgstr "Параметри тмови" +msgstr "Параметри мови" #: 01000000.xhp msgctxt "" @@ -2453,7 +2453,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-27 09:46+0000\n" +"PO-Revision-Date: 2017-04-05 06:41+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490608000.000000\n" +"X-POOTLE-MTIME: 1491374500.000000\n" #: 01120000.xhp msgctxt "" @@ -27100,7 +27100,7 @@ "par_idN105E8\n" "help.text" msgid "To" -msgstr "" +msgstr "До" #: mailmerge08.xhp msgctxt "" @@ -27108,7 +27108,7 @@ "par_idN105EC\n" "help.text" msgid "Select the database field that contains the e-mail address of the recipient." -msgstr "" +msgstr "Виберіть поле бази даних, що містить електронну адресу одержувача." #: mailmerge08.xhp msgctxt "" @@ -27116,7 +27116,7 @@ "par_idN105EF\n" "help.text" msgid "Copy to" -msgstr "" +msgstr "Копія" #: mailmerge08.xhp msgctxt "" @@ -27124,7 +27124,7 @@ "par_idN105F3\n" "help.text" msgid "Opens the Copy To dialog where you can specify one or more CC or BCC addresses." -msgstr "" +msgstr "Відкриває діалогове вікно Копія, де можна вказати адреси отримувачів копії або прихованої копії." #: mailmerge08.xhp msgctxt "" @@ -27140,7 +27140,7 @@ "par_idN10604\n" "help.text" msgid "Enter the subject line for the e-mail messages." -msgstr "" +msgstr "Введіть тему електронного листа." #: mailmerge08.xhp msgctxt "" @@ -27148,7 +27148,7 @@ "par_idN10607\n" "help.text" msgid "Send as" -msgstr "" +msgstr "Надіслати як" #: mailmerge08.xhp msgctxt "" @@ -27156,7 +27156,7 @@ "par_idN1060B\n" "help.text" msgid "Select the mail format for the e-mail messages." -msgstr "" +msgstr "Виберіть формат пошти для електронних повідомлень." #: mailmerge08.xhp msgctxt "" @@ -27164,7 +27164,7 @@ "par_idN1060E\n" "help.text" msgid "The Plain text and HTML message formats are sent in the body of the message, whereas the *.odt, *.doc, and *.pdf formats are sent as attachments." -msgstr "" +msgstr "Повідомлення у форматах \"Простий текст\" і \"HTML-повідомлення\" відправляються в тілі повідомлення, а формати *.odt, *.doc і *.pdf відправляються як вкладення." #: mailmerge08.xhp msgctxt "" @@ -27180,7 +27180,7 @@ "par_idN10615\n" "help.text" msgid "Opens the E-Mail Message dialog where you can enter the e-mail message for the mail merge files that are sent as attachments." -msgstr "" +msgstr "Відкриває діалогове вікно Повідомлення ел. пошти, де можна ввести повідомлення для тих файлів розсилки, які надсилаються як вкладення." #: mailmerge08.xhp msgctxt "" @@ -27188,7 +27188,7 @@ "par_idN10626\n" "help.text" msgid "Name of the attachment" -msgstr "" +msgstr "Назва вкладення" #: mailmerge08.xhp msgctxt "" @@ -27196,7 +27196,7 @@ "par_idN1062A\n" "help.text" msgid "Shows the name of the attachment." -msgstr "" +msgstr "Показує назву вкладення." #: mailmerge08.xhp msgctxt "" @@ -27204,7 +27204,7 @@ "par_idN1062D\n" "help.text" msgid "Send all documents" -msgstr "" +msgstr "Надіслати всі документи" #: mailmerge08.xhp msgctxt "" @@ -27212,7 +27212,7 @@ "par_idN10631\n" "help.text" msgid "Select to send e-mails to all recipients." -msgstr "" +msgstr "Виберіть цей параметр, щоб надіслати повідомлення всім одержувачам." #: mailmerge08.xhp msgctxt "" @@ -27236,7 +27236,7 @@ "par_idN10649\n" "help.text" msgid "Mail Merge Wizard" -msgstr "" +msgstr "Помічник розсилання листів" #: mm_copyto.xhp msgctxt "" @@ -27244,7 +27244,7 @@ "tit\n" "help.text" msgid "Copies To" -msgstr "" +msgstr "Копії до" #: mm_copyto.xhp msgctxt "" @@ -27252,7 +27252,7 @@ "par_idN10539\n" "help.text" msgid "Copy To" -msgstr "" +msgstr "Копія" #: mm_copyto.xhp msgctxt "" @@ -27260,7 +27260,7 @@ "par_idN1053D\n" "help.text" msgid "Specify additional e-mail recipients for the mail merge document." -msgstr "" +msgstr "Вкажіть додаткових одержувачів для документа розсилки." #: mm_copyto.xhp msgctxt "" @@ -27268,7 +27268,7 @@ "par_idN1054E\n" "help.text" msgid "CC" -msgstr "" +msgstr "Копія" #: mm_copyto.xhp msgctxt "" @@ -27276,7 +27276,7 @@ "par_idN10552\n" "help.text" msgid "Enter the recipients of e-mail copies, separated by a semicolon (;)." -msgstr "" +msgstr "Введіть отримувачів копії електронних листів через крапку з комою (;)." #: mm_copyto.xhp msgctxt "" @@ -27284,7 +27284,7 @@ "par_idN10555\n" "help.text" msgid "BCC" -msgstr "" +msgstr "Прихована копія" #: mm_copyto.xhp msgctxt "" @@ -27292,7 +27292,7 @@ "par_idN10559\n" "help.text" msgid "Enter the recipients of e-mail blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Введіть отримувачів прихованої копії електронних листів через крапку з комою (;)." #: mm_cusaddfie.xhp msgctxt "" @@ -27300,7 +27300,7 @@ "tit\n" "help.text" msgid "New Address Block" -msgstr "" +msgstr "Новий блок з адресою" #: mm_cusaddfie.xhp msgctxt "" @@ -27308,7 +27308,7 @@ "par_idN10542\n" "help.text" msgid "New Address Block" -msgstr "" +msgstr "Новий блок з адресою" #: mm_cusaddfie.xhp msgctxt "" @@ -27316,7 +27316,7 @@ "par_idN10546\n" "help.text" msgid "Specify the placement of address data fields in an address block of a mail merge document." -msgstr "" +msgstr "Задайте розміщення полів адресних даних у блоці адрес в документах розсилання." #: mm_cusaddfie.xhp msgctxt "" @@ -27324,7 +27324,7 @@ "par_idN10569\n" "help.text" msgid "Address Elements" -msgstr "" +msgstr "Елементи адреси" #: mm_cusaddfie.xhp msgctxt "" @@ -27332,7 +27332,7 @@ "par_idN1056D\n" "help.text" msgid "Select a field and drag the field to the other list." -msgstr "" +msgstr "Виберіть поле і перетягніть його в інший список." #: mm_cusaddfie.xhp msgctxt "" @@ -27340,7 +27340,7 @@ "par_idN10570\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusaddfie.xhp msgctxt "" @@ -27348,7 +27348,7 @@ "par_idN10574\n" "help.text" msgid "Adds the selected field from the Address Elements list to the other list. You can add the same field more than once." -msgstr "" +msgstr "Додає вибране поле зі списку \"Елементи адреси\" в інший список. Поле можна додати декілька разів." #: mm_cusaddfie.xhp msgctxt "" @@ -27356,7 +27356,7 @@ "par_idN10577\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusaddfie.xhp msgctxt "" @@ -27364,7 +27364,7 @@ "par_idN1057B\n" "help.text" msgid "Removes the selected field from the other list." -msgstr "" +msgstr "Вилучає вибране поле з іншого списку." #: mm_cusaddfie.xhp msgctxt "" @@ -27372,7 +27372,7 @@ "par_idN1057E\n" "help.text" msgid "Drag address element to the field below" -msgstr "" +msgstr "Пересуває елемент адреси в поле внизу." #: mm_cusaddfie.xhp msgctxt "" @@ -27380,7 +27380,7 @@ "par_idN10582\n" "help.text" msgid "Arrange the fields by drag-and-drop or use the arrow buttons." -msgstr "" +msgstr "Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками." #: mm_cusaddfie.xhp msgctxt "" @@ -27396,7 +27396,7 @@ "par_idN10589\n" "help.text" msgid "Displays a preview of the first database record with the current address block layout." -msgstr "" +msgstr "Попередній перегляд першого запису бази даних з поточною розміткою блоку адреси." #: mm_cusaddfie.xhp msgctxt "" @@ -27404,7 +27404,7 @@ "par_idN1058C\n" "help.text" msgid "(Arrow Buttons)" -msgstr "" +msgstr "(Кнопки зі стрілками)" #: mm_cusaddfie.xhp msgctxt "" @@ -27412,7 +27412,7 @@ "par_idN10590\n" "help.text" msgid "Select an item in the list and click an arrow button to move the item." -msgstr "" +msgstr "Щоб перемістити елемент списку, виберіть його та натисніть кнопку зі стрілкою." #: mm_cusaddlis.xhp msgctxt "" @@ -27420,7 +27420,7 @@ "tit\n" "help.text" msgid "Customize Address List" -msgstr "" +msgstr "Налаштувати список адрес" #: mm_cusaddlis.xhp msgctxt "" @@ -27428,7 +27428,7 @@ "par_idN1053C\n" "help.text" msgid "Customize Address List" -msgstr "" +msgstr "Налаштувати список адрес" #: mm_cusaddlis.xhp msgctxt "" @@ -27436,7 +27436,7 @@ "par_idN10540\n" "help.text" msgid "Customizes the address list for mail merge documents." -msgstr "" +msgstr "Налаштовує список адрес для документів розсилання." #: mm_cusaddlis.xhp msgctxt "" @@ -27444,7 +27444,7 @@ "par_idN10551\n" "help.text" msgid "Address list elements" -msgstr "" +msgstr "Елементи списку адрес" #: mm_cusaddlis.xhp msgctxt "" @@ -27452,7 +27452,7 @@ "par_idN10555\n" "help.text" msgid "Select the fields that you want to move, delete, or rename." -msgstr "" +msgstr "Виберіть поля, які потрібно перемістити, видалити або перейменувати." #: mm_cusaddlis.xhp msgctxt "" @@ -27468,7 +27468,7 @@ "par_idN10564\n" "help.text" msgid "Inserts a new text field." -msgstr "" +msgstr "Вставляє нове текстове поле." #: mm_cusaddlis.xhp msgctxt "" @@ -27484,7 +27484,7 @@ "par_idN10572\n" "help.text" msgid "Deletes the selected field." -msgstr "" +msgstr "Видаляє вибране поле." #: mm_cusaddlis.xhp msgctxt "" @@ -27500,7 +27500,7 @@ "par_idN10579\n" "help.text" msgid "Renames the selected text field." -msgstr "" +msgstr "Змінює ім'я обраного поля." #: mm_cusgrelin.xhp msgctxt "" @@ -27508,7 +27508,7 @@ "tit\n" "help.text" msgid "Custom Salutation" -msgstr "" +msgstr "Особливе привітання" #: mm_cusgrelin.xhp msgctxt "" @@ -27516,7 +27516,7 @@ "par_idN1053C\n" "help.text" msgid "Custom Salutation" -msgstr "" +msgstr "Особливе привітання" #: mm_cusgrelin.xhp msgctxt "" @@ -27524,7 +27524,7 @@ "par_idN10540\n" "help.text" msgid "Specify the salutation layout for mail merge or e-mail merge documents. The name of this dialog is different for female recipients and male recipients." -msgstr "" +msgstr "Задайте розмітку привітання для документів розсилання, або розсилання з відправкою по електронній пошті. Назва цього діалогового вікна розрізняється залежно від статі одержувачів." #: mm_cusgrelin.xhp msgctxt "" @@ -27532,7 +27532,7 @@ "par_idN10551\n" "help.text" msgid "Salutation elements" -msgstr "" +msgstr "Елементи привітання" #: mm_cusgrelin.xhp msgctxt "" @@ -27540,7 +27540,7 @@ "par_idN10555\n" "help.text" msgid "Select a field and drag the field to the other list." -msgstr "" +msgstr "Виберіть поле і перетягніть його в інший список." #: mm_cusgrelin.xhp msgctxt "" @@ -27548,7 +27548,7 @@ "par_idN10558\n" "help.text" msgid ">" -msgstr "" +msgstr ">" #: mm_cusgrelin.xhp msgctxt "" @@ -27556,7 +27556,7 @@ "par_idN1055C\n" "help.text" msgid "Adds the selected field from the list of salutation elements to the other list. You can add a field more than once." -msgstr "" +msgstr "Додає вибране поле зі списку «Елементи привітання» в інший список. Одне й те саме поле можна додати більше одного разу." #: mm_cusgrelin.xhp msgctxt "" @@ -27564,7 +27564,7 @@ "par_idN1055F\n" "help.text" msgid "<" -msgstr "" +msgstr "<" #: mm_cusgrelin.xhp msgctxt "" @@ -27572,7 +27572,7 @@ "par_idN10563\n" "help.text" msgid "Removes the selected field from the other list." -msgstr "" +msgstr "Вилучає вибране поле з іншого списку." #: mm_cusgrelin.xhp msgctxt "" @@ -27580,7 +27580,7 @@ "par_idN10566\n" "help.text" msgid "Drag salutation elements into the box below" -msgstr "" +msgstr "Перетягніть елементи привітання у наведене нижче поле" #: mm_cusgrelin.xhp msgctxt "" @@ -27588,7 +27588,7 @@ "par_idN1056A\n" "help.text" msgid "Arrange the fields by drag-and-drop or use the arrow buttons." -msgstr "" +msgstr "Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками." #: mm_cusgrelin.xhp msgctxt "" @@ -27596,7 +27596,7 @@ "par_idN1056D\n" "help.text" msgid "Customize salutation" -msgstr "" +msgstr "Персоналізуйте привітання" #: mm_cusgrelin.xhp msgctxt "" @@ -27604,7 +27604,7 @@ "par_idN10571\n" "help.text" msgid "Select a value from the list for the salutation and the punctuation mark fields." -msgstr "" +msgstr "Виберіть елемент зі списку для привітання і знак пунктуації." #: mm_cusgrelin.xhp msgctxt "" @@ -27620,7 +27620,7 @@ "par_idN10578\n" "help.text" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "" +msgstr "Попередній перегляд першого запису бази даних з поточної розміткою привітання." #: mm_cusgrelin.xhp msgctxt "" @@ -27924,7 +27924,7 @@ "par_idN1053D\n" "help.text" msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new address blocks or salutations." -msgstr "" +msgstr "Підбирає назви логічних полів діалогового вікна розмітки до імен полів в базі даних при створенні нових блоків із адресою, або привітань." #: mm_matfie.xhp msgctxt "" @@ -27932,7 +27932,7 @@ "par_idN1054E\n" "help.text" msgid "Matches to:" -msgstr "" +msgstr "Відповідність із:" #: mm_matfie.xhp msgctxt "" @@ -27940,7 +27940,7 @@ "par_idN10552\n" "help.text" msgid "Select a field name in your database for each logical field element." -msgstr "" +msgstr "Виберіть ім'я поля бази даних для кожного елемента логічного поля." #: mm_matfie.xhp msgctxt "" @@ -27956,7 +27956,7 @@ "par_idN10559\n" "help.text" msgid "Displays a preview of the values of the first data record." -msgstr "" +msgstr "Попередній перегляд значень першого запису даних." #: mm_newaddblo.xhp msgctxt "" @@ -28036,7 +28036,7 @@ "par_idN1057E\n" "help.text" msgid "Drag address element to the field below" -msgstr "" +msgstr "Пересуньте елемент адреси в поле внизу" #: mm_newaddblo.xhp msgctxt "" @@ -28044,7 +28044,7 @@ "par_idN10582\n" "help.text" msgid "Arrange the fields with drag-and-drop or use the arrow buttons." -msgstr "" +msgstr "Упорядкуйте поля шляхом перетягування або за допомогою кнопок зі стрілками." #: mm_newaddblo.xhp msgctxt "" @@ -28060,7 +28060,7 @@ "par_idN10589\n" "help.text" msgid "Displays a preview of the first database record with the current address block layout." -msgstr "" +msgstr "Попередній перегляд першого запису бази даних з поточною розміткою блоку адреси." #: mm_newaddblo.xhp msgctxt "" @@ -28220,7 +28220,7 @@ "par_idN1053D\n" "help.text" msgid "Select, edit, or delete an address block layout for mail merge." -msgstr "" +msgstr "Виберіть, відредагуйте або видаліть розмітку блоку адреси для розсилання листів." #: mm_seladdblo.xhp msgctxt "" @@ -28228,7 +28228,7 @@ "par_idN1054E\n" "help.text" msgid "Select the address block which you want to use" -msgstr "" +msgstr "Виберіть блок адреси для використання" #: mm_seladdblo.xhp msgctxt "" @@ -28236,7 +28236,7 @@ "par_idN10552\n" "help.text" msgid "Select the block in the list that you want to use for mail merge addresses, and click OK." -msgstr "" +msgstr "Виберіть у списку блок, який потрібно використовувати для адрес розсилання і натисніть кнопку Гаразд." #: mm_seladdblo.xhp msgctxt "" @@ -28244,7 +28244,7 @@ "par_idN10555\n" "help.text" msgid "Never include country/region" -msgstr "" +msgstr "Ніколи не включати країну/регіон" #: mm_seladdblo.xhp msgctxt "" @@ -28252,7 +28252,7 @@ "par_idN10559\n" "help.text" msgid "Excludes country or regional information from the address block." -msgstr "" +msgstr "Виключає відомості про країну і області з блоку адреси." #: mm_seladdblo.xhp msgctxt "" @@ -28260,7 +28260,7 @@ "par_idN1055C\n" "help.text" msgid "Always include country/region" -msgstr "" +msgstr "Завжди включати країну/область" #: mm_seladdblo.xhp msgctxt "" @@ -28268,7 +28268,7 @@ "par_idN10560\n" "help.text" msgid "Includes country or regional information in the address block." -msgstr "" +msgstr "Включає відомості про країни і області в блок адреси." #: mm_seladdblo.xhp msgctxt "" @@ -28276,7 +28276,7 @@ "par_idN10563\n" "help.text" msgid "Only include country/region if it is not:" -msgstr "" +msgstr "Включати країну/область, тільки якщо:" #: mm_seladdblo.xhp msgctxt "" @@ -28284,7 +28284,7 @@ "par_idN10567\n" "help.text" msgid "Only includes country or regional information in the address block if the value differs from the value that you enter in the text box." -msgstr "" +msgstr "Включає відомості про країни і області в блок адреси, тільки якщо значення відрізняється від введеного в текстовому полі." #: mm_seladdblo.xhp msgctxt "" @@ -28292,7 +28292,7 @@ "par_idN10651\n" "help.text" msgid "Enter the country/region string that shall not be printed." -msgstr "" +msgstr "Введіть рядок країни або області, які не слід друкувати." #: mm_seladdblo.xhp msgctxt "" @@ -28308,7 +28308,7 @@ "par_idN1056E\n" "help.text" msgid "Opens the New Address Block dialog where you can define a new address block layout." -msgstr "" +msgstr "Відкриває діалогове вікно Новий блок адреси, де ви можете визначити нову розмітку блоку адреси." #: mm_seladdblo.xhp msgctxt "" @@ -28324,7 +28324,7 @@ "par_idN10583\n" "help.text" msgid "Opens the New Address Block dialog where you can edit the selected address block layout." -msgstr "" +msgstr "Відкриває діалогове вікно Новий блок адреси, де можна змінити обрану розмітку блоку адреси." #: mm_seladdblo.xhp msgctxt "" @@ -28340,7 +28340,7 @@ "par_idN10598\n" "help.text" msgid "Deletes the selected address block layout." -msgstr "" +msgstr "Видаляє обрану розмітку блоку адреси." #: mm_seladdlis.xhp msgctxt "" @@ -28348,7 +28348,7 @@ "tit\n" "help.text" msgid "Select Address List" -msgstr "" +msgstr "Вибрати список адрес..." #: mm_seladdlis.xhp msgctxt "" @@ -28356,7 +28356,7 @@ "par_idN10542\n" "help.text" msgid "Select Address List" -msgstr "" +msgstr "Вибрати список адрес" #: mm_seladdlis.xhp msgctxt "" @@ -28364,7 +28364,7 @@ "par_idN10549\n" "help.text" msgid "Select the address list that you want to use for mail merge, then click OK." -msgstr "" +msgstr "Виберіть список адрес, який потрібно використовувати для розсилання, і натисніть кнопку Гаразд." #: mm_seladdlis.xhp msgctxt "" @@ -28380,7 +28380,7 @@ "par_idN1055E\n" "help.text" msgid "Select the database file that contains the addresses that you want to use as an address list. If the file contains more than one table, the Select Table dialog opens." -msgstr "" +msgstr "Виберіть файл бази даних, що містить адреси, які потрібно використовувати в якості списку адрес. Якщо файл містить більше однієї таблиці, відкриється діалогове вікно Виділити таблицю." #: mm_seladdlis.xhp msgctxt "" @@ -28396,7 +28396,7 @@ "par_idN10589\n" "help.text" msgid "Opens the New Address List dialog, where you can create a new address list." -msgstr "" +msgstr "Відкриває діалогове вікно Нова адресна книга, де можна створити нову адресну книгу." #: mm_seladdlis.xhp msgctxt "" @@ -28444,7 +28444,7 @@ "par_idN105C8\n" "help.text" msgid "Opens the Select Table dialog, where you can select another table to use for mail merge." -msgstr "" +msgstr "Відкриває діалогове вікно Виділити таблицю, де можна вибрати іншу таблицю для використання при розсиланні листів." #: mm_seltab.xhp msgctxt "" @@ -28452,7 +28452,7 @@ "tit\n" "help.text" msgid "Select Table" -msgstr "" +msgstr "Виділити таблицю" #: mm_seltab.xhp msgctxt "" @@ -28460,7 +28460,7 @@ "par_idN10542\n" "help.text" msgid "Select Table" -msgstr "" +msgstr "Виділити таблицю" #: mm_seltab.xhp msgctxt "" @@ -28468,7 +28468,7 @@ "par_idN10546\n" "help.text" msgid "Select the table that you want to use for mail merge addresses." -msgstr "" +msgstr "Виберіть таблицю, яку слід використовувати для адрес розсилання листів." #: mm_seltab.xhp msgctxt "" @@ -28484,7 +28484,7 @@ "par_idN1055B\n" "help.text" msgid "Opens the Mail Merge Recipients dialog." -msgstr "" +msgstr "Відкриває діалогове вікно Одержувачі розсилання." #: selection_mode.xhp msgctxt "" @@ -28532,7 +28532,7 @@ "tit\n" "help.text" msgid "Using title pages in your document" -msgstr "" +msgstr "Використання титульних сторінок у вашому документі" #: title_page.xhp msgctxt "" @@ -28540,7 +28540,7 @@ "bm_id300920161717389897\n" "help.text" msgid "page;title page title pages;first page style title pages;modifying title pages;inserting" -msgstr "" +msgstr "сторінка;титульна сторінка титульні сторінки;стиль першої сторінки титульні сторінки;редагування титульні сторінки;вставка" #: title_page.xhp msgctxt "" @@ -28548,7 +28548,7 @@ "hd_id300920161429137211\n" "help.text" msgid "Inserting title pages in the document" -msgstr "" +msgstr "Вставка титульних сторінок у документ" #: title_page.xhp msgctxt "" @@ -28556,7 +28556,7 @@ "par_id300920161429345505\n" "help.text" msgid "Insert title pages in your document." -msgstr "" +msgstr "Вставити титульні сторінки у ваш документ." #: title_page.xhp msgctxt "" @@ -28564,7 +28564,7 @@ "par_id300920161429347135\n" "help.text" msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background." -msgstr "" +msgstr "Титульні сторінки - це сторінки на початку документу, що містять таку інформацію, як назва видання, ім'я автора і так далі. Вони мають інший макет, ніж решта сторінок з основи документа, бо можуть не мати нумерації. Іноді містять також інший верхній і нижній колонтитул, інші налаштування розмірів полів або тла." #: title_page.xhp msgctxt "" @@ -28572,7 +28572,7 @@ "par_id300920161443292710\n" "help.text" msgid "Choose menu Format - Title Page" -msgstr "" +msgstr "Виберіть меню Формат - Титульна сторінка" #: title_page.xhp msgctxt "" @@ -28580,7 +28580,7 @@ "par_id300920161443298079\n" "help.text" msgid "Many documents, such as letters and reports, have a first page that is different from the other pages in the document. For example, the first page of a letterhead typically has a different header or the first page of a report might have no header or footer, while the other pages do. This is simple to achieve with %PRODUCTNAME Writer." -msgstr "" +msgstr "Багато документів, такі як листи і звіти, мають першу сторінку, яка відрізняється від інших сторінок в документі. Наприклад, перша сторінка фірмового бланка зазвичай має інший заголовок, а перша сторінка звіту може не мати колонтитулів, тоді як інші сторінки мають. Це просто зробити за допомогою %PRODUCTNAME Writer." #: title_page.xhp msgctxt "" @@ -28588,7 +28588,7 @@ "par_id300920161443298274\n" "help.text" msgid "Page header and footer, numbering, margins and orientation are some of the properties that belongs to page styles. %PRODUCTNAME Writer let your to insert a blank title page at any point of your document, or format an existing page like a title page, by inserting a page break followed by a page style of your choice or by changing the page style at cursor position." -msgstr "" +msgstr "Верхні і нижні колонтитули, нумерація, поля і орієнтація сторінки - це деякі з властивостей, які належать до стилю сторінки. %PRODUCTNAME Writer дозволяє вставити порожню титульну сторінку в будь-якій точці вашого документа або відформатувати наявну сторінку як титульну, шляхом вставки розриву сторінки, а після нього - стилю сторінки на ваш вибір, або змінивши стиль сторінки в позиції курсора." #: title_page.xhp msgctxt "" @@ -28604,7 +28604,7 @@ "hd_id300920161443299618\n" "help.text" msgid "To convert the first page of the document into a title page" -msgstr "" +msgstr "Щоб перетворити першу сторінку документа в титульну" #: title_page.xhp msgctxt "" @@ -28612,7 +28612,7 @@ "par_id300920161443308966\n" "help.text" msgid "Place the cursor on the first page," -msgstr "" +msgstr "Розмістіть курсор на першій сторінці," #: title_page.xhp msgctxt "" @@ -28620,7 +28620,7 @@ "par_id300920161443301816\n" "help.text" msgid "From the Menu Bar, choose Format > Title Page…" -msgstr "" +msgstr "У меню виберіть Формат - Титульна сторінка..." #: title_page.xhp msgctxt "" @@ -28628,7 +28628,7 @@ "par_id300920161443304794\n" "help.text" msgid "Select Converting existing pages to title pages" -msgstr "" +msgstr "Виберіть Перетворення наявних сторінок у титульні сторінки" #: title_page.xhp msgctxt "" @@ -28660,7 +28660,7 @@ "par_id300920161443316916\n" "help.text" msgid "Click OK." -msgstr "" +msgstr "Натисніть Гаразд." #: title_page.xhp msgctxt "" @@ -28676,7 +28676,7 @@ "hd_id300920161443317859\n" "help.text" msgid "To insert a title page anywhere in the document" -msgstr "" +msgstr "Щоби вставити титульну сторінку де-небудь у документі" #: title_page.xhp msgctxt "" @@ -28684,7 +28684,7 @@ "par_id300920161443317032\n" "help.text" msgid "Place the cursor where you want to insert a new title page." -msgstr "" +msgstr "Розмістіть курсор у місці, де ви хочете вставити нову титульну сторінку." #: title_page.xhp msgctxt "" @@ -28692,7 +28692,7 @@ "par_id300920161443315460\n" "help.text" msgid "From the menu bar select Format -> Title page." -msgstr "" +msgstr "У меню виберіть Формат -> Титульна сторінка." #: title_page.xhp msgctxt "" @@ -28700,7 +28700,7 @@ "par_id300920161443318611\n" "help.text" msgid "Select Insert new title pages" -msgstr "" +msgstr "Виберіть Вставити нові титульні сторінки" #: title_page.xhp msgctxt "" @@ -28708,7 +28708,7 @@ "par_id300920161443311657\n" "help.text" msgid "Set number of title pages to add and" -msgstr "" +msgstr "Задайте число титульних сторінок, які додаються, і" #: title_page.xhp msgctxt "" @@ -28732,7 +28732,7 @@ "par_id300920161443327672\n" "help.text" msgid "Click OK" -msgstr "" +msgstr "Натисніть Гаразд" #: title_page.xhp msgctxt "" @@ -28748,7 +28748,7 @@ "hd_id300920161443323335\n" "help.text" msgid "To delete a title page:" -msgstr "" +msgstr "Щоби видалити титульну сторінку:" #: title_page.xhp msgctxt "" @@ -28756,7 +28756,7 @@ "par_id30092016144332559\n" "help.text" msgid "You cannot delete a title page. You must change its page style format from First page to whatever other page style you wish." -msgstr "" +msgstr "Ви не можете видалити титульну сторінку. Вам потрібно змінити свій формат стилю першої сторінки на будь-який інший стиль, котрий вам до вподоби." #: title_page.xhp msgctxt "" @@ -28764,7 +28764,7 @@ "par_id300920161443329339\n" "help.text" msgid "Place the cursor in the page you want to change the style" -msgstr "" +msgstr "Розмістіть курсор на сторінці, на якій ви хочете змінити стиль" #: title_page.xhp msgctxt "" @@ -28780,7 +28780,7 @@ "par_id300920161443329078\n" "help.text" msgid "From the Styles and Formatting, select button Page Styles." -msgstr "" +msgstr "У вікні Стилі і форматування виберіть кнопку Стилі сторінки." #: title_page.xhp msgctxt "" @@ -28788,7 +28788,7 @@ "par_id300920161443339937\n" "help.text" msgid "From the Style list, select the page style you want to apply." -msgstr "" +msgstr "Із списку стилів оберіть стиль сторінки, яким ви хочете скористатися." #: title_page.xhp msgctxt "" @@ -28796,7 +28796,7 @@ "par_id300920161443337801\n" "help.text" msgid "Double click on the page style to apply." -msgstr "" +msgstr "Двічі клацніть на стилю сторінки, щоби застосувати його." #: title_page.xhp msgctxt "" @@ -28804,7 +28804,7 @@ "par_id300920161443378384\n" "help.text" msgid "Format page," -msgstr "" +msgstr "Формат сторінки," #: title_page.xhp msgctxt "" @@ -28812,7 +28812,7 @@ "par_id300920161915582003\n" "help.text" msgid "Page break," -msgstr "" +msgstr "Розрив сторінки," #: title_page.xhp msgctxt "" @@ -28820,4 +28820,4 @@ "par_id300920161915587772\n" "help.text" msgid "Creating a Page Style Based on the Current Page." -msgstr "" +msgstr "Створення стилю сторінки на основі поточної сторінки." diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-26 13:33+0000\n" +"PO-Revision-Date: 2017-04-23 17:31+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490535237.000000\n" +"X-POOTLE-MTIME: 1492968690.000000\n" #: anchor_object.xhp msgctxt "" @@ -11205,7 +11205,7 @@ "par_idN1070E\n" "help.text" msgid "In the properties dialog for your printer, set the paper orientation to landscape." -msgstr "У діалоговому вікні властивостей для принтера задайте альбомну орієнтацію аркушу." +msgstr "У діалоговому вікні властивостей для принтера задайте альбомну орієнтацію аркуша." #: print_brochure.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/librelogo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2017-03-27 20:46+0000\n" +"PO-Revision-Date: 2017-04-09 20:45+0000\n" "Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490647567.000000\n" +"X-POOTLE-MTIME: 1491770735.000000\n" #: LibreLogo.xhp msgctxt "" @@ -1510,7 +1510,7 @@ "par_1870\n" "help.text" msgid "; IF condition [ true block ]
              ; IF condition [ true block ] [ false block ]

              IF a < 10 [ PRINT “Small” ]
              IF a < 10 [ PRINT “Small” ] [ PRINT “Big” ]
              " -msgstr "; IF умова [істинний блок]
              ; IF умова [істинний блок][неправдивий блок]

              IF a < 10 [ PRINT “Мале” ]
              IF a < 10 [ PRINT “Мале” ] [ PRINT “Велике” ]
              " +msgstr "; IF умова [ істинний блок ]
              ; IF умова [ істинний блок ] [ неправдивий блок ]

              IF a < 10 [ PRINT “Мале” ]
              IF a < 10 [ PRINT “Мале” ] [ PRINT “Велике” ]
              " #: 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 "TO випадкова_літера
              OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”
              END

              PRINT випадкова_літера + випадкова_літера + випадкова_літера ; друкувати трибуквену послідовність випадкових символів
              " +msgstr "TO випадкова_літера
              OUTPUT RANDOM “йцукенгшщзхїфівапролджєґячсмитьбю”
              END

              PRINT випадкова_літера + випадкова_літера + випадкова_літера ; друкувати трибуквену послідовність випадкових символів
              " #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-27 21:44+0000\n" +"PO-Revision-Date: 2017-04-23 17:32+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: translation@linux.org.ua\n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490651067.000000\n" +"X-POOTLE-MTIME: 1492968726.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -986,7 +986,7 @@ "Label\n" "value.text" msgid "To Next Sheet" -msgstr "До наступного аркушу" +msgstr "До наступного аркуша" #: CalcCommands.xcu msgctxt "" @@ -1004,7 +1004,7 @@ "Label\n" "value.text" msgid "To Previous Sheet" -msgstr "До попереднього аркушу" +msgstr "До попереднього аркуша" #: CalcCommands.xcu msgctxt "" @@ -1931,7 +1931,7 @@ "Label\n" "value.text" msgid "Sheet Area Input Field" -msgstr "Поле вводу області аркушу" +msgstr "Поле вводу області аркуша" #: CalcCommands.xcu msgctxt "" @@ -4244,7 +4244,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: CalcWindowState.xcu msgctxt "" @@ -5792,7 +5792,7 @@ "Label\n" "value.text" msgid "~Index Design..." -msgstr "Проектування ~покажчика..." +msgstr "Конструктор ~індексу..." #: DbuCommands.xcu msgctxt "" @@ -5837,7 +5837,7 @@ "Label\n" "value.text" msgid "Distinct Values" -msgstr "Однозначні значення" +msgstr "Різні значення:" #: DbuCommands.xcu msgctxt "" @@ -6494,7 +6494,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Вигляд" +msgstr "Попередній перегляд" #: DbuCommands.xcu msgctxt "" @@ -10139,7 +10139,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: DrawWindowState.xcu msgctxt "" @@ -13793,7 +13793,7 @@ "Label\n" "value.text" msgid "Fo~rm Control" -msgstr "~Елементи керування" +msgstr "~Елемент керування" #: GenericCommands.xcu msgctxt "" @@ -20536,7 +20536,7 @@ "Label\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: GenericCommands.xcu msgctxt "" @@ -21049,7 +21049,7 @@ "Label\n" "value.text" msgid "Open in Design Mode" -msgstr "Відкрити у режимі проектування" +msgstr "Відкрити в режимі розробки" #: GenericCommands.xcu msgctxt "" @@ -21175,7 +21175,7 @@ "Label\n" "value.text" msgid "Run SQL command directly" -msgstr "Виконати пряму команду SQL" +msgstr "Виконати команду SQL напряму" #: GenericCommands.xcu msgctxt "" @@ -22867,7 +22867,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: ImpressWindowState.xcu msgctxt "" @@ -27898,7 +27898,7 @@ "Label\n" "value.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: WriterCommands.xcu msgctxt "" @@ -29464,7 +29464,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: WriterFormWindowState.xcu msgctxt "" @@ -29914,7 +29914,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30364,7 +30364,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: WriterReportWindowState.xcu msgctxt "" @@ -30823,7 +30823,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: WriterWebWindowState.xcu msgctxt "" @@ -31237,7 +31237,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: WriterWindowState.xcu msgctxt "" @@ -31714,7 +31714,7 @@ "UIName\n" "value.text" msgid "More Controls" -msgstr "Додаткове керування" +msgstr "Додаткові елементи керування" #: XFormsWindowState.xcu msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-26 13:06+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490533614.000000\n" +"X-POOTLE-MTIME: 1492968786.000000\n" #: filter.src msgctxt "" @@ -738,7 +738,7 @@ "STR_UNDO_UNPROTECT_TAB\n" "string.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: globstr.src msgctxt "" @@ -2378,7 +2378,7 @@ "STR_SPELLING_BEGIN_TAB\n" "string.text" msgid "Should the spellcheck be continued at the beginning of the current sheet?" -msgstr "Продовжити перевірку орфографії з початку поточного аркушу?" +msgstr "Продовжити перевірку правопису з початку поточного аркуша?" #: globstr.src msgctxt "" @@ -2402,7 +2402,7 @@ "STR_SPELLING_STOP_OK\n" "string.text" msgid "The spellcheck of this sheet has been completed." -msgstr "Перевірку орфографії цього аркушу завершено." +msgstr "Перевірку правопису на цьому аркуші завершено." #: globstr.src msgctxt "" @@ -3017,7 +3017,7 @@ "beyond the sheet." msgstr "" "Заповнені комірки не можна\n" -"перемістити за межі аркушу." +"перемістити за межі аркуша." #: globstr.src msgctxt "" @@ -24526,7 +24526,7 @@ "SCSTR_PROTECTTAB\n" "string.text" msgid "Protect Sheet" -msgstr "Захист аркушу" +msgstr "Захистити аркуш" #: scstring.src msgctxt "" @@ -24534,7 +24534,7 @@ "SCSTR_UNPROTECTTAB\n" "string.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-26 13:07+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: none\n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490533623.000000\n" +"X-POOTLE-MTIME: 1492968803.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -5069,7 +5069,7 @@ "label\n" "string.text" msgid "_After current sheet" -msgstr "П_ісля поточного аркушу" +msgstr "П_ісля поточного аркуша" #: insertsheet.ui msgctxt "" @@ -8237,7 +8237,7 @@ "title\n" "string.text" msgid "Protect Sheet" -msgstr "Захист аркушу" +msgstr "Захистити аркуш" #: protectsheetdlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-17 20:29+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:18+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487363340.000000\n" +"X-POOTLE-MTIME: 1491988734.000000\n" #: dialog.src msgctxt "" @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Ієрархічно" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "Стильове заповнення" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "Створити стиль з виділеного" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "Оновити стиль" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-16 21:06+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:19+0000\n" +"Last-Translator: Андрій Бандура \n" "Language-Team: none\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489698393.000000\n" +"X-POOTLE-MTIME: 1491988749.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,19 +794,19 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME доступний у відповідності з умовами Mozilla Public License версії 2.0. Копію ліцензії MPL можна знайти на http://mozilla.org/MPL/2.0/.\n" +"%PRODUCTNAME доступний у відповідності з умовами ліцензії Mozilla Public License версії 2.0. Копію ліцензії MPL можна знайти на http://mozilla.org/MPL/2.0/.\n" "\n" "Додаткові повідомлення про авторські права та умови ліцензії на код третіх осіб, що застосовуються до окремих частин програмного забезпечення, викладені у файлі LICENSE.html; виберіть Показати ліцензію для перегляду подробиць англійською мовою.\n" "\n" "Усі товарні знаки, згадані тут, є власністю їхніх власників.\n" "\n" -"Copyright © 2000–2015 розробники LibreOffice. Всі права захищені.\n" +"Copyright © 2000–2017 розробники LibreOffice. Всі права захищені.\n" "\n" -"Цей продукт був створений %OOOVENDOR на основі OpenOffice.org, Copyright 2000, 2011 Oracle та/або її афілійовані особи. %OOOVENDOR вдячний усім учасникам спільноти, подробиці дивіться за адресою http://www.libreoffice.org/ ." +"Цей продукт був створений %OOOVENDOR на основі OpenOffice.org, Copyright 2000, 2011 Oracle та/або її афілійовані особи. %OOOVENDOR вдячний усім учасникам спільноти, подробиці дивіться за адресою http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-15 05:27+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:19+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450157233.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491988773.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "Форматований текст [Richtext]" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-23 16:26+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:19+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482510373.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1491988778.000000\n" #: imagemgr.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Угорська (угорські руни)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "Англійська (Малайзія)" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/source/form.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/source/form.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/source/form.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/source/form.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-19 16:53+0000\n" -"Last-Translator: Андрій Бандура \n" +"PO-Revision-Date: 2017-04-02 12:59+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487523216.000000\n" +"X-POOTLE-MTIME: 1491137963.000000\n" #: datanavi.src msgctxt "" @@ -49,7 +49,7 @@ "Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n" "Do you really want to delete this element?" msgstr "" -"Видалення елементу \"$ELEMENTNAME\" впливає на всі елементи керування, що наразі пов'язані з елементом.\n" +"Видалення елемента \"$ELEMENTNAME\" впливає на всі елементи керування, що наразі пов'язані з елементом.\n" "Видалити цей елемент?" #: datanavi.src @@ -539,7 +539,7 @@ "SID_FM_OPEN_READONLY\n" "menuitem.text" msgid "Open in Design Mode" -msgstr "Відкрити у режимі проектування" +msgstr "Відкрити в режимі розробки" #: fmexpl.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-19 16:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:19+0000\n" "Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487523246.000000\n" +"X-POOTLE-MTIME: 1491988786.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "Неможливо завантажити усі SmartArts. Збереження в Microsoft Office 2010 або новішій версії дозволяє уникнути цієї проблеми." + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" -"PO-Revision-Date: 2017-03-22 19:07+0000\n" -"Last-Translator: Михаїл Юрійович \n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-12 09:20+0000\n" +"Last-Translator: Андрій Бандура \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490209670.000000\n" +"X-POOTLE-MTIME: 1491988806.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5075,16 +5075,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Вийти" +msgid "_Restart in Normal Mode" +msgstr "_Перезапустити у звичайному режимі" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uk/wizards/source/euro.po libreoffice-l10n-5.3.3~rc2/translations/source/uk/wizards/source/euro.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uk/wizards/source/euro.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uk/wizards/source/euro.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2016-04-11 19:59+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1460404782.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492968833.000000\n" #: euro.src msgctxt "" @@ -230,7 +230,7 @@ "STEP_AUTOPILOT + 7\n" "string.text" msgid "Temporarily unprotect sheet without query" -msgstr "Тимчасово зняти захист з аркушу без запиту" +msgstr "Тимчасово зняти захист з аркуша без запиту" #: euro.src msgctxt "" @@ -278,7 +278,7 @@ "STATUSLINE + 4\n" "string.text" msgid "Sheet protection for each sheet will be restored..." -msgstr "Відновлюється захист кожного аркушу..." +msgstr "Відновлюється захист кожного аркуша..." #: euro.src msgctxt "" @@ -390,7 +390,7 @@ "MESSAGES + 12\n" "string.text" msgid "Sheet cannot be unprotected" -msgstr "Неможливо зняти захист з аркушу" +msgstr "Неможливо зняти захист з аркуша" #: euro.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476804393.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 05:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457760340.000000\n" +"X-POOTLE-MTIME: 1457760337.000000\n" #: dialog.src msgctxt "" @@ -716,6 +716,30 @@ msgid "Hierarchical" msgstr "" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,9 +11,9 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467718581.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467718579.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 23:03+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:56+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385507011.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449867382.000000\n" #: addresstemplate.src msgctxt "" @@ -350,6 +350,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-05-09 13:09+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-09 13:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462799363.000000\n" +"X-POOTLE-MTIME: 1462799333.000000\n" #: imagemgr.src msgctxt "" @@ -3903,6 +3903,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 21:00+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 05:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: uz\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449867607.000000\n" +"X-POOTLE-MTIME: 1431582295.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/uz/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/uz/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/uz/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/uz/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476804505.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 04:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "Nga u tou Gonyisa" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467719089.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467719086.000000\n" #: alienwarndialog.ui msgctxt "" @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 23:10+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 20:54+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ve\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385507410.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449867242.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 13:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -3976,6 +3976,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 20:57+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 06:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: ve\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449867440.000000\n" +"X-POOTLE-MTIME: 1431583408.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/ve/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/ve/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/ve/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/ve/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/chart2/source/controller/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/chart2/source/controller/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/chart2/source/controller/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-23 17:13+0000\n" +"PO-Revision-Date: 2017-04-06 05:25+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490289217.000000\n" +"X-POOTLE-MTIME: 1491456310.000000\n" #: Strings.src msgctxt "" @@ -326,7 +326,7 @@ "STR_OBJECT_GRID_MAJOR_X\n" "string.text" msgid "X Axis Major Grid" -msgstr "Gradeła prensipałe de l'àse X" +msgstr "Gradeła prinsipałe de l'àse X" #: Strings.src msgctxt "" @@ -334,7 +334,7 @@ "STR_OBJECT_GRID_MAJOR_Y\n" "string.text" msgid "Y Axis Major Grid" -msgstr "Gradeła prensipałe de l'àse Y" +msgstr "Gradeła prinsipałe de l'àse Y" #: Strings.src msgctxt "" @@ -342,7 +342,7 @@ "STR_OBJECT_GRID_MAJOR_Z\n" "string.text" msgid "Z Axis Major Grid" -msgstr "Gradeła prensipałe de l'àse Z" +msgstr "Gradeła prinsipałe de l'àse Z" #: Strings.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/chart2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/chart2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/chart2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/chart2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-29 04:49+0000\n" +"PO-Revision-Date: 2017-04-06 05:25+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490762964.000000\n" +"X-POOTLE-MTIME: 1491456324.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -2165,7 +2165,7 @@ "label\n" "string.text" msgid "Major:" -msgstr "Prensipałe:" +msgstr "Prinsipałe:" #: tp_AxisPositions.ui msgctxt "" @@ -2264,7 +2264,7 @@ "label\n" "string.text" msgid "Show major _grid" -msgstr "Mostra _gradeła prensipałe" +msgstr "Mostra _gradeła prinsipałe" #: tp_AxisPositions.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/cui/source/options.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/cui/source/options.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/cui/source/options.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 06:34+0000\n" +"PO-Revision-Date: 2017-03-30 05:38+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485326047.000000\n" +"X-POOTLE-MTIME: 1490852339.000000\n" #: connpooloptions.src msgctxt "" @@ -696,7 +696,6 @@ msgstr "Nadura" #: personalization.src -#, fuzzy msgctxt "" "personalization.src\n" "RID_SVXSTR_PERSONA_CATEGORIES\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-29 15:53+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-06 05:28+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490802817.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1491456528.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -184,8 +184,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 Contribudori de LibreOffice." +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" @@ -11971,7 +11971,7 @@ "label\n" "string.text" msgid "Protected _by a master password (recommended)" -msgstr "_Proteto da na password prensipałe (racomandà)" +msgstr "_Proteto da na password prinsipałe (racomandà)" #: optsecuritypage.ui msgctxt "" @@ -11993,9 +11993,9 @@ "\n" "Do you want to delete password list and reset master password?" msgstr "" -"Dezativando ła funsion de salvatajo parmanente de łe password venjarà ełiminà ła łista de łe password e ła password prensipałe.\n" +"Dezativando ła funsion de salvatajo parmanente de łe password A venjarà ełiminà ła łista de łe password e ła password prinsipałe.\n" "\n" -"Vuto ełiminar ła łista de łe password e reinpostar ła password prensipałe?" +"Vuto ełiminar ła łista de łe password e reinpostar ła password prinsipałe?" #: optsecuritypage.ui msgctxt "" @@ -12013,7 +12013,7 @@ "label\n" "string.text" msgid "_Master Password..." -msgstr "Password prensipałe..." +msgstr "Password prinsipałe..." #: optsecuritypage.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/dbaccess/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/dbaccess/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/dbaccess/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/dbaccess/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-03-22 17:41+0000\n" +"PO-Revision-Date: 2017-04-06 05:21+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490204464.000000\n" +"X-POOTLE-MTIME: 1491456079.000000\n" #: admindialog.ui msgctxt "" @@ -729,7 +729,7 @@ "text\n" "string.text" msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged." -msgstr "Te si drio tentar de ełiminar tute łe cołone de ła tabeła. Na tabeła no pol mìa ezistare sensa cołone. Vuto ełiminar ła tabeła intiera da'l database? In cazo contrario ła tabeła restarà cusì come che ła ze." +msgstr "Te si drio tentar de ełiminar tute łe cołone de ła tabeła. Na tabeła no pol mìa ezistare sensa cołone. Vuto ełiminar ła tabeła intiera da'l database? In cazo contrario ła tabeła ła restarà cusì come che ła ze." #: designsavemodifieddialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-23 17:33+0000\n" +"PO-Revision-Date: 2017-04-06 05:36+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490290387.000000\n" +"X-POOTLE-MTIME: 1491456988.000000\n" #: ActionTe.ulf msgctxt "" @@ -78,7 +78,7 @@ "OOO_ACTIONTEXT_8\n" "LngText.text" msgid "Creating IIS Virtual Roots..." -msgstr "Creando cartełe prensipałe virtuałe de IIS..." +msgstr "Creando cartełe prinsipałi virtuałi de IIS..." #: ActionTe.ulf msgctxt "" @@ -86,7 +86,7 @@ "OOO_ACTIONTEXT_9\n" "LngText.text" msgid "Removing IIS Virtual Roots..." -msgstr "Cavando via łe cartełe prensipałe virtuałe de IIS..." +msgstr "Ełiminando łe cartełe prinsipałi virtuałi de IIS..." #: ActionTe.ulf msgctxt "" @@ -3854,7 +3854,7 @@ "OOO_ERROR_129\n" "LngText.text" msgid "This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher." -msgstr "L'instałasion ła dimanda el Internet Information Server 4.0 o varsion pì nove par ła configurasion de łe cartełe prensipałi virtuałi de IIS. Segùrate che A ghe sipia desponìbiłe IIS 4.0 o varsion sucesive." +msgstr "L'instałasion ła dimanda el Internet Information Server 4.0 o varsion pì nove par ła configurasion de łe cartełe prinsipałi virtuałi de IIS. Segùrate che A ghe sipia desponìbiłe IIS 4.0 o varsion sucesive." #: Error.ulf msgctxt "" @@ -3862,7 +3862,7 @@ "OOO_ERROR_130\n" "LngText.text" msgid "This setup requires Administrator privileges for configuring IIS Virtual Roots." -msgstr "L'instałasion ła dimanda i priviłeji de aministrador par ła configurasion de łe cartełe prensipałi virtuałi de IIS." +msgstr "L'instałasion ła dimanda i priviłeji de aministrador par ła configurasion de łe cartełe prinsipałi virtuałi de IIS." #: LaunchCo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-29 16:28+0000\n" +"PO-Revision-Date: 2017-03-31 05:49+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490804884.000000\n" +"X-POOTLE-MTIME: 1490939346.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -26683,7 +26683,7 @@ "Label\n" "value.text" msgid "Wrap Off" -msgstr "Cava adatasion" +msgstr "Dezativa adatasion" #: WriterCommands.xcu msgctxt "" @@ -26713,7 +26713,6 @@ msgstr "Anteprima inte na pàjina" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:WrapThrough\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-03-16 05:45+0000\n" +"PO-Revision-Date: 2017-04-05 05:41+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489643121.000000\n" +"X-POOTLE-MTIME: 1491370879.000000\n" #: readme.xrm msgctxt "" @@ -78,7 +78,7 @@ "A13\n" "readmeitem.text" msgid "You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office." -msgstr "Te połi doparar 'sta copia de ${PRODUCTNAME} sensa pagar njente daché contribudori individuałi e aziende patrosinanti i ga projetà, dezviłupà, provà, tradoto, documentà, suportà, publisizà e jutà in racuante altre manjere par rèndar ${PRODUCTNAME} cuel che l'e uncò: el programa de produtività open source primo inte'l mondo, par ła caza e l'ufisio." +msgstr "Te połi doparar 'sta copia de ${PRODUCTNAME} sensa pagar njente daché contribudori individuałi e aziende patrosinanti i ga projetà, dezviłupà, provà, traduzesto, documentà, suportà, publisizà e jutà in racuante altre manjere par rèndar ${PRODUCTNAME} cuel che l'e uncò: el programa de produtività open source primo inte'l mondo, par ła caza e l'ufisio." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-28 05:18+0000\n" +"PO-Revision-Date: 2017-04-27 05:30+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490678297.000000\n" +"X-POOTLE-MTIME: 1493271043.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -10307,7 +10307,7 @@ "label\n" "string.text" msgid "Minim_um" -msgstr "Tramite _modìfega de łe cełe" +msgstr "Mìn_emo" #: solverdlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-16 06:29+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489645788.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "Jeràrchego" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/source/view.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/source/view.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/source/view.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/source/view.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-16 06:38+0000\n" +"PO-Revision-Date: 2017-04-27 15:34+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489646316.000000\n" +"X-POOTLE-MTIME: 1493307264.000000\n" #: view.src msgctxt "" @@ -160,7 +160,7 @@ "STR_REPAIREDDOCUMENT\n" "string.text" msgid " (repaired document)" -msgstr " (documento riparà)" +msgstr " (documento justà)" #: view.src msgctxt "" @@ -240,7 +240,7 @@ "STR_CHECKOUT\n" "string.text" msgid "Check Out" -msgstr "" +msgstr "Check Out" #: view.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-28 05:37+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490679431.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME el ze stà meso a despozision drio i tèrmini de ła Mozilla Public License, v. 2.0. Se połe catar na copia de'l MPL inte'l sito http://mozilla.org/MPL/2.0/.\n" -"\n" -"Avizi so'l copyright e tèrmini de licensa so'l còdeze in pì de terse parti che se refarise a tochi de'l programa se połe catarli so'l file LICENSE.html; faghe click so \"Mostra Licensa\" par vardar i detaji in ingleze.\n" -"\n" -"Tuti i marchi, rejistrài o manco, tratài chive i ze de propietà de i so paroni.\n" -"\n" -"Copyright © 2000, 2015 Contribudori de LibreOffice. Tuti i deriti i ze reservài.\n" -"\n" -"'Sto prodoto el ze stà creà da %OOOVENDOR, bazà so OpenOffice.org, che ga Copyright 2000, 2011 Oracle e/o i so asociài. %OOOVENDOR rengrasia tuti i menbri de ła comunidà, varda http://www.libreoffice.org/ par pì detaji." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-21 06:27+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487658429.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-28 05:37+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490679444.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "Ongareze antigo (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-23 05:53+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490248399.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-29 15:56+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1490802980.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "_Va fora" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "Àpleg_a łe modìfeghe e reavìa" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/sw/source/uibase/utlui.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/sw/source/uibase/utlui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/sw/source/uibase/utlui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/sw/source/uibase/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-28 05:37+0000\n" +"PO-Revision-Date: 2017-03-31 05:46+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490679456.000000\n" +"X-POOTLE-MTIME: 1490939193.000000\n" #: attrdesc.src msgctxt "" @@ -150,7 +150,7 @@ "STR_SURROUND_NONE\n" "string.text" msgid "No wrap" -msgstr "Cava adatasion" +msgstr "Sensa adatasion" #: attrdesc.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/swext/mediawiki/help.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/swext/mediawiki/help.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/swext/mediawiki/help.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/swext/mediawiki/help.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-29 16:56+0000\n" +"PO-Revision-Date: 2017-03-30 17:54+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490806617.000000\n" +"X-POOTLE-MTIME: 1490896497.000000\n" #: help.tree msgctxt "" @@ -110,7 +110,7 @@ "par_id4277169\n" "help.text" msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME." -msgstr "Prima de doparar Wiki Publisher, controła che %PRODUCTNAME el dòpara un anbiente de runtime Java (“Java Runtime Environment“ o “JRE“). Par verifegar el stato de'l JRE sernisi Strumenti - Opsion - %PRODUCTNAME - Progredìe. Controła che ła cazeła “Dòpara un anbiente runtime Java“ ła sia sełesionà e che inte ła fenestra de riepìłogo A ghe sia almanco na carteła runtime Java sełesionà. Se no ze ativà njanca un JRE, instała ła version 1.4 o na version pì resente e reavìa %PRODUCTNAME." +msgstr "Prima de doparar Wiki Publisher, controła che %PRODUCTNAME el dòpara un anbiente de runtime Java (“Java Runtime Environment” o “JRE”). Par verifegar el stato de'l JRE sernisi Strumenti - Opsion - %PRODUCTNAME - Progredìe. Controła che ła cazeła “Dòpara un anbiente runtime Java” ła sia sełesionà e che inte ła fenestra de riepìłogo A ghe sia almanco na carteła runtime Java sełesionà. Se no ze ativà njanca un JRE, instała ła version 1.4 o na version pì resente e reavìa %PRODUCTNAME." #: wiki.xhp msgctxt "" @@ -510,7 +510,7 @@ "par_id6397595\n" "help.text" msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style." -msgstr "" +msgstr "I stiłi de caràtare i modìfega l'aspeto de łe parti de un paràgrafo. Ła trasformasion ła suporta groseto, corsivo, groseto e corsivo, àpeze e pèdeze. Tuti i caràtari co łarghesa fisa i vien trasformài inte'l stiłe de scritura wiki." #: wikiformats.xhp msgctxt "" @@ -526,7 +526,7 @@ "par_id5238196\n" "help.text" msgid "Note: The transformation uses the new style of footnotes with and tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension." -msgstr "" +msgstr "Nota: Ła trasformasion ła dòpara el stiłe novo de łe note a pìe de pàjina co i tag e che i domanda l'instałasion de l'estension Cite.php rento MediaWiki. Se 'sti tag i vien fora cofà testo normałe dopo ła trasformasion, domàndaghe de instałar 'sta estension a l'aministrador de'l wiki." #: wikiformats.xhp msgctxt "" @@ -542,7 +542,7 @@ "par_id3541673\n" "help.text" msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." -msgstr "" +msgstr "Łe imàjini no łe pol èsar esportàe co na trasformasion che ła produza un sìngoło file de testo wiki. Paraltro, se l'imàjine ła ze za cargà inte'l dominio wiki de destinasion (par es. WikiMedia Commons), ałora ła trasformasion ła produze un tag imàjine vàłido che l'include l'imàjine. Ze suportà anca łe didascałìe imàjine." #: wikiformats.xhp msgctxt "" @@ -558,7 +558,7 @@ "par_id3037202\n" "help.text" msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." -msgstr "" +msgstr "Łe tabełe sènplisi łe ze ben suportàe. Łe intestasion de łe tabełe łe ze traduzeste inte łe intestasion in stiłe wiki corespondenti. Paraltro, vien injorà ła formatasion parsonałizà de i bordi, łe dimension de łe cołone e i cołori de'l sfondo." #: wikiformats.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id1831110\n" "help.text" msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." -msgstr "" +msgstr "Indipendentemente da i stiłi tabeła parsonałizài de'l bordo e de'l sfondo, ła tabeła ła ze senpre esportà cofà “prettytable” e ła vien intarpretà da'l motor wiki co bordi sénplisi e intestasion in groseto." #: wikiformats.xhp msgctxt "" @@ -606,7 +606,7 @@ "hd_id6255073\n" "help.text" msgid "Character set and special characters" -msgstr "" +msgstr "Set de caràtari e caràtari spesiałi" #: wikiformats.xhp msgctxt "" @@ -614,7 +614,7 @@ "par_id8216193\n" "help.text" msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice." -msgstr "" +msgstr "El grupo de caràtari de ła trasformasion stabiłìo el ze UTF-8. Drio el to sistema parò, el podarìa no èsar mìa el to grupo de caràtari predefinìo. 'Sto fato, se te dòpari łe inpostasion predefinìe, el podarìa farte védar małe i “caràtari spesiałi”. Parò te połi canbiar ła codìfega de'l to editor e métarla so UTF-8 par sistemar el problema. Se invese el to editor no'l suporta el canbio de codìfega, te połi vizuałizar el rezultado de ła trasformasion inte'l navigador Firefox e canbiar łà l'inpostasion de codìfega in UTF-8. A 'sto punto te połi tajar e incołar el rezultado de ła trasformasion inte'l programa che te ghe sielto." #: wikisend.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 "" +msgstr "Inte ła fenestra de diałogo Invia a MediaWiki, spesìfega łe inpostasion par el cargamento de'l to wiki." #: wikisend.xhp msgctxt "" @@ -654,7 +654,7 @@ "par_id2794885\n" "help.text" msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." -msgstr "" +msgstr "Meti rento el tìtoło de ła to voze wiki. Cuesta ła ze l'intestasion supariore de ła voze wiki. Par onji nova voze de'l wiki, el tìtoło el ga da èsar ùnego. Se te meti rento un tìtoło ezistente, el cargamento el sorascrivarà ła voze wiki corispondente." #: wikisend.xhp msgctxt "" @@ -678,7 +678,7 @@ "par_id6592913\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "" +msgstr "Mostra inte'l navigador web: sełesiona 'sta cazeła par vèrzar el to navigador web predefenìo e mostrar ła pàjina wiki cargà." #: wikisettings.xhp msgctxt "" @@ -702,7 +702,7 @@ "par_id1188390\n" "help.text" msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to Tools - Options - Internet - MediaWiki." -msgstr "" +msgstr "A te pol zontar, modifegar e cavar via i server MediaWiki. Verzi ła fenestra de diàłogo de łe opsion ndando so Strumenti - Opsion - Internet - MediaWiki." #: 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 "" +msgstr "Faghe click so Zonta par zontar un server Wiki novo
              Par modifegar łe inpostasion de l'account sełesiona na voze e faghe click so Modìfega
              Par cavar via na voze da ła łista, sełesióneła e faghe click so Cava via.
              " #: wikisettings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vec/wizards/source/formwizard.po libreoffice-l10n-5.3.3~rc2/translations/source/vec/wizards/source/formwizard.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vec/wizards/source/formwizard.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vec/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2017-03-29 16:35+0000\n" +"PO-Revision-Date: 2017-04-27 15:36+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490805341.000000\n" +"X-POOTLE-MTIME: 1493307416.000000\n" #: dbwizres.src msgctxt "" @@ -70,7 +70,7 @@ "RID_COMMON_START + 6\n" "string.text" msgid "The files required could not be found.
              Please start the %PRODUCTNAME Setup and choose 'Repair'." -msgstr "No ze mìa posìbiłe trovar i file che te ghe domandà.
              Fa partir el programa de instałasion de %PRODUCTNAME e sełesiona 'Reparasion'." +msgstr "No ze mìa posìbiłe trovar i file che te ghe domandà.
              Fa partir el programa de instałasion de %PRODUCTNAME e sełesiona 'Justa'." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-10-18 15:35+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-10-18 15:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: vi\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476804943.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1476804828.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-07 00:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5722,7 +5722,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5730,7 +5730,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-07-07 00:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2455,7 +2455,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 10:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457776883.000000\n" +"X-POOTLE-MTIME: 1457776881.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "Phân cấp" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 11:59+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467719976.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467719967.000000\n" #: alienwarndialog.ui msgctxt "" @@ -801,7 +801,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibreOfice 3.1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 23:15+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 21:21+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385507739.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449868915.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LibreOffice 3.4\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 14:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Vietnamese \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462804697.000000\n" +"X-POOTLE-MTIME: 1462804695.000000\n" #: imagemgr.src msgctxt "" @@ -3894,6 +3894,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 21:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 06:30+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: vi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449868981.000000\n" +"X-POOTLE-MTIME: 1431585040.000000\n" #: stbctrls.src msgctxt "" @@ -150,6 +150,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/vi/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/vi/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/vi/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/vi/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 12:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5082,16 +5082,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -11,8 +11,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476804912.000000\n" #: aboutconfigdialog.ui @@ -184,7 +184,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-02 04:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -715,6 +715,30 @@ msgid "Hierarchical" msgstr "Ngokwemigangatho Yamagunya" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ 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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 12:13+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-07-05 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467720781.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1467720778.000000\n" #: alienwarndialog.ui msgctxt "" @@ -794,7 +794,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 23:33+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 21:15+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385508786.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449868505.000000\n" #: addresstemplate.src msgctxt "" @@ -337,6 +337,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 14:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462804723.000000\n" +"X-POOTLE-MTIME: 1462804722.000000\n" #: imagemgr.src msgctxt "" @@ -3954,6 +3954,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 21:18+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 06:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: xh\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449868729.000000\n" +"X-POOTLE-MTIME: 1431586349.000000\n" #: stbctrls.src msgctxt "" @@ -151,6 +151,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/xh/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/xh/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/xh/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/xh/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 12:19+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5057,16 +5057,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/cui/source/options.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/cui/source/options.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/cui/source/options.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-20 04:40+0000\n" +"PO-Revision-Date: 2017-04-21 04:07+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484887210.000000\n" +"X-POOTLE-MTIME: 1492747679.000000\n" #: connpooloptions.src msgctxt "" @@ -296,7 +296,7 @@ "RID_SVXSTR_OPTIONS_RESTART\n" "string.text" msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect." -msgstr "请重新启动%PRODUCTNAME以便新的或更改的值生效。" +msgstr "请重新启动 %PRODUCTNAME 以便新的或更改的值生效。" #: optjava.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 07:37+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484811454.000000\n" #: aboutconfigdialog.ui @@ -186,8 +186,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "Copyright © 2000 - 2016 LibreOffice 的贡献者。" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 11:41+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2017-04-21 04:08+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467718906.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747713.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -423,7 +423,7 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展'$NAME'的$NEW版本。\n" +"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" "这个扩展的新版本 $DEPLOYED 已经安装。\n" "点击“确定”以替换已安装的扩展。\n" "点击“取消”结束安装。" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libreoffice help\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-03-16 15:46+0000\n" "Last-Translator: Reri \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1489679168.000000\n" #: 01120000.xhp @@ -5692,7 +5692,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5700,7 +5700,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2017-02-23 04:19+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487823597.000000\n" #: 01000000.xhp @@ -2457,7 +2457,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/readlicense_oo/docs.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/readlicense_oo/docs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/readlicense_oo/docs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-28 04:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-21 04:09+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1459139123.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747742.000000\n" #: readme.xrm msgctxt "" @@ -46,7 +46,7 @@ "A7\n" "readmeitem.text" msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to http://www.libreoffice.org/." -msgstr "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为LibreOffice全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目以及相关信息。访问 http://zh-cn.libreoffice.org。" +msgstr "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为 LibreOffice 全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目以及相关信息。访问 http://zh-cn.libreoffice.org。" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sc/source/ui/src.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sc/source/ui/src.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sc/source/ui/src.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-29 11:56+0000\n" +"PO-Revision-Date: 2017-04-21 04:10+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483012597.000000\n" +"X-POOTLE-MTIME: 1492747808.000000\n" #: filter.src msgctxt "" @@ -1247,7 +1247,7 @@ "STR_FILTER_SELCOUNT\n" "string.text" msgid "$1 of $2 records found" -msgstr "在$1条记录中找到了$2条" +msgstr "在 $1 条记录中找到了 $2 条" #: globstr.src msgctxt "" @@ -4695,7 +4695,7 @@ "STR_TABLE_COUNT\n" "string.text" msgid "Sheet %1 of %2" -msgstr "工作表 %1,共%2张" +msgstr "工作表 %1,共 %2 张" #: globstr.src msgctxt "" @@ -4704,7 +4704,7 @@ "STR_FUNCTIONS_FOUND\n" "string.text" msgid "%1 and %2 more" -msgstr "%1个,还有%2个" +msgstr "%1 个,还有 %2 个" #: globstr.src msgctxt "" @@ -19830,7 +19830,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "置信度(默认为0.95);0到1(不包括1)之间的值,表示1到100%的预测区间。" +msgstr "置信度(默认为 0.95);0 到 1(不包括 1)之间的值,表示 1 到 100% 的预测区间。" #: scfuncs.src msgctxt "" @@ -19965,7 +19965,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "置信度(默认为0.95);0到1(不包括1)之间的值,表示1到100%的预测区间。" +msgstr "置信度(默认为 0.95);0 到 1(不包括 1)之间的值,表示 1 到 100% 的预测区间。" #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/scp2/source/activex.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/scp2/source/activex.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/scp2/source/activex.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/scp2/source/activex.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-28 04:27+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2017-04-21 04:10+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1459139247.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747813.000000\n" #: module_activex.ulf msgctxt "" @@ -30,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "已弃用,用于在Microsoft Internet Explorer中显示%PRODUCTNAME文档。" +msgstr "已弃用,用于在 Microsoft Internet Explorer 中显示 %PRODUCTNAME 文档。" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/scp2/source/ooo.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/scp2/source/ooo.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/scp2/source/ooo.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-27 23:34+0000\n" +"PO-Revision-Date: 2017-04-21 04:10+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482881643.000000\n" +"X-POOTLE-MTIME: 1492747841.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -2254,7 +2254,7 @@ "STR_NAME_MODULE_LANGPACK_PA_IN\n" "LngText.text" msgid "Punjabi" -msgstr "印度方言 [Punjabi]" +msgstr "旁遮普语 [Punjabi]" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-28 03:04+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482894289.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "等级式" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-19 07:42+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1484811747.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME 采用Mozilla Public License v. 2.0发布,MPL的许可协议可以在这里找到http://mozilla.org/MPL/2.0/。\n" -"\n" -"我们使用的第三方代码附加版权申明和许可协议可以在LICENSE.html 文件中找到;选择“显示许可证”可以查看详细的英文表述。\n" -"\n" -"此处提及的所有商标和注册商标均为各自商标所有人的财产。\n" -"\n" -"版权所有 © 2000, 2016 LibreOffice 的贡献者。保留所有权利。\n" -"\n" -"本软件由 %OOOVENDOR 在OpenOffice.org基础上开发。OpenOffice.org版权所有:2000, 2011 Oracle 及其关联方。%OOOVENDOR 谨向所有的社区成员致谢,详情请见http://www.libreoffice.org/。" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-17 01:39+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2016-05-02 04:59+0000\n" "Last-Translator: 琨珑 锁 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1450316375.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1462165141.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svtools/source/misc.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-27 23:54+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2017-04-21 04:11+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482882872.000000\n" +"X-POOTLE-MTIME: 1492747867.000000\n" #: imagemgr.src msgctxt "" @@ -2814,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guarani (Paraguay)" -msgstr "Guarani (Paraguay) [巴拉圭瓜拉尼语]" +msgstr "Guarani (Paraguay) [瓜拉尼语,巴拉圭]" #: langtab.src msgctxt "" @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "匈牙利语 (Szekely-Hungarian Rovas)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-28 03:51+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482897088.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-CN/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-CN/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-02-23 04:00+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1487822410.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "退出(_Q)" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "应用更改并重新启动(_A)" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 11:51+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483357912.000000\n" #: aboutconfigdialog.ui @@ -186,8 +186,8 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." -msgstr "著作權所有 © 2000 - 2016 LibreOffice 貢獻者。" +msgid "Copyright © 2000–2017 LibreOffice contributors." +msgstr "" #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-10 23:39+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-09 05:13+0000\n" "Last-Translator: wck317 \n" "Language-Team: LANGUAGE \n" @@ -5718,7 +5718,7 @@ "04060102.xhp\n" "par_id231020162315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060102.xhp @@ -5726,7 +5726,7 @@ "04060102.xhp\n" "par_id231020163315043955\n" "help.text" -msgid "" +msgid "" msgstr "" #: 04060103.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-27 21:50+0100\n" +"POT-Creation-Date: 2017-04-11 22:27+0200\n" "PO-Revision-Date: 2016-12-09 05:47+0000\n" "Last-Translator: wck317 \n" "Language-Team: LANGUAGE \n" @@ -2456,7 +2456,7 @@ "01010500.xhp\n" "hd_id3154754\n" "help.text" -msgid "Pick" +msgid "Pick" msgstr "" #: 01010501.xhp diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 05:41+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483335693.000000\n" #: dialog.src @@ -723,6 +723,30 @@ msgid "Hierarchical" msgstr "階層式" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src msgctxt "" "versdlg.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 05:45+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: none\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483335911.000000\n" #: alienwarndialog.ui @@ -794,19 +794,10 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME 根據 Mozilla Public License v. 2.0 授權條款發布給大眾使用。MPL 條文副本可由 http://mozilla.org/MPL/2.0/ 取得。\n" -"\n" -"本軟體中適用「第三方額外代碼」著作權聲明與條款細則之部份,其條款列於 LICENSE.html 檔案中;請點選 [顯示授權條款] 查看以英文書寫的切確內容。\n" -"\n" -"所有於此提及的商標與註冊商標,皆為其各自對應擁有者之財產。\n" -"\n" -"著作權所有 © 2000–2016 LibreOffice 貢獻者。保留所有權利。\n" -"\n" -"本產品由 %OOOVENDOR 基於 OpenOffice.org 所建立。OpenOffice.org 著作權所有 2000, 2011 Oracle 與/或其附屬機構。%OOOVENDOR 謹向所有社群成員致謝,若要瞭解更多細節請見 http://www.libreoffice.org/ 。" #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-12-25 13:28+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1482672511.000000\n" #: addresstemplate.src @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 06:45+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483339502.000000\n" #: imagemgr.src @@ -3887,6 +3887,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "匈牙利文 (賽楷伊字母)" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src msgctxt "" "svtools.src\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-02 08:58+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" +"PO-Revision-Date: 2017-04-08 22:09+0000\n" +"Last-Translator: pesder \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483347506.000000\n" +"X-POOTLE-MTIME: 1491689358.000000\n" #: SafeMode.src msgctxt "" @@ -1805,7 +1805,7 @@ "RID_SVXSTR_COLOR_PINK\n" "string.text" msgid "Pink" -msgstr "粉紅寺" +msgstr "粉紅色" #: sdstring.src msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 07:07+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483340849.000000\n" #: stbctrls.src @@ -151,6 +151,14 @@ #: stbctrls.src msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src +msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zh-TW/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zh-TW/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2017-01-02 09:06+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1483347981.000000\n" #: acceptrejectchangesdialog.ui @@ -5075,20 +5075,20 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" -msgstr "退出(_Q)" +msgid "_Restart in Normal Mode" +msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "套用變更並重新啟動(_A)" +msgstr "" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/cui/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/cui/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/cui/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/cui/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-10-18 15:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1476805019.000000\n" #: aboutconfigdialog.ui @@ -185,7 +185,7 @@ "copyright\n" "label\n" "string.text" -msgid "Copyright © 2000–2016 LibreOffice contributors." +msgid "Copyright © 2000–2017 LibreOffice contributors." msgstr "" #: aboutdialog.ui diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/sfx2/source/dialog.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/sfx2/source/dialog.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/sfx2/source/dialog.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-03-12 09:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457776087.000000\n" +"X-POOTLE-MTIME: 1457776083.000000\n" #: dialog.src msgctxt "" @@ -722,6 +722,30 @@ msgid "Hierarchical" msgstr "Okunamaqophelo alandelana ngokwenyuka" +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_FILL_FORMAT_MODE\n" +"string.text" +msgid "Fill Format Mode" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_NEW_STYLE_FROM_SELECTION\n" +"string.text" +msgid "New Style from Selection" +msgstr "" + +#: templdlg.src +msgctxt "" +"templdlg.src\n" +"STR_STYLE_UPDATE_STYLE\n" +"string.text" +msgid "Update Style" +msgstr "" + #: versdlg.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/sfx2/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/sfx2/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ 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: 2016-12-01 12:11+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 12:25+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: none\n" @@ -12,8 +12,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1467721523.000000\n" #: alienwarndialog.ui @@ -795,7 +795,7 @@ "\n" "All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n" "\n" -"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n" +"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n" "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/svtools/source/dialogs.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/svtools/source/dialogs.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/svtools/source/dialogs.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2013-11-26 23:53+0000\n" -"Last-Translator: system user <>\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-12-11 21:22+0000\n" +"Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: zu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385510039.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1449868934.000000\n" #: addresstemplate.src msgctxt "" @@ -338,6 +338,14 @@ #: formats.src msgctxt "" +"formats.src\n" +"STR_FORMAT_ID_RICHTEXT\n" +"string.text" +msgid "Formatted text [Richtext]" +msgstr "" + +#: formats.src +msgctxt "" "formats.src\n" "STR_FORMAT_ID_DRAWING\n" "string.text" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/svtools/source/misc.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/svtools/source/misc.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/svtools/source/misc.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-05-09 14:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462804795.000000\n" +"X-POOTLE-MTIME: 1462804794.000000\n" #: imagemgr.src msgctxt "" @@ -3897,6 +3897,15 @@ msgid "Hungarian (Szekely-Hungarian Rovas)" msgstr "" +#: langtab.src +msgctxt "" +"langtab.src\n" +"STR_ARR_SVT_LANGUAGE_TABLE\n" +"LANGUAGE_ENGLISH_MALAYSIA\n" +"pairedlist.text" +msgid "English (Malaysia)" +msgstr "" + #: svtools.src #, fuzzy msgctxt "" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/svx/source/stbctrls.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/svx/source/stbctrls.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/svx/source/stbctrls.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-12-11 21:23+0000\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" +"PO-Revision-Date: 2015-05-14 08:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" "Language: zu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1449868994.000000\n" +"X-POOTLE-MTIME: 1431591415.000000\n" #: stbctrls.src msgctxt "" @@ -152,6 +152,14 @@ msgstr "" #: stbctrls.src +msgctxt "" +"stbctrls.src\n" +"RID_SVXSTR_WARN_MISSING_SMARTART\n" +"string.text" +msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." +msgstr "" + +#: stbctrls.src msgctxt "" "stbctrls.src\n" "RID_SVXSTR_ZOOMTOOL_HINT\n" diff -Nru libreoffice-l10n-5.3.2~rc2/translations/source/zu/svx/uiconfig/ui.po libreoffice-l10n-5.3.3~rc2/translations/source/zu/svx/uiconfig/ui.po --- libreoffice-l10n-5.3.2~rc2/translations/source/zu/svx/uiconfig/ui.po 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/translations/source/zu/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-12-21 15:38+0100\n" +"POT-Creation-Date: 2017-04-11 22:26+0200\n" "PO-Revision-Date: 2016-07-05 12:28+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -5058,16 +5058,16 @@ #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_quit\n" +"btn_restart\n" "label\n" "string.text" -msgid "_Quit" +msgid "_Restart in Normal Mode" msgstr "" #: safemodedialog.ui msgctxt "" "safemodedialog.ui\n" -"btn_restart\n" +"btn_apply\n" "label\n" "string.text" msgid "_Apply Changes and Restart" diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/inc/CommonSalLayout.hxx libreoffice-l10n-5.3.3~rc2/vcl/inc/CommonSalLayout.hxx --- libreoffice-l10n-5.3.2~rc2/vcl/inc/CommonSalLayout.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/inc/CommonSalLayout.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -60,7 +60,7 @@ void getScale(double* nXScale, double* nYScale); hb_set_t* mpVertGlyphs; - bool IsVerticalAlternate(hb_codepoint_t nGlyphIndex); + bool HasVerticalAlternate(sal_UCS4 aChar, sal_UCS4 aNextChar); public: #if defined(_WIN32) diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/inc/opengl/zone.hxx libreoffice-l10n-5.3.3~rc2/vcl/inc/opengl/zone.hxx --- libreoffice-l10n-5.3.2~rc2/vcl/inc/opengl/zone.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/inc/opengl/zone.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -48,6 +48,12 @@ OpenGLVCLContextZone(); }; +class VCL_DLLPUBLIC PreDefaultWinNoOpenGLZone { +public: + PreDefaultWinNoOpenGLZone(); + ~PreDefaultWinNoOpenGLZone(); +}; + #endif // INCLUDED_VCL_INC_OPENGL_ZONE_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/inc/win/saldata.hxx libreoffice-l10n-5.3.3~rc2/vcl/inc/win/saldata.hxx --- libreoffice-l10n-5.3.2~rc2/vcl/inc/win/saldata.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/inc/win/saldata.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -39,6 +39,7 @@ namespace vcl { class Font; } struct HDCCache; struct TempFontItem; +class TextOutRenderer; #define MAX_STOCKPEN 4 #define MAX_STOCKBRUSH 4 @@ -118,6 +119,11 @@ std::set< HMENU > mhMenuSet; // keeps track of menu handles created by VCL, used by IsKnownMenuHandle() std::map< UINT,sal_uInt16 > maVKMap; // map some dynamic VK_* entries + + // must be deleted before exit(), so delete it in DeInitSalData() + std::unique_ptr m_pD2DWriteTextOutRenderer; + // tdf#107205 need 2 instances because D2DWrite can't rotate text + std::unique_ptr m_pExTextOutRenderer; }; inline void SetSalData( SalData* pData ) { ImplGetSVData()->mpSalData = pData; } diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/gdi/CommonSalLayout.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/gdi/CommonSalLayout.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/gdi/CommonSalLayout.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/gdi/CommonSalLayout.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -330,8 +330,12 @@ #include "VerticalOrientationData.cxx" - VerticalOrientation GetVerticalOrientation(sal_UCS4 cCh) + VerticalOrientation GetVerticalOrientation(sal_UCS4 cCh, const LanguageTag& rTag) { + // Override fullwidth colon and semi-colon orientation. Tu is preferred. + if ((cCh == 0xff1a || cCh == 0xff1b) && rTag.getLanguage() == "zh") + return VerticalOrientation::TransformedUpright; + uint8_t nRet = 1; if (cCh < 0x10000) @@ -409,12 +413,16 @@ rSalGraphics.DrawSalLayout( *this ); } -// Find if the given glyph index can result from applying “vert” feature. +// Find if the nominal glyph of the character is an input to “vert” feature. // We don’t check for a specific script or language as it shouldn’t matter // here; if the glyph would be the result from applying “vert” for any // script/language then we want to always treat it as upright glyph. -bool CommonSalLayout::IsVerticalAlternate(hb_codepoint_t nGlyphIndex) +bool CommonSalLayout::HasVerticalAlternate(sal_UCS4 aChar, sal_UCS4 aVariationSelector) { + hb_codepoint_t nGlyphIndex = 0; + if (!hb_font_get_glyph(mpHbFont, aChar, aVariationSelector, &nGlyphIndex)) + return false; + if (!mpVertGlyphs) { hb_face_t* pHbFace = hb_font_get_face(mpHbFont); @@ -432,7 +440,11 @@ while (hb_set_next(pLookups, &nIdx)) { hb_set_t* pGlyphs = hb_set_create(); - hb_ot_layout_lookup_collect_glyphs(pHbFace, HB_OT_TAG_GSUB, nIdx, nullptr, nullptr, nullptr, pGlyphs); + hb_ot_layout_lookup_collect_glyphs(pHbFace, HB_OT_TAG_GSUB, nIdx, + nullptr, // glyphs before + pGlyphs, // glyphs input + nullptr, // glyphs after + nullptr); // glyphs out hb_set_union(mpVertGlyphs, pGlyphs); } } @@ -516,16 +528,37 @@ { sal_Int32 nPrevIdx = nIdx; sal_UCS4 aChar = rArgs.mrStr.iterateCodePoints(&nIdx); - switch (vcl::GetVerticalOrientation(aChar)) + VerticalOrientation aVo = vcl::GetVerticalOrientation(aChar, rArgs.maLanguageTag); + + sal_UCS4 aVariationSelector = 0; + if (nIdx < nEndRunPos) + { + sal_Int32 nNextIdx = nIdx; + sal_UCS4 aNextChar = rArgs.mrStr.iterateCodePoints(&nNextIdx); + if (u_hasBinaryProperty(aNextChar, UCHAR_VARIATION_SELECTOR)) + { + nIdx = nNextIdx; + aVariationSelector = aNextChar; + } + } + + // Charters with U and Tu vertical orientation should + // be shaped in vertical direction. But characters + // with Tr should be shaped in vertical direction + // only if they have vertical alternates, otherwise + // they should be shaped in horizontal direction + // and then rotated. + // See http://unicode.org/reports/tr50/#vo + if (aVo == VerticalOrientation::Upright || + aVo == VerticalOrientation::TransformedUpright || + (aVo == VerticalOrientation::TransformedRotated && + HasVerticalAlternate(aChar, aVariationSelector))) { - case VerticalOrientation::Upright: - case VerticalOrientation::TransformedUpright: - case VerticalOrientation::TransformedRotated: aDirection = HB_DIRECTION_TTB; - break; - default: + } + else + { aDirection = bRightToLeft ? HB_DIRECTION_RTL : HB_DIRECTION_LTR; - break; } if (aSubRuns.empty() || aSubRuns.back().maDirection != aDirection) @@ -635,13 +668,7 @@ DeviceCoordinate nAdvance, nXOffset, nYOffset; if (aSubRun.maDirection == HB_DIRECTION_TTB) { - // If the vertical orientation is Tr, then we need to - // consider the glyph upright only if it was a vertical - // alternate (i.e. transformed). - // See http://unicode.org/reports/tr50/#vo - if (vcl::GetVerticalOrientation(aChar) != VerticalOrientation::TransformedRotated - || IsVerticalAlternate(pHbGlyphInfos[i].codepoint)) - nGlyphIndex |= GF_ROTL; + nGlyphIndex |= GF_ROTL; nAdvance = -pHbPositions[i].y_advance; nXOffset = pHbPositions[i].y_offset; diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/opengl/OpenGLHelper.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/opengl/OpenGLHelper.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/opengl/OpenGLHelper.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/opengl/OpenGLHelper.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -976,12 +976,28 @@ OpenGLContext::makeVCLCurrent(); } +namespace +{ + bool bTempOpenGLDisabled = false; +} + +PreDefaultWinNoOpenGLZone::PreDefaultWinNoOpenGLZone() +{ + bTempOpenGLDisabled = true; +} + +PreDefaultWinNoOpenGLZone::~PreDefaultWinNoOpenGLZone() +{ + bTempOpenGLDisabled = false; +} + bool OpenGLHelper::isVCLOpenGLEnabled() { /** * The !bSet part should only be called once! Changing the results in the same * run will mix OpenGL and normal rendering. */ + static bool bSet = false; static bool bEnable = false; static bool bForceOpenGL = false; @@ -990,6 +1006,11 @@ if ( Application::IsConsoleOnly() ) return false; + //tdf#106155, disable GL while loading certain bitmaps needed for the initial toplevel windows + //under raw X (kde4) vclplug + if (bTempOpenGLDisabled) + return false; + if (bSet) { return bForceOpenGL || bEnable; diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/dialog.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/dialog.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/dialog.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/dialog.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -662,7 +662,8 @@ else h -= 100; - return Size(w, h); + return Size(std::max(w, 640 - 15), + std::max(h, 480 - 50)); } void Dialog::StateChanged( StateChangedType nType ) diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/menu.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/menu.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/menu.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/menu.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -175,9 +175,11 @@ bKilled = true; - delete pItemList; + pItemList->Clear(); delete pLogo; + pLogo = nullptr; delete mpLayoutData; + mpLayoutData = nullptr; // Native-support: destroy SalMenu ImplSetSalMenu( nullptr ); diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/menufloatingwindow.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/menufloatingwindow.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/menufloatingwindow.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/menufloatingwindow.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -152,6 +152,12 @@ long nY = 0; if( pMenu ) { + // avoid crash if somehow menu got disposed, and MenuItemList is empty (workaround for tdf#104686) + if ( nFirstEntry > 0 && !pMenu->GetItemList()->GetDataFromPos(nFirstEntry - 1) ) + { + return 0; + } + for ( sal_uInt16 n = 0; n < nFirstEntry; n++ ) nY += pMenu->GetItemList()->GetDataFromPos( n )->aSz.Height(); nY -= pMenu->GetTitleHeight(); @@ -606,45 +612,55 @@ nFirstEntry = pMenu->ImplGetPrevVisible( nFirstEntry ); SAL_WARN_IF( nFirstEntry == ITEMPOS_INVALID, "vcl", "Scroll?!" ); - long nScrollEntryHeight = pMenu->GetItemList()->GetDataFromPos( nFirstEntry )->aSz.Height(); - - if ( !bScrollDown ) + // avoid crash if somehow menu got disposed, and MenuItemList is empty (workaround for tdf#104686) + const auto pItemData = pMenu->GetItemList()->GetDataFromPos( nFirstEntry ); + if ( pItemData ) { - bScrollDown = true; - Invalidate(); - } + long nScrollEntryHeight = pItemData->aSz.Height(); - if ( pMenu->ImplGetPrevVisible( nFirstEntry ) == ITEMPOS_INVALID ) - { - bScrollUp = false; - Invalidate(); - } + if ( !bScrollDown ) + { + bScrollDown = true; + Invalidate(); + } + + if ( pMenu->ImplGetPrevVisible( nFirstEntry ) == ITEMPOS_INVALID ) + { + bScrollUp = false; + Invalidate(); + } - Scroll( 0, nScrollEntryHeight, ImplCalcClipRegion( false ).GetBoundRect(), ScrollFlags::Clip ); + Scroll( 0, nScrollEntryHeight, ImplCalcClipRegion( false ).GetBoundRect(), ScrollFlags::Clip ); + } } else if ( bScrollDown && !bUp ) { - long nScrollEntryHeight = pMenu->GetItemList()->GetDataFromPos( nFirstEntry )->aSz.Height(); + // avoid crash if somehow menu got disposed, and MenuItemList is empty (workaround for tdf#104686) + const auto pItemData = pMenu->GetItemList()->GetDataFromPos( nFirstEntry ); + if ( pItemData ) + { + long nScrollEntryHeight = pItemData->aSz.Height(); - nFirstEntry = pMenu->ImplGetNextVisible( nFirstEntry ); - SAL_WARN_IF( nFirstEntry == ITEMPOS_INVALID, "vcl", "Scroll?!" ); + nFirstEntry = pMenu->ImplGetNextVisible( nFirstEntry ); + SAL_WARN_IF( nFirstEntry == ITEMPOS_INVALID, "vcl", "Scroll?!" ); - if ( !bScrollUp ) - { - bScrollUp = true; - Invalidate(); - } + if ( !bScrollUp ) + { + bScrollUp = true; + Invalidate(); + } - long nHeight = GetOutputSizePixel().Height(); - sal_uInt16 nLastVisible; - static_cast(pMenu.get())->ImplCalcVisEntries( nHeight, nFirstEntry, &nLastVisible ); - if ( pMenu->ImplGetNextVisible( nLastVisible ) == ITEMPOS_INVALID ) - { - bScrollDown = false; - Invalidate(); - } + long nHeight = GetOutputSizePixel().Height(); + sal_uInt16 nLastVisible; + static_cast(pMenu.get())->ImplCalcVisEntries( nHeight, nFirstEntry, &nLastVisible ); + if ( pMenu->ImplGetNextVisible( nLastVisible ) == ITEMPOS_INVALID ) + { + bScrollDown = false; + Invalidate(); + } - Scroll( 0, -nScrollEntryHeight, ImplCalcClipRegion( false ).GetBoundRect(), ScrollFlags::Clip ); + Scroll( 0, -nScrollEntryHeight, ImplCalcClipRegion( false ).GetBoundRect(), ScrollFlags::Clip ); + } } Invalidate(); diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/menuitemlist.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/menuitemlist.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/menuitemlist.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/menuitemlist.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -135,6 +135,13 @@ } } +void MenuItemList::Clear() +{ + for (MenuItemData* i : maItemList) + delete i; + maItemList.resize(0); +} + MenuItemData* MenuItemList::GetData( sal_uInt16 nSVId, size_t& rPos ) const { for( size_t i = 0, n = maItemList.size(); i < n; ++i ) diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/menuitemlist.hxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/menuitemlist.hxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/menuitemlist.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/menuitemlist.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -116,6 +116,7 @@ ); void InsertSeparator(const OString &rIdent, size_t nPos); void Remove( size_t nPos ); + void Clear(); MenuItemData* GetData( sal_uInt16 nSVId, size_t& rPos ) const; MenuItemData* GetData( sal_uInt16 nSVId ) const diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/source/window/window.cxx libreoffice-l10n-5.3.3~rc2/vcl/source/window/window.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/source/window/window.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/source/window/window.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2722,7 +2722,7 @@ mpWindowImpl->mbDefSize = false; // The top BorderWindow is the window which is to be positioned - vcl::Window* pWindow = this; + VclPtr pWindow = this; while ( pWindow->mpWindowImpl->mpBorderWindow ) pWindow = pWindow->mpWindowImpl->mpBorderWindow; @@ -2739,7 +2739,8 @@ nHeight = pWindow->mnOutHeight; sal_uInt16 nSysFlags=0; - vcl::Window *pParent = GetParent(); + VclPtr pParent = GetParent(); + VclPtr pWinParent = pWindow->GetParent(); if( nFlags & PosSizeFlags::Width ) nSysFlags |= SAL_FRAME_POSSIZE_WIDTH; @@ -2748,9 +2749,9 @@ if( nFlags & PosSizeFlags::X ) { nSysFlags |= SAL_FRAME_POSSIZE_X; - if( pParent && (pWindow->GetStyle() & WB_SYSTEMCHILDWINDOW) ) + if( pWinParent && (pWindow->GetStyle() & WB_SYSTEMCHILDWINDOW) ) { - nX += pParent->mnOutOffX; + nX += pWinParent->mnOutOffX; } if( pParent && pParent->ImplIsAntiparallel() ) { @@ -2765,9 +2766,9 @@ { // --- RTL --- make sure the old right aligned position is not changed // system windows will always grow to the right - if ( pParent ) + if ( pWinParent ) { - OutputDevice *pParentOutDev = pParent->GetOutDev(); + OutputDevice *pParentOutDev = pWinParent->GetOutDev(); if( pParentOutDev->HasMirroredGraphics() ) { long myWidth = nOldWidth; @@ -2777,13 +2778,13 @@ myWidth = nWidth; nFlags |= PosSizeFlags::X; nSysFlags |= SAL_FRAME_POSSIZE_X; - nX = pParent->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nX - mpWindowImpl->mpFrame->GetUnmirroredGeometry().nLeftDecoration + - pParent->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nWidth - myWidth - 1 - mpWindowImpl->mpFrame->GetUnmirroredGeometry().nX; + nX = pWinParent->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nX - mpWindowImpl->mpFrame->GetUnmirroredGeometry().nLeftDecoration + + pWinParent->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nWidth - myWidth - 1 - mpWindowImpl->mpFrame->GetUnmirroredGeometry().nX; if(!(nFlags & PosSizeFlags::Y)) { nFlags |= PosSizeFlags::Y; nSysFlags |= SAL_FRAME_POSSIZE_Y; - nY = mpWindowImpl->mpFrame->GetUnmirroredGeometry().nY - pWindow->GetParent()->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nY - + nY = mpWindowImpl->mpFrame->GetUnmirroredGeometry().nY - pWinParent->mpWindowImpl->mpFrame->GetUnmirroredGeometry().nY - mpWindowImpl->mpFrame->GetUnmirroredGeometry().nTopDecoration; } } @@ -2792,9 +2793,9 @@ if( nFlags & PosSizeFlags::Y ) { nSysFlags |= SAL_FRAME_POSSIZE_Y; - if( pParent && (pWindow->GetStyle() & WB_SYSTEMCHILDWINDOW) ) + if( pWinParent && (pWindow->GetStyle() & WB_SYSTEMCHILDWINDOW) ) { - nY += pParent->mnOutOffY; + nY += pWinParent->mnOutOffY; } } @@ -2803,7 +2804,7 @@ // check for min/max client size and adjust size accordingly // otherwise it may happen that the resize event is ignored, i.e. the old size remains // unchanged but ImplHandleResize() is called with the wrong size - SystemWindow *pSystemWindow = dynamic_cast< SystemWindow* >( pWindow ); + SystemWindow *pSystemWindow = dynamic_cast< SystemWindow* >( pWindow.get() ); if( pSystemWindow ) { Size aMinSize = pSystemWindow->GetMinOutputSizePixel(); diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/generic/window/salframe.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/generic/window/salframe.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/generic/window/salframe.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/generic/window/salframe.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -57,6 +57,7 @@ #include "unx/i18n_keysym.hxx" #include "unx/i18n_status.hxx" #include +#include "opengl/zone.hxx" #include "unx/gensys.h" #include "sallayout.hxx" @@ -257,6 +258,8 @@ if( ! ImplGetResMgr() ) return false; + PreDefaultWinNoOpenGLZone aGuard; + CreateNetWmAppIcon( nIcon, netwm_icon ); sal_uInt16 nIconSizeOffset; diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/a11y/atkutil.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/a11y/atkutil.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/a11y/atkutil.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/a11y/atkutil.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -91,7 +91,14 @@ wrapper_obj->mpText.set(wrapper_obj->mpContext, css::uno::UNO_QUERY); if ( wrapper_obj->mpText.is() ) { - gint caretPos = wrapper_obj->mpText->getCaretPosition(); + gint caretPos = -1; + + try { + caretPos = wrapper_obj->mpText->getCaretPosition(); + } + catch(const uno::Exception&) { + g_warning( "Exception in getCaretPosition()" ); + } if ( caretPos != -1 ) { diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/gtksalframe.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/gtksalframe.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/gtksalframe.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/gtksalframe.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -724,7 +724,6 @@ { GtkSalMenu* pGtkSalMenu = static_cast(pSalMenu); pGtkSalMenu->EnableUnity(true); - pGtkSalMenu->UpdateFull(); } } diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/gtksalmenu.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/gtksalmenu.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk/gtksalmenu.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk/gtksalmenu.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -847,7 +847,7 @@ g_lo_menu_insert_section( pMenuModel, 0, nullptr, mpMenuModel ); #if GTK_CHECK_VERSION(3,0,0) - if (!bUnityMode) + if (!bUnityMode && static_cast(mpVCLMenu.get())->IsDisplayable()) { DestroyMenuBarWidget(); CreateMenuBarWidget(); @@ -1159,14 +1159,19 @@ bUnityMode = bEnable; MenuBar* pMenuBar(static_cast(mpVCLMenu.get())); + bool bDisplayable(pMenuBar->IsDisplayable()); if (bEnable) + { DestroyMenuBarWidget(); + UpdateFull(); + if (!bDisplayable) + ShowMenuBar(false); + } else { Update(); - if (pMenuBar->IsDisplayable()) - CreateMenuBarWidget(); + ShowMenuBar(bDisplayable); } pMenuBar->LayoutChanged(); diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -739,7 +739,6 @@ { GtkSalMenu* pGtkSalMenu = static_cast(pSalMenu); pGtkSalMenu->EnableUnity(true); - pGtkSalMenu->UpdateFull(); } } @@ -3395,6 +3394,14 @@ aEvent.LocationX = x; aEvent.LocationY = y; aEvent.DropAction = GdkToVcl(gdk_drag_context_get_selected_action(context)); + // ACTION_DEFAULT is documented as... + // 'This means the user did not press any key during the Drag and Drop operation + // and the action that was combined with ACTION_DEFAULT is the system default action' + // in tdf#107031 writer won't insert a link when a heading is dragged from the + // navigator unless this is set. Its unclear really what ACTION_DEFAULT means, + // there is a deprecated 'GDK_ACTION_DEFAULT Means nothing, and should not be used' + // possible equivalent in gtk. + aEvent.DropAction |= css::datatransfer::dnd::DNDConstants::ACTION_DEFAULT; aEvent.SourceActions = GdkToVcl(gdk_drag_context_get_actions(context)); css::uno::Reference xTransferable; // For LibreOffice internal D&D we provide the Transferable without Gtk @@ -3567,7 +3574,7 @@ G_CALLBACK (signalIMPreeditEnd), this ); GetGenericData()->ErrorTrapPush(); - gtk_im_context_set_client_window( m_pIMContext, widget_get_window(GTK_WIDGET(m_pFrame->m_pWindow)) ); + gtk_im_context_set_client_window(m_pIMContext, widget_get_window(m_pFrame->getMouseEventWidget())); gtk_im_context_focus_in( m_pIMContext ); GetGenericData()->ErrorTrapPop(); m_bFocused = true; diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -216,31 +216,42 @@ return partRect; } -Rectangle GtkSalGraphics::NWGetScrollButtonRect( ControlPart nPart, Rectangle aAreaRect ) +namespace { - GtkStyleContext* pScrollbarStyle = nullptr; - if ((nPart == ControlPart::ButtonLeft) || (nPart == ControlPart::ButtonRight)) - pScrollbarStyle = mpHScrollbarStyle; - else // (nPart == ControlPart::ButtonUp) || (nPart == ControlPart::ButtonDown) - pScrollbarStyle = mpVScrollbarStyle; + void QuerySize(GtkStyleContext *pContext, Size &rSize) + { + GtkBorder margin, border, padding; - gint slider_width; - gint stepper_size; - gint stepper_spacing; - gint trough_border; + gtk_style_context_get_margin(pContext, gtk_style_context_get_state(pContext), &margin); + gtk_style_context_get_border(pContext, gtk_style_context_get_state(pContext), &border); + gtk_style_context_get_padding(pContext, gtk_style_context_get_state(pContext), &padding); - // Grab some button style attributes - gtk_style_context_get_style( pScrollbarStyle, - "slider-width", &slider_width, - "stepper-size", &stepper_size, - "trough-border", &trough_border, - "stepper-spacing", &stepper_spacing, nullptr ); + int nMinWidth, nMinHeight; + gtk_style_context_get(pContext, gtk_style_context_get_state(pContext), + "min-width", &nMinWidth, "min-height", &nMinHeight, nullptr); + + nMinWidth += margin.left + margin.right + border.left + border.right + padding.left + padding.right; + nMinHeight += margin.top + margin.bottom + border.top + border.bottom + padding.top + padding.bottom; + + rSize = Size(std::max(rSize.Width(), nMinWidth), std::max(rSize.Height(), nMinHeight)); + } +} + +Rectangle GtkSalGraphics::NWGetScrollButtonRect( ControlPart nPart, Rectangle aAreaRect ) +{ + Rectangle buttonRect; gboolean has_forward; gboolean has_forward2; gboolean has_backward; gboolean has_backward2; + GtkStyleContext* pScrollbarStyle = nullptr; + if ((nPart == ControlPart::ButtonLeft) || (nPart == ControlPart::ButtonRight)) + pScrollbarStyle = mpHScrollbarStyle; + else // (nPart == ControlPart::ButtonUp) || (nPart == ControlPart::ButtonDown) + pScrollbarStyle = mpVScrollbarStyle; + gtk_style_context_get_style( pScrollbarStyle, "has-forward-stepper", &has_forward, "has-secondary-forward-stepper", &has_forward2, @@ -248,7 +259,6 @@ "has-secondary-backward-stepper", &has_backward2, nullptr ); gint buttonWidth; gint buttonHeight; - Rectangle buttonRect; gint nFirst = 0; gint nSecond = 0; @@ -258,6 +268,64 @@ if ( has_backward ) nFirst += 1; if ( has_backward2 ) nSecond += 1; + if (gtk_check_version(3, 20, 0) == nullptr) + { + Size aSize; + if (nPart == ControlPart::ButtonLeft || nPart == ControlPart::ButtonRight) + { + QuerySize(mpHScrollbarStyle, aSize); + QuerySize(mpHScrollbarContentsStyle, aSize); + QuerySize(mpHScrollbarButtonStyle, aSize); + } + else + { + QuerySize(mpVScrollbarStyle, aSize); + QuerySize(mpVScrollbarContentsStyle, aSize); + QuerySize(mpVScrollbarButtonStyle, aSize); + } + + if (nPart == ControlPart::ButtonUp) + { + aSize.Height() *= nFirst; + buttonRect.setX(aAreaRect.Left()); + buttonRect.setY(aAreaRect.Top()); + } + else if (nPart == ControlPart::ButtonLeft) + { + aSize.Width() *= nFirst; + buttonRect.setX(aAreaRect.Left()); + buttonRect.setY(aAreaRect.Top()); + } + else if (nPart == ControlPart::ButtonDown) + { + aSize.Height() *= nSecond; + buttonRect.setX(aAreaRect.Left()); + buttonRect.setY(aAreaRect.Top() + aAreaRect.GetHeight() - aSize.Height()); + } + else if (nPart == ControlPart::ButtonRight) + { + aSize.Width() *= nSecond; + buttonRect.setX(aAreaRect.Left() + aAreaRect.GetWidth() - aSize.Width()); + buttonRect.setY(aAreaRect.Top()); + } + + buttonRect.SetSize(aSize); + + return buttonRect; + } + + gint slider_width; + gint stepper_size; + gint stepper_spacing; + gint trough_border; + + // Grab some button style attributes + gtk_style_context_get_style( pScrollbarStyle, + "slider-width", &slider_width, + "stepper-size", &stepper_size, + "trough-border", &trough_border, + "stepper-spacing", &stepper_spacing, nullptr ); + if ( ( nPart == ControlPart::ButtonUp ) || ( nPart == ControlPart::ButtonDown ) ) { buttonWidth = slider_width + 2 * trough_border; @@ -369,6 +437,327 @@ ControlPart nPart, const ImplControlValue& rValue ) { + if (gtk_check_version(3, 20, 0) == nullptr) + { + assert(rValue.getType() == ControlType::Scrollbar); + const ScrollbarValue& rScrollbarVal = static_cast(rValue); + Rectangle scrollbarRect; + GtkStateFlags stateFlags; + GtkOrientation scrollbarOrientation; + Rectangle thumbRect = rScrollbarVal.maThumbRect; + Rectangle button11BoundRect = rScrollbarVal.maButton1Rect; // backward + Rectangle button22BoundRect = rScrollbarVal.maButton2Rect; // forward + Rectangle button12BoundRect = rScrollbarVal.maButton1Rect; // secondary forward + Rectangle button21BoundRect = rScrollbarVal.maButton2Rect; // secondary backward + gdouble arrow1Angle; // backward + gdouble arrow2Angle; // forward + Rectangle arrowRect; + gint slider_width = 0; + gint stepper_size = 0; + + // make controlvalue rectangles relative to area + thumbRect.Move( -rControlRectangle.Left(), -rControlRectangle.Top() ); + button11BoundRect.Move( -rControlRectangle.Left(), -rControlRectangle.Top() ); + button22BoundRect.Move( -rControlRectangle.Left(), -rControlRectangle.Top() ); + button12BoundRect.Move( -rControlRectangle.Left(), -rControlRectangle.Top() ); + button21BoundRect.Move( -rControlRectangle.Left(), -rControlRectangle.Top() ); + + // Find the overall bounding rect of the control + scrollbarRect = rControlRectangle; + if (scrollbarRect.GetWidth() <= 0 || scrollbarRect.GetHeight() <= 0) + return; + + gint slider_side; + Size aSize; + if (nPart == ControlPart::DrawBackgroundHorz) + { + QuerySize(mpHScrollbarStyle, aSize); + QuerySize(mpHScrollbarContentsStyle, aSize); + QuerySize(mpHScrollbarTroughStyle, aSize); + QuerySize(mpHScrollbarSliderStyle, aSize); + slider_side = aSize.Height(); + gtk_style_context_get(mpHScrollbarButtonStyle, + gtk_style_context_get_state(mpHScrollbarButtonStyle), + "min-height", &slider_width, + "min-width", &stepper_size, nullptr); + } + else + { + QuerySize(mpVScrollbarStyle, aSize); + QuerySize(mpVScrollbarContentsStyle, aSize); + QuerySize(mpVScrollbarTroughStyle, aSize); + QuerySize(mpVScrollbarSliderStyle, aSize); + slider_side = aSize.Width(); + gtk_style_context_get(mpVScrollbarButtonStyle, + gtk_style_context_get_state(mpVScrollbarButtonStyle), + "min-width", &slider_width, + "min-height", &stepper_size, nullptr); + } + + gboolean has_forward; + gboolean has_forward2; + gboolean has_backward; + gboolean has_backward2; + + gtk_style_context_get_style( context, + "has-forward-stepper", &has_forward, + "has-secondary-forward-stepper", &has_forward2, + "has-backward-stepper", &has_backward, + "has-secondary-backward-stepper", &has_backward2, nullptr ); + + if ( nPart == ControlPart::DrawBackgroundHorz ) + { + // Center vertically in the track + scrollbarRect.Move( 0, (scrollbarRect.GetHeight() - slider_side) / 2 ); + scrollbarRect.SetSize( Size( scrollbarRect.GetWidth(), slider_side ) ); + thumbRect.Move( 0, (scrollbarRect.GetHeight() - slider_side) / 2 ); + thumbRect.SetSize( Size( thumbRect.GetWidth(), slider_side ) ); + + scrollbarOrientation = GTK_ORIENTATION_HORIZONTAL; + arrow1Angle = G_PI * 3 / 2; + arrow2Angle = G_PI / 2; + + if ( has_backward ) + { + button12BoundRect.Move( stepper_size, + (scrollbarRect.GetHeight() - slider_width) / 2 ); + } + + button11BoundRect.Move( 0, (scrollbarRect.GetHeight() - slider_width) / 2 ); + button11BoundRect.SetSize( Size( stepper_size, slider_width ) ); + button12BoundRect.SetSize( Size( stepper_size, slider_width ) ); + + if ( has_backward2 ) + { + button22BoundRect.Move( stepper_size, (scrollbarRect.GetHeight() - slider_width) / 2 ); + button21BoundRect.Move( 0, (scrollbarRect.GetHeight() - slider_width) / 2 ); + } + else + { + button22BoundRect.Move( 0, (scrollbarRect.GetHeight() - slider_width) / 2 ); + } + + button21BoundRect.SetSize( Size( stepper_size, slider_width ) ); + button22BoundRect.SetSize( Size( stepper_size, slider_width ) ); + } + else + { + // Center horizontally in the track + scrollbarRect.Move( (scrollbarRect.GetWidth() - slider_side) / 2, 0 ); + scrollbarRect.SetSize( Size( slider_side, scrollbarRect.GetHeight() ) ); + thumbRect.Move( (scrollbarRect.GetWidth() - slider_side) / 2, 0 ); + thumbRect.SetSize( Size( slider_side, thumbRect.GetHeight() ) ); + + scrollbarOrientation = GTK_ORIENTATION_VERTICAL; + arrow1Angle = 0; + arrow2Angle = G_PI; + + if ( has_backward ) + { + button12BoundRect.Move( (scrollbarRect.GetWidth() - slider_width) / 2, + stepper_size ); + } + button11BoundRect.Move( (scrollbarRect.GetWidth() - slider_width) / 2, 0 ); + button11BoundRect.SetSize( Size( slider_width, stepper_size ) ); + button12BoundRect.SetSize( Size( slider_width, stepper_size ) ); + + if ( has_backward2 ) + { + button22BoundRect.Move( (scrollbarRect.GetWidth() - slider_width) / 2, stepper_size ); + button21BoundRect.Move( (scrollbarRect.GetWidth() - slider_width) / 2, 0 ); + } + else + { + button22BoundRect.Move( (scrollbarRect.GetWidth() - slider_width) / 2, 0 ); + } + + button21BoundRect.SetSize( Size( slider_width, stepper_size ) ); + button22BoundRect.SetSize( Size( slider_width, stepper_size ) ); + } + + bool has_slider = ( thumbRect.GetWidth() > 0 && thumbRect.GetHeight() > 0 ); + + // ----------------- CONTENTS + GtkStyleContext* pScrollbarContentsStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarContentsStyle : mpHScrollbarContentsStyle; + + gtk_render_background(gtk_widget_get_style_context(gCacheWindow), cr, 0, 0, + scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); + + gtk_render_background(context, cr, 0, 0, + scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); + gtk_render_frame(context, cr, 0, 0, + scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); + + gtk_render_background(pScrollbarContentsStyle, cr, 0, 0, + scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); + gtk_render_frame(pScrollbarContentsStyle, cr, 0, 0, + scrollbarRect.GetWidth(), scrollbarRect.GetHeight() ); + + bool backwardButtonInsensitive = + rScrollbarVal.mnCur == rScrollbarVal.mnMin; + bool forwardButtonInsensitive = rScrollbarVal.mnMax == 0 || + rScrollbarVal.mnCur + rScrollbarVal.mnVisibleSize >= rScrollbarVal.mnMax; + + // ----------------- BUTTON 1 + if ( has_backward ) + { + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton1State); + if ( backwardButtonInsensitive ) + stateFlags = GTK_STATE_FLAG_INSENSITIVE; + + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; + + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, + button11BoundRect.Left(), button11BoundRect.Top(), + button11BoundRect.GetWidth(), button11BoundRect.GetHeight() ); + gtk_render_frame(pScrollbarButtonStyle, cr, + button11BoundRect.Left(), button11BoundRect.Top(), + button11BoundRect.GetWidth(), button11BoundRect.GetHeight() ); + + // ----------------- ARROW 1 + NWCalcArrowRect( button11BoundRect, arrowRect ); + gtk_render_arrow(pScrollbarButtonStyle, cr, + arrow1Angle, + arrowRect.Left(), arrowRect.Top(), + MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); + } + if ( has_forward2 ) + { + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton2State); + if ( forwardButtonInsensitive ) + stateFlags = GTK_STATE_FLAG_INSENSITIVE; + + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; + + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, + button12BoundRect.Left(), button12BoundRect.Top(), + button12BoundRect.GetWidth(), button12BoundRect.GetHeight() ); + gtk_render_frame(pScrollbarButtonStyle, cr, + button12BoundRect.Left(), button12BoundRect.Top(), + button12BoundRect.GetWidth(), button12BoundRect.GetHeight() ); + + // ----------------- ARROW 1 + NWCalcArrowRect( button12BoundRect, arrowRect ); + gtk_render_arrow(pScrollbarButtonStyle, cr, + arrow2Angle, + arrowRect.Left(), arrowRect.Top(), + MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); + } + // ----------------- BUTTON 2 + + if ( has_forward ) + { + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton2State); + if ( forwardButtonInsensitive ) + stateFlags = GTK_STATE_FLAG_INSENSITIVE; + + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; + + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, + button22BoundRect.Left(), button22BoundRect.Top(), + button22BoundRect.GetWidth(), button22BoundRect.GetHeight() ); + gtk_render_frame(pScrollbarButtonStyle, cr, + button22BoundRect.Left(), button22BoundRect.Top(), + button22BoundRect.GetWidth(), button22BoundRect.GetHeight() ); + + // ----------------- ARROW 2 + NWCalcArrowRect( button22BoundRect, arrowRect ); + gtk_render_arrow(pScrollbarButtonStyle, cr, + arrow2Angle, + arrowRect.Left(), arrowRect.Top(), + MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); + } + + if ( has_backward2 ) + { + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnButton1State); + if ( backwardButtonInsensitive ) + stateFlags = GTK_STATE_FLAG_INSENSITIVE; + + GtkStyleContext* pScrollbarButtonStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarButtonStyle : mpHScrollbarButtonStyle; + + gtk_style_context_set_state(pScrollbarButtonStyle, stateFlags); + + gtk_render_background(pScrollbarButtonStyle, cr, + button21BoundRect.Left(), button21BoundRect.Top(), + button21BoundRect.GetWidth(), button21BoundRect.GetHeight() ); + gtk_render_frame(pScrollbarButtonStyle, cr, + button21BoundRect.Left(), button21BoundRect.Top(), + button21BoundRect.GetWidth(), button21BoundRect.GetHeight() ); + + // ----------------- ARROW 2 + NWCalcArrowRect( button21BoundRect, arrowRect ); + gtk_render_arrow(pScrollbarButtonStyle, cr, + arrow1Angle, + arrowRect.Left(), arrowRect.Top(), + MIN(arrowRect.GetWidth(), arrowRect.GetHeight()) ); + } + + // ----------------- TROUGH + // trackrect matches that of ScrollBar::ImplCalc + Rectangle aTrackRect(Point(0, 0), scrollbarRect.GetSize()); + if (nPart == ControlPart::DrawBackgroundHorz) + { + Rectangle aBtn1Rect = NWGetScrollButtonRect(ControlPart::ButtonLeft, aTrackRect); + Rectangle aBtn2Rect = NWGetScrollButtonRect(ControlPart::ButtonRight, aTrackRect); + aTrackRect.Left() = aBtn1Rect.Right(); + aTrackRect.Right() = aBtn2Rect.Left(); + } + else + { + Rectangle aBtn1Rect = NWGetScrollButtonRect(ControlPart::ButtonUp, aTrackRect); + Rectangle aBtn2Rect = NWGetScrollButtonRect(ControlPart::ButtonDown, aTrackRect); + aTrackRect.Top() = aBtn1Rect.Bottom() + 1; + aTrackRect.Bottom() = aBtn2Rect.Top(); + } + + GtkStyleContext* pScrollbarTroughStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarTroughStyle : mpHScrollbarTroughStyle; + gtk_render_background(pScrollbarTroughStyle, cr, aTrackRect.Left(), aTrackRect.Top(), + aTrackRect.GetWidth(), aTrackRect.GetHeight() ); + gtk_render_frame(pScrollbarTroughStyle, cr, aTrackRect.Left(), aTrackRect.Top(), + aTrackRect.GetWidth(), aTrackRect.GetHeight() ); + + // ----------------- THUMB + if ( has_slider ) + { + stateFlags = NWConvertVCLStateToGTKState(rScrollbarVal.mnThumbState); + if ( rScrollbarVal.mnThumbState & ControlState::PRESSED ) + stateFlags = (GtkStateFlags) (stateFlags | GTK_STATE_PRELIGHT); + + GtkStyleContext* pScrollbarSliderStyle = scrollbarOrientation == GTK_ORIENTATION_VERTICAL ? + mpVScrollbarSliderStyle : mpHScrollbarSliderStyle; + + gtk_style_context_set_state(pScrollbarSliderStyle, stateFlags); + + GtkBorder margin; + gtk_style_context_get_margin(pScrollbarSliderStyle, stateFlags, &margin); + + gtk_render_background(pScrollbarSliderStyle, cr, + thumbRect.Left() + margin.left, thumbRect.Top() + margin.top, + thumbRect.GetWidth() - margin.left - margin.right, + thumbRect.GetHeight() - margin.top - margin.bottom); + + gtk_render_frame(pScrollbarSliderStyle, cr, + thumbRect.Left() + margin.left, thumbRect.Top() + margin.top, + thumbRect.GetWidth() - margin.left - margin.right, + thumbRect.GetHeight() - margin.top - margin.bottom); + } + + return; + } + (void)nType; OSL_ASSERT( rValue.getType() == ControlType::Scrollbar ); const ScrollbarValue& rScrollbarVal = static_cast(rValue); @@ -737,11 +1126,17 @@ if (nPart == ControlPart::Entire) { + gtk_style_context_set_state(mpWindowStyle, flags); + + gtk_render_background(mpWindowStyle, cr, + 0, 0, + rControlRectangle.GetWidth(), rControlRectangle.GetHeight()); + gtk_style_context_set_state(mpSpinStyle, flags); gtk_render_background(mpSpinStyle, cr, 0, 0, - rControlRectangle.GetWidth(), rControlRectangle.GetHeight() ); + rControlRectangle.GetWidth(), rControlRectangle.GetHeight()); } cairo_translate(cr, -rControlRectangle.Left(), -rControlRectangle.Top()); @@ -1124,11 +1519,11 @@ } case GtkControlPart::SpinButton: { - GtkWidgetPath *path = gtk_widget_path_new(); + GtkWidgetPath *path = gtk_widget_path_copy(gtk_style_context_get_path(mpWindowStyle)); gtk_widget_path_append_type(path, GTK_TYPE_SPIN_BUTTON); set_object_name(path, -1, "spinbutton"); gtk_widget_path_iter_add_class(path, -1, GTK_STYLE_CLASS_HORIZONTAL); - return makeContext(path, nullptr); + return makeContext(path, mpWindowStyle); } case GtkControlPart::SpinButtonEntry: { @@ -2725,18 +3120,28 @@ aStyleSet.SetPrimaryButtonWarpsSlider(primarybuttonwarps); // set scrollbar settings - gint slider_width = 14; - gint trough_border = 1; gint min_slider_length = 21; // Grab some button style attributes - gtk_style_context_get_style(mpVScrollbarStyle, - "slider-width", &slider_width, - "trough-border", &trough_border, - nullptr); - aStyleSet.SetScrollBarSize(slider_width + 2*trough_border); if (gtk_check_version(3, 20, 0) == nullptr) { + Size aSize; + QuerySize(mpHScrollbarStyle, aSize); + QuerySize(mpHScrollbarContentsStyle, aSize); + QuerySize(mpHScrollbarTroughStyle, aSize); + QuerySize(mpHScrollbarSliderStyle, aSize); + + gboolean has_forward, has_forward2, has_backward, has_backward2; + gtk_style_context_get_style(mpHScrollbarStyle, + "has-forward-stepper", &has_forward, + "has-secondary-forward-stepper", &has_forward2, + "has-backward-stepper", &has_backward, + "has-secondary-backward-stepper", &has_backward2, nullptr); + if (has_forward || has_backward || has_forward2 || has_backward2) + QuerySize(mpHScrollbarButtonStyle, aSize); + + aStyleSet.SetScrollBarSize(aSize.Height()); + gtk_style_context_get(mpVScrollbarSliderStyle, gtk_style_context_get_state(mpVScrollbarSliderStyle), "min-height", &min_slider_length, nullptr); @@ -2744,9 +3149,15 @@ } else { + gint slider_width = 14; + gint trough_border = 1; + gtk_style_context_get_style(mpVScrollbarStyle, + "slider-width", &slider_width, + "trough-border", &trough_border, "min-slider-length", &min_slider_length, nullptr); + aStyleSet.SetScrollBarSize(slider_width + 2*trough_border); gint magic = trough_border ? 1 : 0; aStyleSet.SetMinThumbSize(min_slider_length - magic); } diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/win/app/salinst.cxx libreoffice-l10n-5.3.3~rc2/vcl/win/app/salinst.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/win/app/salinst.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/win/app/salinst.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -39,6 +39,7 @@ #include "win/salobj.h" #include "win/saltimer.h" #include "win/salbmp.h" +#include "win/winlayout.hxx" #include "salimestatus.hxx" #include "salsys.hxx" diff -Nru libreoffice-l10n-5.3.2~rc2/vcl/win/gdi/winlayout.cxx libreoffice-l10n-5.3.3~rc2/vcl/win/gdi/winlayout.cxx --- libreoffice-l10n-5.3.2~rc2/vcl/win/gdi/winlayout.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/vcl/win/gdi/winlayout.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -3072,20 +3072,32 @@ TextOutRenderer & TextOutRenderer::get(bool bUseDWrite) { + SalData *const pSalData = GetSalData(); + + if (!pSalData) + { // don't call this after DeInitVCL() + fprintf(stderr, "TextOutRenderer fatal error: no SalData"); + abort(); + } + if (bUseDWrite) { - static std::unique_ptr _impl(D2DWriteTextOutRenderer::InitModules() - ? static_cast(new D2DWriteTextOutRenderer()) - : static_cast(new ExTextOutRenderer())); - - return *_impl; + static bool const bSuccess(D2DWriteTextOutRenderer::InitModules()); + if (bSuccess && !pSalData->m_pD2DWriteTextOutRenderer) + { + pSalData->m_pD2DWriteTextOutRenderer.reset(new D2DWriteTextOutRenderer()); + } + if (pSalData->m_pD2DWriteTextOutRenderer) + { + return *pSalData->m_pD2DWriteTextOutRenderer; + } + // else: fall back to GDI } - else + if (!pSalData->m_pExTextOutRenderer) { - static std::unique_ptr _impl(new ExTextOutRenderer()); - - return *_impl; + pSalData->m_pExTextOutRenderer.reset(new ExTextOutRenderer); } + return *pSalData->m_pExTextOutRenderer; } diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Application.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Application.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Application.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Application.xba 2017-05-03 16:46:29.000000000 +0000 @@ -915,7 +915,7 @@ If Len(pvString) > 0 Then For l = 1 To Len(pvString) If lLength > 0 And Len(sOutput) > lLength Then Exit For - sOutput = sOutput & Utils._UTF8Encode(Mid(pvString, l, 1) + sOutput = sOutput & Utils._UTF8Encode(Mid(pvString, l, 1)) Next l End If @@ -1147,7 +1147,7 @@ Set oBaseContext = CreateUnoService("com.sun.star.sdb.DatabaseContext") sDbNames() = oBaseContext.getElementNames() bFound = False - For i = 0 To UBound(sDbNames() ' Enumerate registered databases and check non case-sensitive equality + For i = 0 To UBound(sDbNames()) ' Enumerate registered databases and check non case-sensitive equality If UCase(sDbNames(i)) = UCase(pvDatabaseURL) Then sDatabaseURL = sDbNames(i) Set oBaseSource = oBaseContext.getByName(sDatabaseURL) diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Database.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Database.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Database.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Database.xba 2017-05-03 16:46:29.000000000 +0000 @@ -1442,7 +1442,7 @@ lNextPattern = InStr(lCurrentChar, psString, vPatterns(i), 1) ' Text (not case-sensitive) string comparison If lNextPattern > 0 And lNextPattern < lPattern Then lPattern = lNextPattern - sPattern = Mid(psString, lPattern, Len(vPatterns(i)) + sPattern = Mid(psString, lPattern, Len(vPatterns(i))) End If Next i ' Up to the next pattern or to the end of the string, UTF8-encode each character diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Event.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Event.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Event.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Event.xba 2017-05-03 16:46:29.000000000 +0000 @@ -254,7 +254,7 @@ Set oObject = poEvent.Source _EventSource = oObject sArray = Split(Utils._getUNOTypeName(poEvent), ".") - _EventType = UCase(sArray(UBound(sArray)) + _EventType = UCase(sArray(UBound(sArray))) If Utils._hasUNOProperty(poEvent, "EventName") Then _EventName = poEvent.EventName Select Case _EventType diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Recordset.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Recordset.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Recordset.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Recordset.xba 2017-05-03 16:46:29.000000000 +0000 @@ -1120,6 +1120,7 @@ _PropertiesList = Array("AbsolutePosition", "BOF", "Bookmarkable", "Bookmark", "EditMode" _ , "EOF", "Filter", "LastModified", "Name", "ObjectType" , "RecordCount" _ + ) End Function ' _PropertiesList diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Trace.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Trace.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Trace.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Trace.xba 2017-05-03 16:46:29.000000000 +0000 @@ -182,7 +182,7 @@ Case psTraceLevel = "" : psTraceLevel = "ERROR" Case Utils._InList(UCase(psTraceLevel), Array( _ TRACEDEBUG, TRACEINFO, TRACEWARNING, TRACEERRORS, TRACEFATAL, TRACEABORT _ - ) + )) Case Else : Goto Exit_Sub End Select _A2B_.MinimalTraceLevel = _TraceLevel(psTraceLevel) diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Utils.xba libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Utils.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/access2base/Utils.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/access2base/Utils.xba 2017-05-03 16:46:29.000000000 +0000 @@ -831,7 +831,7 @@ Dim sName As String If InStr(psName, ".") > 0 Then - sName = Join(Split(psName, cstDot), cstSquareClose & cstDot & cstSquareOpen + sName = Join(Split(psName, cstDot), cstSquareClose & cstDot & cstSquareOpen) _Surround = cstSquareOpen & sName & cstSquareClose ElseIf InStr(psName, " ") > 0 Then _Surround = cstSquareOpen & psName & cstSquareClose diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/depot/Currency.xba libreoffice-l10n-5.3.3~rc2/wizards/source/depot/Currency.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/depot/Currency.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/depot/Currency.xba 2017-05-03 16:46:29.000000000 +0000 @@ -89,7 +89,7 @@ End If sCurStockIDLabel = sMarket(Index,5) sCurExtension = sMarket(Index,8) - iValueCol = Val(sMarket(Index,10) + iValueCol = Val(sMarket(Index,10)) If Instr(sCurExtension,";") <> 0 Then ' Take the german extension as the stock place is Frankfurt sCurExtension = "407" @@ -192,4 +192,4 @@ Dim oFormatofObject as Object oFormatofObject = oDocFormats.getByKey(oStyle.NumberFormat) CheckFormatType = INT(oFormatOfObject.Type) AND com.sun.star.util.NumberFormat.CURRENCY -End Function \ No newline at end of file +End Function diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/depot/Internet.xba libreoffice-l10n-5.3.3~rc2/wizards/source/depot/Internet.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/depot/Internet.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/depot/Internet.xba 2017-05-03 16:46:29.000000000 +0000 @@ -223,7 +223,7 @@ If iCellValue > 0 Then oCell.SetValue(oLinkSheet.GetCellByPosition(0,i).Value) Else - oCell.SetValue(StringToDate(oLinkSheet.GetCellByPosition(0,i).String) + oCell.SetValue(StringToDate(oLinkSheet.GetCellByPosition(0,i).String)) End If oCell = oSheet.GetCellbyPosition(SBVALUECOLUMN,iCurRow) oCell.SetValue(oLinkSheet.GetCellByPosition(4,i).Value) @@ -353,4 +353,4 @@ oDateCell.Annotation.SetString(NoteText) End If End Sub - \ No newline at end of file + diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/DBMeta.xba libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/DBMeta.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/DBMeta.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/DBMeta.xba 2017-05-03 16:46:29.000000000 +0000 @@ -305,8 +305,8 @@ Dim MaxIndex as Integer Dim i as Integer Dim a as Integer - MaxTableIndex = Ubound(TableNames() - MaxQueryIndex = Ubound(QueryNames() + MaxTableIndex = Ubound(TableNames()) + MaxQueryIndex = Ubound(QueryNames()) MaxIndex = MaxTableIndex + MaxQueryIndex + 1 If MaxIndex > -1 Then Dim LocCommandTypes(MaxIndex) as Integer @@ -344,4 +344,4 @@ AssignFieldLength() = FieldLength End If End Function - \ No newline at end of file + diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/FormWizard.xba libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/FormWizard.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/FormWizard.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/FormWizard.xba 2017-05-03 16:46:29.000000000 +0000 @@ -153,11 +153,11 @@ DlgFormDB.GetControl("lstTables").SelectItem(sContent, True) Else If CommandType = com.sun.star.sdb.CommandType.QUERY Then - SelIndex = IndexInArray(sContent, QueryNames() + SelIndex = IndexInArray(sContent, QueryNames()) DlgFormDB.GetControl("lstTables").SelectItemPos(SelIndex, True) ElseIf CommandType = com.sun.star.sdb.CommandType.TABLE Then - SelIndex = IndexInArray(sContent, TableNames() - DlgFormDB.GetControl("lstTables").SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True) + SelIndex = IndexInArray(sContent, TableNames()) + DlgFormDB.GetControl("lstTables").SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True)) End If End If CurCommandType = CommandType diff -Nru libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/Language.xba libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/Language.xba --- libreoffice-l10n-5.3.2~rc2/wizards/source/formwizard/Language.xba 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/wizards/source/formwizard/Language.xba 2017-05-03 16:46:29.000000000 +0000 @@ -64,7 +64,7 @@ sMsgErrTitleSuggestedExist = GetResText(RID_COMMON + 10) sMsgErrTitleAsTableExist = GetResText(RID_COMMON + 10) sMsgErrTitleSyntaxError = GetResText(RID_COMMON + 11) - sMsgNoConnection = GetResText(RID_COMMON + 14 + sMsgNoConnection = GetResText(RID_COMMON + 14) sMsgProgressText = GetResText(RID_FORM + 2) sMsgCreatedForm = GetResText(RID_FORM + 26) sMsgErrNameToLong = GetResText (RID_FORM + 27) @@ -129,12 +129,12 @@ .optAlign2.Label = GetResText(RID_FORM + 34) .optAlign0.State = 1 - //FIXME: Remove this unused FNameAddOn through the file + REM//FIXME: Remove this unused FNameAddOn through the file FNameAddOn = "" IDArray = Array(36, 37, 40, 38, 39) For i = 1 To 5 - ButtonHelpText = GetResText(RID_FORM + IDArray(i-1) + ButtonHelpText = GetResText(RID_FORM + IDArray(i-1)) cmdButton = DlgFormDB.getControl("cmdArrange" & i) cmdButton.Model.ImageURL = FormPath & "Arrange_" & i & FNameAddOn & ".gif" cmdButton.Model.HelpText = ButtonHelpText @@ -156,10 +156,10 @@ ' .cmdArrange5.HelpText = GetResText(RID_FORM + 39) sWriterFilterName = GetResText(RID_FORM + 70) End With - DlgFormDB.GetControl("cmdMoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 39) - DlgFormDB.GetControl("cmdRemoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 40) - DlgFormDB.GetControl("cmdMoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 41) - DlgFormDB.GetControl("cmdRemoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 42) + DlgFormDB.GetControl("cmdMoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 39)) + DlgFormDB.GetControl("cmdRemoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 40)) + DlgFormDB.GetControl("cmdMoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 41)) + DlgFormDB.GetControl("cmdRemoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 42)) DlgFormDB.getControl("lstFields").getPeer().setProperty("AccessibleName", DeleteStr(slblFields, "~")) DlgFormDB.getControl("lstSelFields").getPeer().setProperty("AccessibleName", DeleteStr(slblSelFields, "~")) diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -620,9 +620,7 @@ } if (nIntValue) // If auto spacing is set, then only store set value in InteropGrabBag { - if (m_pImpl->GetTopContext()->isSet(PROP_NUMBERING_RULES)) - // Numbering is set -> auto space is 0. - default_spacing = 0; + m_pImpl->SetParaAutoBefore(true); m_pImpl->GetTopContext()->Insert( PROP_PARA_TOP_MARGIN, uno::makeAny( ConversionHelper::convertTwipToMM100(default_spacing) ) ); } else @@ -645,9 +643,6 @@ } if (nIntValue) // If auto spacing is set, then only store set value in InteropGrabBag { - if (m_pImpl->GetTopContext()->isSet(PROP_NUMBERING_RULES)) - // Numbering is set -> auto space is 0. - default_spacing = 0; m_pImpl->GetTopContext()->Insert( PROP_PARA_BOTTOM_MARGIN, uno::makeAny( ConversionHelper::convertTwipToMM100(default_spacing) ) ); } else diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -242,7 +242,8 @@ m_bFrameBtLr(false), m_bIsSplitPara(false), m_vTextFramesForChaining(), - m_bParaHadField(false) + m_bParaHadField(false), + m_bParaAutoBefore(false) { m_aBaseUrl = rMediaDesc.getUnpackedValueOrDefault( @@ -1169,7 +1170,60 @@ appendTextPortion(sMarker, pEmpty); } + // Check if top / bottom margin has to be updated, now that we know the numbering status of both the previous and + // the current text node. + auto itNumberingRules = std::find_if(aProperties.begin(), aProperties.end(), [](const beans::PropertyValue& rValue) + { + return rValue.Name == "NumberingRules"; + }); + if (itNumberingRules != aProperties.end()) + { + // This textnode has numbering. Look up the numbering style name of the current and previous paragraph. + OUString aCurrentNumberingRuleName; + uno::Reference xCurrentNumberingRules(itNumberingRules->Value, uno::UNO_QUERY); + if (xCurrentNumberingRules.is()) + aCurrentNumberingRuleName = xCurrentNumberingRules->getName(); + OUString aPreviousNumberingRuleName; + if (m_xPreviousParagraph.is()) + { + uno::Reference xPreviousNumberingRules(m_xPreviousParagraph->getPropertyValue("NumberingRules"), uno::UNO_QUERY); + if (xPreviousNumberingRules.is()) + aPreviousNumberingRuleName = xPreviousNumberingRules->getName(); + } + + if (!aPreviousNumberingRuleName.isEmpty() && aCurrentNumberingRuleName == aPreviousNumberingRuleName) + { + // There was a previous textnode and it had the same numbering. + if (m_bParaAutoBefore) + { + // This before spacing is set to auto, set before space to 0. + auto itParaTopMargin = std::find_if(aProperties.begin(), aProperties.end(), [](const beans::PropertyValue& rValue) + { + return rValue.Name == "ParaTopMargin"; + }); + if (itParaTopMargin != aProperties.end()) + itParaTopMargin->Value <<= static_cast(0); + else + aProperties.push_back(comphelper::makePropertyValue("ParaTopMargin", static_cast(0))); + } + uno::Sequence aPrevPropertiesSeq; + m_xPreviousParagraph->getPropertyValue("ParaInteropGrabBag") >>= aPrevPropertiesSeq; + auto aPrevProperties = comphelper::sequenceToContainer< std::vector >(aPrevPropertiesSeq); + auto itPrevParaAutoAfter = std::find_if(aPrevProperties.begin(), aPrevProperties.end(), [](const beans::PropertyValue& rValue) + { + return rValue.Name == "ParaBottomMarginAfterAutoSpacing"; + }); + bool bPrevParaAutoAfter = itPrevParaAutoAfter != aPrevProperties.end(); + if (bPrevParaAutoAfter) + { + // Previous after spacing is set to auto, set previous after space to 0. + m_xPreviousParagraph->setPropertyValue("ParaBottomMargin", uno::makeAny(static_cast(0))); + } + } + } + xTextRange = xTextAppend->finishParagraph( comphelper::containerToSequence(aProperties) ); + m_xPreviousParagraph.set(xTextRange, uno::UNO_QUERY); if (xCursor.is()) { @@ -1225,6 +1279,7 @@ SetIsOutsideAParagraph(true); m_bParaHadField = false; + m_bParaAutoBefore = false; #ifdef DEBUG_WRITERFILTER TagLogger::getInstance().endElement(); #endif @@ -4346,31 +4401,31 @@ uno::Sequence aValues ; aProperty >>= aValues; beans::PropertyValue propertyVal; - bool bTitleFound = false; - int i=0; - for (; i < aValues.getLength(); i++) + sal_Int32 nTitleFoundIndex = -1; + for (sal_Int32 i = 0; i < aValues.getLength(); ++i) { propertyVal = aValues[i]; - if(propertyVal.Name == "Title") + if (propertyVal.Name == "Title") { - bTitleFound = true; + nTitleFoundIndex = i; break; } } - if(bTitleFound) + if (nTitleFoundIndex != -1) { OUString titleStr; uno::Any aValue(propertyVal.Value); aValue >>= titleStr; titleStr = titleStr + rResult; propertyVal.Value = uno::makeAny(titleStr); - aValues[i] = propertyVal; + aValues[nTitleFoundIndex] = propertyVal; } else { + aValues.realloc(aValues.getLength() + 1); propertyVal.Name = "Title"; propertyVal.Value = uno::makeAny(rResult); - aValues[i] = propertyVal; + aValues[aValues.getLength() - 1] = propertyVal; } xFieldProperties->setPropertyValue("Fields", uno::makeAny(aValues)); diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -874,11 +874,16 @@ bool IsDiscardHeaderFooter(); + void SetParaAutoBefore(bool bParaAutoBefore) { m_bParaAutoBefore = bParaAutoBefore; } + private: void PushPageHeaderFooter(bool bHeader, SectionPropertyMap::PageType eType); std::vector > m_vTextFramesForChaining ; /// Current paragraph had at least one field in it. bool m_bParaHadField; + css::uno::Reference m_xPreviousParagraph; + /// Current paragraph has automatic before spacing. + bool m_bParaAutoBefore; }; } //namespace dmapper diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -875,8 +875,12 @@ bool lcl_hideMarks(PropertyMapVector1& rCellProperties) { for (PropertyMapPtr & p : rCellProperties) - if (!p->isSet(PROP_CELL_HIDE_MARK)) + { + // if anything is vertically merged, the row must not be set to fixed + // as Writer's layout doesn't handle that well + if (!p->isSet(PROP_CELL_HIDE_MARK) || p->isSet(PROP_VERTICAL_MERGE)) return false; + } return true; } diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1116,8 +1116,10 @@ if (!bSkipped) { // note: apparently \'0d\'0a is interpreted as 2 breaks, not 1 - if (m_aStates.top().eDestination != Destination::DOCCOMM - && (ch == '\r' || ch == '\n')) + if ((ch == '\r' || ch == '\n') + && m_aStates.top().eDestination != Destination::DOCCOMM + && m_aStates.top().eDestination != Destination::LEVELNUMBERS + && m_aStates.top().eDestination != Destination::LEVELTEXT) { checkUnicode(/*bUnicode =*/ false, /*bHex =*/ true); dispatchSymbol(RTF_PAR); diff -Nru libreoffice-l10n-5.3.2~rc2/writerfilter/source/rtftok/rtfsprm.cxx libreoffice-l10n-5.3.3~rc2/writerfilter/source/rtftok/rtfsprm.cxx --- libreoffice-l10n-5.3.2~rc2/writerfilter/source/rtftok/rtfsprm.cxx 2017-03-29 20:32:17.000000000 +0000 +++ libreoffice-l10n-5.3.3~rc2/writerfilter/source/rtftok/rtfsprm.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -153,6 +153,23 @@ } } +/// Is it problematic to deduplicate this SPRM? +static bool isSPRMDeduplicateBlacklist(Id nId) +{ + switch (nId) + { + case NS_ooxml::LN_CT_TabStop_val: + case NS_ooxml::LN_CT_TabStop_leader: + case NS_ooxml::LN_CT_TabStop_pos: + // See the NS_ooxml::LN_CT_PPrBase_tabs handler in DomainMapper, + // deduplication is explicitly not wanted for these tokens. + return true; + + default: + return false; + } +} + /// Does the clone / deduplication of a single sprm. static void cloneAndDeduplicateSprm(std::pair& rSprm, RTFSprms& ret) { @@ -161,7 +178,8 @@ { if (rSprm.second->equals(*pValue)) { - ret.erase(rSprm.first); // duplicate to style + if (!isSPRMDeduplicateBlacklist(rSprm.first)) + ret.erase(rSprm.first); // duplicate to style } else if (!rSprm.second->getSprms().empty() || !rSprm.second->getAttributes().empty()) {