diff -Nru libreoffice-l10n-6.1.4/basic/source/sbx/sbxarray.cxx libreoffice-l10n-6.1.5~rc2/basic/source/sbx/sbxarray.cxx --- libreoffice-l10n-6.1.4/basic/source/sbx/sbxarray.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/basic/source/sbx/sbxarray.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -198,10 +198,14 @@ if( eType != SbxOBJECT || pVar->GetClass() != SbxClassType::Object ) pVar->Convert( eType ); SbxVariableRef& rRef = GetRef( nIdx ); + // tdf#122250. It is possible that I hold the last reference to myself, so check, otherwise I might + // call SetFlag on myself after I have died. + bool removingMyself = rRef.get() && rRef->GetParameters() == this && GetRefCount() == 1; if(rRef.get() != pVar ) { rRef = pVar; - SetFlag( SbxFlagBits::Modified ); + if (!removingMyself) + SetFlag( SbxFlagBits::Modified ); } } } diff -Nru libreoffice-l10n-6.1.4/bin/lo-xlate-lang libreoffice-l10n-6.1.5~rc2/bin/lo-xlate-lang --- libreoffice-l10n-6.1.4/bin/lo-xlate-lang 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/bin/lo-xlate-lang 2019-01-30 17:56:45.000000000 +0000 @@ -111,7 +111,7 @@ # keep third column names here with openoffice-dir/share/*// __DATA__ -:be:belarussian +:be:belarusian :bg:bulgarian :bn:bengali :bs:bosnian diff -Nru libreoffice-l10n-6.1.4/chart2/source/view/axes/DateHelper.cxx libreoffice-l10n-6.1.5~rc2/chart2/source/view/axes/DateHelper.cxx --- libreoffice-l10n-6.1.4/chart2/source/view/axes/DateHelper.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/chart2/source/view/axes/DateHelper.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -69,6 +69,9 @@ double DateHelper::RasterizeDateValue( double fValue, const Date& rNullDate, long TimeResolution ) { + if (rtl::math::isNan(fValue)) + return fValue; + Date aDate(rNullDate); aDate.AddDays(::rtl::math::approxFloor(fValue)); switch(TimeResolution) { diff -Nru libreoffice-l10n-6.1.4/chart2/source/view/charttypes/AreaChart.cxx libreoffice-l10n-6.1.5~rc2/chart2/source/view/charttypes/AreaChart.cxx --- libreoffice-l10n-6.1.4/chart2/source/view/charttypes/AreaChart.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/chart2/source/view/charttypes/AreaChart.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -728,7 +728,12 @@ //collect data point information (logic coordinates, style ): double fLogicX = pSeries->getXValue(nIndex); if (bDateCategory) + { + if (rtl::math::isNan(fLogicX)) + continue; + fLogicX = DateHelper::RasterizeDateValue( fLogicX, m_aNullDate, m_nTimeResolution ); + } double fLogicY = pSeries->getYValue(nIndex); if( m_nDimension==3 && m_bArea && rXSlot.m_aSeriesVector.size()!=1 ) diff -Nru libreoffice-l10n-6.1.4/chart2/source/view/charttypes/VSeriesPlotter.cxx libreoffice-l10n-6.1.5~rc2/chart2/source/view/charttypes/VSeriesPlotter.cxx --- libreoffice-l10n-6.1.4/chart2/source/view/charttypes/VSeriesPlotter.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/chart2/source/view/charttypes/VSeriesPlotter.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1460,10 +1460,17 @@ if( !rDateCategories.empty() ) { std::vector< double >::const_iterator aIt = rDateCategories.begin(), aEnd = rDateCategories.end(); + while (rtl::math::isNan(*aIt) && aIt != aEnd) + { + ++aIt; + } Date aPrevious(aNullDate); aPrevious.AddDays(rtl::math::approxFloor(*aIt)); ++aIt; for(;aIt!=aEnd;++aIt) { + if (rtl::math::isNan(*aIt)) + continue; + Date aCurrent(aNullDate); aCurrent.AddDays(rtl::math::approxFloor(*aIt)); if( nRet == css::chart::TimeUnit::YEAR ) { diff -Nru libreoffice-l10n-6.1.4/configure.ac libreoffice-l10n-6.1.5~rc2/configure.ac --- libreoffice-l10n-6.1.4/configure.ac 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/configure.ac 2019-01-30 17:56:45.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],[6.1.4.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[6.1.5.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) diff -Nru libreoffice-l10n-6.1.4/connectivity/source/drivers/firebird/PreparedStatement.cxx libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/firebird/PreparedStatement.cxx --- libreoffice-l10n-6.1.4/connectivity/source/drivers/firebird/PreparedStatement.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/firebird/PreparedStatement.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -207,7 +207,7 @@ { str = str.copy(0, max_varchar_len); } - const short nLength = str.getLength(); + const auto nLength = str.getLength(); memcpy(pVar->sqldata, &nLength, 2); // Actual data memcpy(pVar->sqldata + 2, str.getStr(), str.getLength()); @@ -841,7 +841,7 @@ { xBytesCopy.realloc( nMaxSize ); } - const short nSize = xBytesCopy.getLength(); + const auto nSize = xBytesCopy.getLength(); // 8000 corresponds to value from lcl_addDefaultParameters // in dbaccess/source/filter/hsqldb/createparser.cxx if (nSize > 8000) diff -Nru libreoffice-l10n-6.1.4/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx --- libreoffice-l10n-6.1.4/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -741,6 +741,10 @@ } sal_Bool PreparedStatement::getMoreResults( ) { + Reference< XCloseable > lastResultSet = m_lastResultset; + if( lastResultSet.is() ) + lastResultSet->close(); + m_multipleResultUpdateCount = -1; return false; } diff -Nru libreoffice-l10n-6.1.4/connectivity/source/drivers/postgresql/pq_statement.cxx libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/postgresql/pq_statement.cxx --- libreoffice-l10n-6.1.4/connectivity/source/drivers/postgresql/pq_statement.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/connectivity/source/drivers/postgresql/pq_statement.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -939,6 +939,15 @@ sal_Bool Statement::getMoreResults( ) { + // The PostgreSQL C interface always returns a single result, + // so we will never have multiple ones. + // Implicitly close the open resultset (if any) as per spec, + // and setup to signal "no more result, neither as resultset, + // nor as update count". + Reference< XCloseable > lastResultSetHolder = m_lastResultset; + if( lastResultSetHolder.is() ) + lastResultSetHolder->close(); + m_multipleResultUpdateCount = -1; return false; } diff -Nru libreoffice-l10n-6.1.4/cui/source/customize/cfg.cxx libreoffice-l10n-6.1.5~rc2/cui/source/customize/cfg.cxx --- libreoffice-l10n-6.1.4/cui/source/customize/cfg.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/customize/cfg.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1600,8 +1600,9 @@ SvTreeListEntry* pTarget, bool bFront, bool bAllowDuplicates ) { OUString aURL = GetScriptURL(); + SvxConfigEntry* pParent = GetTopLevelSelection(); - if ( aURL.isEmpty() ) + if ( aURL.isEmpty() || pParent == nullptr ) { return nullptr; } @@ -1624,8 +1625,6 @@ pNewEntryData->SetName( GetSelectedDisplayName() ); // check that this function is not already in the menu - SvxConfigEntry* pParent = GetTopLevelSelection(); - if ( !bAllowDuplicates ) { for (auto const& entry : *pParent->GetEntries()) @@ -1649,8 +1648,13 @@ SvTreeListEntry* pTarget, bool bFront ) { + SvxConfigEntry* pTopLevelSelection = GetTopLevelSelection(); + + if (pTopLevelSelection == nullptr) + return nullptr; + // Grab the entries list for the currently selected menu - SvxEntries* pEntries = GetTopLevelSelection()->GetEntries(); + SvxEntries* pEntries = pTopLevelSelection->GetEntries(); SvTreeListEntry* pNewEntry = nullptr; SvTreeListEntry* pCurEntry = diff -Nru libreoffice-l10n-6.1.4/cui/source/customize/SvxMenuConfigPage.cxx libreoffice-l10n-6.1.5~rc2/cui/source/customize/SvxMenuConfigPage.cxx --- libreoffice-l10n-6.1.4/cui/source/customize/SvxMenuConfigPage.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/customize/SvxMenuConfigPage.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -500,6 +500,12 @@ { SvxConfigEntry* pMenuData = GetTopLevelSelection(); + if (pMenuData == nullptr) + { + SAL_WARN("cui.customize", "RHB top level selection is null. A menu must be selected to reset!"); + return; + } + std::unique_ptr xQueryBox(Application::CreateMessageDialog(GetFrameWeld(), VclMessageType::Question, VclButtonsType::YesNo, CuiResId(RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU))); diff -Nru libreoffice-l10n-6.1.4/cui/source/customize/SvxToolbarConfigPage.cxx libreoffice-l10n-6.1.5~rc2/cui/source/customize/SvxToolbarConfigPage.cxx --- libreoffice-l10n-6.1.4/cui/source/customize/SvxToolbarConfigPage.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/customize/SvxToolbarConfigPage.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -515,9 +515,14 @@ // get currently selected toolbar SvxConfigEntry* pToolbar = GetTopLevelSelection(); - OString sIdent = pButton->GetCurItemIdent(); + if (sIdent.isEmpty() || pToolbar == nullptr) + { + SAL_WARN("cui.customize", "No toolbar selected, or empty sIdent!"); + return; + } + if (sIdent == "renameItem") { SvTreeListEntry* pActEntry = m_pContentsListBox->GetCurEntry(); @@ -856,10 +861,18 @@ void SvxToolbarConfigPage::AddFunction( SvTreeListEntry* pTarget, bool bFront ) { + SvxConfigEntry* pToolbar = GetTopLevelSelection(); + + if (pToolbar == nullptr) + return; + // Add the command to the contents listbox of the selected toolbar SvTreeListEntry* pNewLBEntry = SvxConfigPage::AddFunction( pTarget, bFront, true/*bAllowDuplicates*/ ); + if (pNewLBEntry == nullptr) + return; + SvxConfigEntry* pEntry = static_cast(pNewLBEntry->GetUserData()); if ( pEntry->IsBinding() ) @@ -878,8 +891,6 @@ // TODO: Figure out a way to show the changes on the toolbar, but revert if // the dialog is closed by pressing "Cancel" // get currently selected toolbar and apply change - SvxConfigEntry* pToolbar = GetTopLevelSelection(); - if ( pToolbar != nullptr ) { static_cast( GetSaveInData() )->ApplyToolbar( pToolbar ); diff -Nru libreoffice-l10n-6.1.4/cui/source/options/optgdlg.cxx libreoffice-l10n-6.1.5~rc2/cui/source/options/optgdlg.cxx --- libreoffice-l10n-6.1.4/cui/source/options/optgdlg.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/options/optgdlg.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -521,7 +521,7 @@ bool CanvasSettings::IsHardwareAccelerationAvailable() const { #if HAVE_FEATURE_OPENGL - if( OpenGLWrapper::isVCLOpenGLEnabled() ) + if (OpenGLWrapper::isVCLOpenGLEnabled() && Application::GetToolkitName() != "gtk3") mbHWAccelAvailable = false; else diff -Nru libreoffice-l10n-6.1.4/cui/source/options/optjava.cxx libreoffice-l10n-6.1.5~rc2/cui/source/options/optjava.cxx --- libreoffice-l10n-6.1.4/cui/source/options/optjava.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/options/optjava.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1012,9 +1012,9 @@ m_xPathList->append("", sPath, SvFileInformationManager::GetImageId(aURL)); } while (nIdx>=0); + // select first entry + m_xPathList->select(0); } - // select first entry - m_xPathList->select(0); SelectHdl_Impl(*m_xPathList); } diff -Nru libreoffice-l10n-6.1.4/cui/source/tabpages/numpages.cxx libreoffice-l10n-6.1.5~rc2/cui/source/tabpages/numpages.cxx --- libreoffice-l10n-6.1.4/cui/source/tabpages/numpages.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/tabpages/numpages.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1998,12 +1998,14 @@ GalleryExplorer::BeginLocking(GALLERY_THEME_BULLETS); Graphic aGraphic; + OUString sGrfName; size_t i = 0; for (auto & grfName : aGrfNames) { - INetURLObject aObj(grfName); + sGrfName = grfName; + INetURLObject aObj(sGrfName); if(aObj.GetProtocol() == INetProtocol::File) - grfName = aObj.PathToFileName(); + sGrfName = aObj.PathToFileName(); if(GalleryExplorer::GetGraphicObj( GALLERY_THEME_BULLETS, i, &aGraphic)) { @@ -2020,13 +2022,13 @@ } Image aImage(aBitmap); - pPopup->InsertItem(MN_GALLERY_ENTRY + i, grfName, aImage ); + pPopup->InsertItem(MN_GALLERY_ENTRY + i, sGrfName, aImage ); } else { Image aImage; pPopup->InsertItem( - MN_GALLERY_ENTRY + i, grfName, aImage ); + MN_GALLERY_ENTRY + i, sGrfName, aImage ); } ++i; } diff -Nru libreoffice-l10n-6.1.4/cui/source/tabpages/paragrph.cxx libreoffice-l10n-6.1.5~rc2/cui/source/tabpages/paragrph.cxx --- libreoffice-l10n-6.1.4/cui/source/tabpages/paragrph.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/cui/source/tabpages/paragrph.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -590,9 +590,7 @@ // because for Impress the min of first-line indent depends on value of // left-indent! ELRLoseFocus(); - m_xAutoCB->save_state(); - m_xContextualCB->save_state(); - m_xLineDist->save_value(); + ChangesApplied(); } void SvxStdParagraphTabPage::ChangesApplied() @@ -869,12 +867,6 @@ m_xRightIndent->connect_value_changed(aLink2); Link aLink = LINK(this, SvxStdParagraphTabPage, ModifyHdl_Impl); -#if 0 - //TO DO - m_xFLineIndent->SetModifyHdl( aLink ); - m_xLeftIndent->SetModifyHdl( aLink ); - m_xRightIndent->SetModifyHdl( aLink ); -#endif m_xTopDist->connect_value_changed(aLink); m_xBottomDist->connect_value_changed(aLink); @@ -943,7 +935,7 @@ nMinFixDist = nMinTwip; } -void SvxStdParagraphTabPage::PageCreated(const SfxAllItemSet& aSet) +void SvxStdParagraphTabPage::PageCreated(const SfxAllItemSet& aSet) { /* different bit represent call to different method of SvxStdParagraphTabPage diff -Nru libreoffice-l10n-6.1.4/dbaccess/source/filter/hsqldb/hsqlimport.cxx libreoffice-l10n-6.1.5~rc2/dbaccess/source/filter/hsqldb/hsqlimport.cxx --- libreoffice-l10n-6.1.4/dbaccess/source/filter/hsqldb/hsqlimport.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/dbaccess/source/filter/hsqldb/hsqlimport.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -338,11 +338,21 @@ // data for (const auto& tableIndex : parser.getTableIndexes()) { - std::vector aColTypes = parser.getTableColumnTypes(tableIndex.first); try { + std::vector aColTypes = parser.getTableColumnTypes(tableIndex.first); parseTableRows(tableIndex.second, aColTypes, tableIndex.first); } + catch (const std::out_of_range& e) + { + std::unique_ptr ex(new SQLException); + const char* msg = e.what(); + ex->SQLState = OUString(msg, strlen(msg), RTL_TEXTENCODING_ASCII_US); + // chain errors and keep going + if (pException) + ex->NextException <<= *pException; + pException = std::move(ex); + } catch (SQLException& ex) { if (pException) diff -Nru libreoffice-l10n-6.1.4/dbaccess/source/ui/control/dbtreelistbox.cxx libreoffice-l10n-6.1.5~rc2/dbaccess/source/ui/control/dbtreelistbox.cxx --- libreoffice-l10n-6.1.4/dbaccess/source/ui/control/dbtreelistbox.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/dbaccess/source/ui/control/dbtreelistbox.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -58,7 +58,8 @@ :SvTreeListBox(pParent,nWinStyle) ,m_pDragedEntry(nullptr) ,m_pActionListener(nullptr) - ,m_pContextMenuProvider( nullptr ) + ,m_pContextMenuProvider(nullptr) + ,m_pResetEvent(nullptr) { init(); } @@ -88,6 +89,11 @@ void DBTreeListBox::dispose() { + if (m_pResetEvent) + { + RemoveUserEvent(m_pResetEvent); + m_pResetEvent = nullptr; + } implStopSelectionTimer(); SvTreeListBox::dispose(); } @@ -118,11 +124,6 @@ return pEntry; } -void DBTreeListBox::EnableExpandHandler(SvTreeListEntry* _pEntry) -{ - LINK(this, DBTreeListBox, OnResetEntry).Call(_pEntry); -} - void DBTreeListBox::RequestingChildren( SvTreeListEntry* pParent ) { if (m_aPreExpandHandler.IsSet() && !m_aPreExpandHandler.Call(pParent)) @@ -130,7 +131,7 @@ // an error occurred. The method calling us will reset the entry flags, so it can't be expanded again. // But we want that the user may do a second try (i.e. because he mistypes a password in this try), so // we have to reset these flags controlling the expand ability - PostUserEvent(LINK(this, DBTreeListBox, OnResetEntry), pParent, true); + m_pResetEvent = PostUserEvent(LINK(this, DBTreeListBox, OnResetEntryHdl), pParent, true); } } @@ -176,15 +177,20 @@ SvTreeListBox::MouseButtonDown(rMEvt); } -IMPL_LINK(DBTreeListBox, OnResetEntry, void*, p, void) +void DBTreeListBox::EnableExpandHandler(SvTreeListEntry* pEntry) { - SvTreeListEntry* pEntry = static_cast(p); // set the flag which allows if the entry can be expanded pEntry->SetFlags( (pEntry->GetFlags() & ~SvTLEntryFlags(SvTLEntryFlags::NO_NODEBMP | SvTLEntryFlags::HAD_CHILDREN)) | SvTLEntryFlags::CHILDREN_ON_DEMAND ); // redraw the entry GetModel()->InvalidateEntry( pEntry ); } +IMPL_LINK(DBTreeListBox, OnResetEntryHdl, void*, p, void) +{ + m_pResetEvent = nullptr; + EnableExpandHandler(static_cast(p)); +} + void DBTreeListBox::ModelHasEntryInvalidated( SvTreeListEntry* _pEntry ) { SvTreeListBox::ModelHasEntryInvalidated( _pEntry ); diff -Nru libreoffice-l10n-6.1.4/dbaccess/source/ui/inc/dbtreelistbox.hxx libreoffice-l10n-6.1.5~rc2/dbaccess/source/ui/inc/dbtreelistbox.hxx --- libreoffice-l10n-6.1.4/dbaccess/source/ui/inc/dbtreelistbox.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/dbaccess/source/ui/inc/dbtreelistbox.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -57,6 +57,7 @@ SvTreeListEntry* m_pDragedEntry; IControlActionListener* m_pActionListener; IContextMenuProvider* m_pContextMenuProvider; + ImplSVEvent* m_pResetEvent; css::uno::Reference m_xMenuController; Link m_aPreExpandHandler; // handler to be called before a node is expanded @@ -69,7 +70,7 @@ private: void init(); DECL_LINK( OnTimeOut, Timer*, void ); - DECL_LINK( OnResetEntry, void*, void ); + DECL_LINK( OnResetEntryHdl, void*, void ); DECL_LINK( ScrollUpHdl, LinkParamNone*, void ); DECL_LINK( ScrollDownHdl, LinkParamNone*, void ); DECL_LINK( MenuEventListener, VclMenuEvent&, void ); diff -Nru libreoffice-l10n-6.1.4/debian/changelog libreoffice-l10n-6.1.5~rc2/debian/changelog --- libreoffice-l10n-6.1.4/debian/changelog 2018-12-27 14:55:08.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/changelog 2019-02-14 20:19:05.000000000 +0000 @@ -1,4 +1,4 @@ -libreoffice-l10n (1:6.1.4-0ubuntu0.16.04.1~lo2) xenial; urgency=medium +libreoffice-l10n (1:6.1.5~rc2-0ubuntu0.16.04.1~lo3.2) xenial; urgency=medium * Backport from cosmic - Use internal libraries as needed @@ -8,7 +8,51 @@ - Disable firebird - Build kde4 backend instead of gtk3-kde5 - -- Rico Tzschichholz Thu, 27 Dec 2018 15:55:08 +0100 + -- Rico Tzschichholz Thu, 14 Feb 2019 21:19:05 +0100 + +libreoffice-l10n (1:6.1.4-0ubuntu0.18.10.1) cosmic; urgency=medium + + * New upstream release (LP: #1810739) + * debian/patches/apparmor-mesa.diff: removed, as this requires apparmor 2.13 + + -- Olivier Tilloy Wed, 09 Jan 2019 14:04:28 +0100 + +libreoffice-l10n (1:6.1.4-2) unstable; urgency=medium + + * debian/tests/smoketest: fix + * debian/rules: fix libcmis version check (and mysqlcppconn build-dep) + + -- Rene Engelhard Sun, 30 Dec 2018 13:12:57 +0000 + +libreoffice-l10n (1:6.1.4-1) unstable; urgency=medium + + * New upstream release + + * debian/patches/disableClassPathURLCheck.diff: add new upstream + configure check for this (from master) + + * debian/rules, debian/control.firebird.in: + - enable Firebird on BE archs + * debian/rules: + - fix running the odk/build-examples* tests on _all builds + - disable gdrive stuff. chromium isn't in buster anymore and gdrive didn't + work with chromiums id/secret anyway) (closes: #909152) + - build-depend on libmysqlcppconn >= 1.1.9-4 if building with libcmis 0.5.2 + (snapshots) since LO will pick up c++17 then and otherwise it'll break + - debian/tests/smoketest: skip test on big-endian architectures (see below) + + * merge from Ubuntu: + [ Evangelos Foutras ] + - poppler-fix-build-0-70.patch: fix build failure with poppler >= 0.70 + [ Olivier Tilloy ] + - debian/patches/poppler-dropped-gbool.patch: cherry-pick + upstream commit to fix build failure with poppler >= 0.71 + (see https://gerrit.libreoffice.org/#/c/63625/) + (closes: #915726) + - debian/tests/smoketest: revert previous change and skip the test + altogether on s390x, where unit tests are intentionally not built + + -- Rene Engelhard Sat, 15 Dec 2018 14:02:18 +0000 libreoffice-l10n (1:6.1.3-0ubuntu0.18.10.2) cosmic; urgency=medium @@ -23,9 +67,37 @@ -- Olivier Tilloy Thu, 29 Nov 2018 12:09:50 +0100 -libreoffice-l10n (1:6.1.3~rc2-1) UNRELEASED; urgency=medium +libreoffice-l10n (1:6.1.3-2) unstable; urgency=medium + + * debian/patches/apparmor-mesa.diff: #include mesa abstraction + (closes: #905437) + * debian/patches/disableClassPathURLCheck.diff: add workaround to + fix build with openjdks with S8195874 included - add + -Djdk.net.URLClassPath.disableClassPathURLCheck=true to JAVAIFLAGS; + see https://gerrit.libreoffice.org/#/c/63118/2 + + * debian/patches/use-mariadb-java-instead-of-mysql-java.diff: as name says; + use org.mariadb.jdbc.Driver instead of com.mysql.jdbc.Driver + * debian/control.in: + - Suggest libmariadb-java instead of libmysql-java. See #912916 for more + information. + * debian/patches/jdbc-driver-classpaths.diff: add org.mariadb.jdbc.Driver + classpath pointing to /usr/share/java/mariadb-java-client.jar + * debian/libreoffice-base.bug-script.in: add libmariadb-java + (closes: #913360, thanks Markus Koschany) + + * debian/libreoffice-base-drivers.NEWS: add NEWS about above change + * debian/libreoffice-base.{postrm,preinst}.in: remove manual + --package $DPKG_MAINTSCRIPT_PACKAGE, since dpkg-divert defaults to it + since 1.16.0 anyway if not specified (see #912140). + * debian/control.in: update -core versioned Breaks: to -kde5, not -kde, thanks + Julien Cristau + + -- Rene Engelhard Sat, 24 Nov 2018 10:59:44 +0100 + +libreoffice-l10n (1:6.1.3-1) unstable; urgency=medium - * New upstream release candidate + * New upstream release -- Rene Engelhard Mon, 29 Oct 2018 21:29:20 +0000 diff -Nru libreoffice-l10n-6.1.4/debian/config libreoffice-l10n-6.1.5~rc2/debian/config --- libreoffice-l10n-6.1.4/debian/config 2018-12-27 14:55:08.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/config 2019-02-14 20:19:05.000000000 +0000 @@ -1,5 +1,5 @@ -BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, flex (>= 2.3.35), fontforge-nox | fontforge, 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 (>= 4:7) [m68k], g++ (>= 4:7) [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 (>= 2.8), 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 , python3-lxml , debhelper (>= 10) , dpkg-dev (>= 1.18.2~) , locales [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , gdb [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fontconfig [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-liberation2 [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-crosextra-carlito [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-dejavu [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , pstoedit [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , imagemagick [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , ghostscript [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , hunspell-en-us [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , junit4 (>= 4.8.2-2) [amd64 arm64] , maven-repo-helper , java-common (>= 0.49) , default-jdk (>= 1:1.6) [!hppa !mips64 !s390 !sparc] , default-jdk (>= 1:1.7-48) [ia64] , default-jdk (>= 2:1.7-52.1) [kfreebsd-any] , default-jdk (>= 2:1.8-55) [sparc64] , ant (>= 1.7.0) [!hppa !mips64 !s390 !sparc], ant-optional (>= 1.7.0) [!hppa !mips64 !s390 !sparc] , libcommons-logging-java [!hppa !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-locale-dev (>= 1.58) , libboost-system-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-program-options-dev (>= 1.58), libboost-filesystem-dev (>= 1.58) , libclucene-dev (>= 2.3.3.4-4.1) , libmythes-dev (>= 2:1.2) , dh-apparmor , apparmor , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.3-6ubuntu1) , libgtk2.0-dev (>= 2.18.0) , libgtk-3-dev (>= 3.18.0), libglib2.0-dev (>= 2.38.0) , gobject-introspection (>= 1.32.0), libgirepository1.0-dev (>= 1.32) , libebook1.2-dev , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) [!hppa !mips64 !s390 !sparc], libarchive-zip-perl [!hppa !mips64 !s390 !sparc] , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [linux-any] , libavahi-client-dev , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libepoxy-dev (>= 1.2) , gnupg , gnupg-agent , libdconf-dev (>= 0.15.2) -CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:6.1.4-0ubuntu0.16.04.1~lo1' --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 --without-fonts --enable-build-opensymbol --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-mythes --with-system-icu --with-system-cairo --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --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 --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 --enable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-avahi --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache --with-parallelism=4 --disable-dependency-tracking +BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, flex (>= 2.3.35), fontforge-nox | fontforge, 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 (>= 4:7) [m68k], g++ (>= 4:7) [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 (>= 2.8), 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 , python3-lxml , debhelper (>= 10) , dpkg-dev (>= 1.18.2~) , locales [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , gdb [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fontconfig [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-liberation2 [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-crosextra-carlito [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-dejavu [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , pstoedit [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , imagemagick [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , ghostscript [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , hunspell-en-us [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , junit4 (>= 4.8.2-2) [amd64 arm64] , maven-repo-helper , java-common (>= 0.49) , default-jdk (>= 1:1.6) [!hppa !mips64 !s390 !sparc] , default-jdk (>= 1:1.7-48) [ia64] , default-jdk (>= 2:1.7-52.1) [kfreebsd-any] , default-jdk (>= 2:1.8-55) [sparc64] , ant (>= 1.7.0) [!hppa !mips64 !s390 !sparc], ant-optional (>= 1.7.0) [!hppa !mips64 !s390 !sparc] , libcommons-logging-java [!hppa !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-locale-dev (>= 1.58) , libboost-system-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-program-options-dev (>= 1.58), libboost-filesystem-dev (>= 1.58) , libclucene-dev (>= 2.3.3.4-4.1) , libmythes-dev (>= 2:1.2) , dh-apparmor , apparmor , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.9-4) , libgtk2.0-dev (>= 2.18.0) , libgtk-3-dev (>= 3.18.0), libglib2.0-dev (>= 2.38.0) , gobject-introspection (>= 1.32.0), libgirepository1.0-dev (>= 1.32) , libebook1.2-dev , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) [!hppa !mips64 !s390 !sparc], libarchive-zip-perl [!hppa !mips64 !s390 !sparc] , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [linux-any] , libavahi-client-dev , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libepoxy-dev (>= 1.2) , gnupg , gnupg-agent , libdconf-dev (>= 0.15.2) +CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:6.1.5~rc2-0ubuntu0.16.04.1~lo3' --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 --without-fonts --enable-build-opensymbol --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-mythes --with-system-icu --with-system-cairo --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --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 --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 --enable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-avahi --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache --with-parallelism=4 --disable-dependency-tracking 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 kmr-Latn kn ko 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 sr-Latn 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 kmr-Latn kn ko 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 sr-Latn 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 kmr-Latn kn ko 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 sr-Latn 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-6.1.4/debian/patches/disableClassPathURLCheck.diff libreoffice-l10n-6.1.5~rc2/debian/patches/disableClassPathURLCheck.diff --- libreoffice-l10n-6.1.4/debian/patches/disableClassPathURLCheck.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/patches/disableClassPathURLCheck.diff 2019-02-14 20:19:05.000000000 +0000 @@ -0,0 +1,92 @@ +--- a/configure.ac-old 2018-11-12 06:51:15.504128408 +0100 ++++ b/configure.ac 2018-11-12 06:52:32.427358015 +0100 +@@ -6898,6 +6898,7 @@ + + # set to limit VM usage for JunitTests + JAVAIFLAGS=-Xmx64M ++ JAVAIFLAGS="$JAVAIFLAGS -Djdk.net.URLClassPath.disableClassPathURLCheck=true" + # set to limit VM usage for javac + JAVAFLAGS=-J-Xmx128M + +From 905c107cde4a0a7059b1e11b5f23a0a59188cb0c Mon Sep 17 00:00:00 2001 +From: Jan-Marek Glogowski +Date: Thu, 6 Dec 2018 13:26:48 +0000 +Subject: tdf#121925 test for URLClassPath.ClassPathURLCheck + +Adds a configure test to check for the enabled ClassPathURLCheck. +Should be reverted, if our jars pass it. + +Change-Id: I040b41f329ccae21b92118fd58270682e50e95c1 +Reviewed-on: https://gerrit.libreoffice.org/64709 +Tested-by: Jenkins +Reviewed-by: Stephan Bergmann +--- + configure.ac | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 52 insertions(+) + +diff --git a/configure.ac b/configure.ac +index 4dc6274..97836e1 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -7308,6 +7308,58 @@ if test -n "$ENABLE_JAVA" -a -z "$JAVAINC"; then + fi + SOLARINC="$SOLARINC $JAVAINC" + ++if test "$ENABLE_JAVA" != "" -a "x" != "x$JAVACOMPILER"; then ++ url_check_unknown=0 ++ java_base="testurlcheck" ++ java_src="${java_base}.java" ++ java_cls="${java_base}.class" ++ cat > "${java_src}" <<_ACEOF ++[import jdk.internal.loader.URLClassPath; ++import java.lang.reflect.Field; ++import java.net.URL; ++ ++class ${java_base} ++{ ++ public static void main(String args[]) ++ { ++ try { ++ URLClassPath cp = new URLClassPath(new URL[0], null); ++ Field field = cp.getClass().getDeclaredField("DISABLE_CP_URL_CHECK"); ++ field.setAccessible(true); ++ System.out.println(field.get(cp).toString()); ++ } catch(Exception e) { ++ System.out.println("unknown"); ++ } ++ } ++}] ++_ACEOF ++ AC_MSG_CHECKING([if jdk.net.URLClassPath.ClassPathURLCheck is disabled]) ++ java_cmd="$JAVACOMPILER --add-exports java.base/jdk.internal.loader=ALL-UNNAMED ${java_src} 1>&2" ++ AC_TRY_EVAL(java_cmd) ++ if test $? = 0 -a -f "./${java_cls}"; then ++ java_res=`$JAVAINTERPRETER --add-opens java.base/jdk.internal.loader=ALL-UNNAMED ${java_base} 2>/dev/null` ++ if test $? = 0; then ++ case "${java_res}" in ++ true) AC_MSG_RESULT([yes]) ;; ++ false) ++ rm -f "./${java_src}" "./${java_cls}" ++ AC_MSG_ERROR([no - Java unit tests will break!]) ++ ;; ++ *) url_check_unknown=1 ;; ++ esac ++ else ++ url_check_unknown=1 ++ fi ++ else ++ url_check_unknown=1 ++ fi ++ if test $url_check_unknown -eq 1; then ++ AC_MSG_RESULT([unknown - assuming yes]) ++ add_warning "Unable to find the default value for jdk.net.URLClassPath.ClassPathURLCheck - java tests might fail!" ++ fi ++ rm -f "./${java_src}" "./${java_cls}" ++fi ++ + AC_SUBST(JAVACOMPILER) + AC_SUBST(JAVADOC) + AC_SUBST(JAVAINTERPRETER) +-- +cgit v1.1 + diff -Nru libreoffice-l10n-6.1.4/debian/patches/jdbc-driver-classpaths.diff libreoffice-l10n-6.1.5~rc2/debian/patches/jdbc-driver-classpaths.diff --- libreoffice-l10n-6.1.4/debian/patches/jdbc-driver-classpaths.diff 2018-12-27 14:48:32.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/patches/jdbc-driver-classpaths.diff 2019-02-14 20:19:05.000000000 +0000 @@ -11,12 +11,17 @@ diff --git a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu --- a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu +++ b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu -@@ -147,6 +147,25 @@ +@@ -147,6 +147,30 @@ + + ++ ++ ++ file:///usr/share/java/mariadb-java-client.jar ++ ++ + + + file:///usr/share/java/mysql.jar diff -Nru libreoffice-l10n-6.1.4/debian/patches/series libreoffice-l10n-6.1.5~rc2/debian/patches/series --- libreoffice-l10n-6.1.4/debian/patches/series 2018-12-27 14:55:08.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/patches/series 2019-02-14 20:19:05.000000000 +0000 @@ -37,6 +37,8 @@ apparmor-allow-java.security.diff apparmor-kde.diff fix-tests-openjdk11.patch +disableClassPathURLCheck.diff +use-mariadb-java-instead-of-mysql-java.diff #lp-753627-readd-updated-Ubuntu-brand-palette-colors.diff #integraltrans.diff hide-startcenter-desktop-file.patch diff -Nru libreoffice-l10n-6.1.4/debian/patches/use-mariadb-java-instead-of-mysql-java.diff libreoffice-l10n-6.1.5~rc2/debian/patches/use-mariadb-java-instead-of-mysql-java.diff --- libreoffice-l10n-6.1.4/debian/patches/use-mariadb-java-instead-of-mysql-java.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/debian/patches/use-mariadb-java-instead-of-mysql-java.diff 2019-02-14 20:19:05.000000000 +0000 @@ -0,0 +1,69 @@ +>From 1172166889764ae0e77488e5d173f33961b9859b Mon Sep 17 00:00:00 2001 +From: Markus Koschany +Date: Fri, 9 Nov 2018 23:06:15 +0100 +Subject: [PATCH] mariadb + +--- + connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java | 4 ++-- + .../mysql/org/openoffice/Office/DataAccess/Drivers.xcu | 2 +- + connectivity/source/drivers/mysql/YDriver.cxx | 4 ++-- + 3 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java b/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java +index a44f1b9d1..03a8293ef 100644 +--- a/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java ++++ b/connectivity/qa/complex/connectivity/JdbcLongVarCharTest.java +@@ -59,7 +59,7 @@ public class JdbcLongVarCharTest extends ComplexTestCase + + String url = "jdbc:mysql://localhost:3306/mysql?user=root"; + com.sun.star.beans.PropertyValue prop[] = new PropertyValue[1]; +- prop[0] = new PropertyValue("JavaDriverClass", 0, "com.mysql.jdbc.Driver", PropertyState.DIRECT_VALUE); ++ prop[0] = new PropertyValue("JavaDriverClass", 0, "org.mariadb.jdbc.Driver", PropertyState.DIRECT_VALUE); + + // get the remote office component context + XMultiServiceFactory xServiceManager = param.getMSF(); +@@ -117,4 +117,4 @@ public class JdbcLongVarCharTest extends ComplexTestCase + System.exit(0); + } + } +-} +\ No newline at end of file ++} +diff --git a/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu b/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu +index 77988448f..acd8bfdaf 100644 +--- a/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu ++++ b/connectivity/registry/mysql/org/openoffice/Office/DataAccess/Drivers.xcu +@@ -33,7 +33,7 @@ + + + +- com.mysql.jdbc.Driver ++ org.mariadb.jdbc.Driver + + + +diff --git a/connectivity/source/drivers/mysql/YDriver.cxx b/connectivity/source/drivers/mysql/YDriver.cxx +index 95094265e..c0ad7802e 100644 +--- a/connectivity/source/drivers/mysql/YDriver.cxx ++++ b/connectivity/source/drivers/mysql/YDriver.cxx +@@ -54,7 +54,7 @@ namespace connectivity + css::uno::Sequence const & info) + { + return comphelper::NamedValueCollection(info).getOrDefault( +- "JavaDriverClass", OUString("com.mysql.jdbc.Driver")); ++ "JavaDriverClass", OUString("org.mariadb.jdbc.Driver")); + } + } + +@@ -185,7 +185,7 @@ namespace connectivity + aProps.push_back( PropertyValue( + "JavaDriverClass" + ,0 +- ,makeAny(OUString("com.mysql.jdbc.Driver")) ++ ,makeAny(OUString("org.mariadb.jdbc.Driver")) + ,PropertyState_DIRECT_VALUE) ); + } + } +-- +2.19.1 + diff -Nru libreoffice-l10n-6.1.4/desktop/source/app/officeipcthread.cxx libreoffice-l10n-6.1.5~rc2/desktop/source/app/officeipcthread.cxx --- libreoffice-l10n-6.1.4/desktop/source/app/officeipcthread.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/desktop/source/app/officeipcthread.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1319,7 +1319,7 @@ osl::ClearableMutexGuard aGuard( GetMutex() ); // ensure that Processed flag (if exists) is signaled in any outcome - ConditionSetGuard(aRequest.pcProcessed); + ConditionSetGuard aSetGuard(aRequest.pcProcessed); static std::vector aDispatchList; diff -Nru libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_dialog2.cxx libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_dialog2.cxx --- libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_dialog2.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_dialog2.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -339,7 +339,6 @@ Dialog *pWindow) : m_xVCLWindow(pWindow) , m_nEventID(nullptr) - , m_nBusy(0) { m_xContext = xContext; } @@ -461,34 +460,6 @@ m_nEventID = Application::PostUserEvent( rLink, pCaller, true/*bReferenceLink*/ ); } -void DialogHelper::incBusy() -{ - ++m_nBusy; - // lock any toplevel windows from being closed until busy is over - // ensure any dialogs are reset before entering - vcl::Window *xTopWin = Application::GetFirstTopLevelWindow(); - while (xTopWin) - { - if (xTopWin != m_xVCLWindow) - xTopWin->IncModalCount(); - xTopWin = Application::GetNextTopLevelWindow(xTopWin); - } -} - -void DialogHelper::decBusy() -{ - --m_nBusy; - // unlock any toplevel windows from being closed until busy is over - // ensure any dialogs are reset before entering - vcl::Window *xTopWin = Application::GetFirstTopLevelWindow(); - while (xTopWin) - { - if (xTopWin != m_xVCLWindow) - xTopWin->DecModalCount(); - xTopWin = Application::GetNextTopLevelWindow(xTopWin); - } -} - // ExtMgrDialog ExtMgrDialog::ExtMgrDialog(vcl::Window *pParent, TheExtensionManager *pManager, Dialog::InitFlag eFlag) : ModelessDialog(pParent, "ExtensionManagerDialog", "desktop/ui/extensionmanager.ui", eFlag) diff -Nru libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_dialog2.hxx libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_dialog2.hxx --- libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_dialog2.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_dialog2.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -29,6 +29,7 @@ #include #include #include +#include #include #include @@ -47,6 +48,9 @@ #include #include +#include +#include + namespace dp_gui { @@ -60,7 +64,7 @@ css::uno::Reference< css::uno::XComponentContext > m_xContext; VclPtr m_xVCLWindow; ImplSVEvent * m_nEventID; - int m_nBusy; + TopLevelWindowLocker m_aBusy; public: DialogHelper( const css::uno::Reference< css::uno::XComponentContext > &, @@ -91,14 +95,13 @@ const char* pResID, bool &bHadWarning ); - void incBusy(); - void decBusy(); - bool isBusy() const { return m_nBusy > 0; } + void incBusy() { m_aBusy.incBusy(m_xVCLWindow); } + void decBusy() { m_aBusy.decBusy(); } + bool isBusy() const { return m_aBusy.isBusy(); } bool installExtensionWarn(const OUString &rExtensionURL); bool installForAllUsers(bool &bInstallForAll); }; - class ExtMgrDialog : public ModelessDialog, public DialogHelper { diff -Nru libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_theextmgr.cxx libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_theextmgr.cxx --- libreoffice-l10n-6.1.4/desktop/source/deployment/gui/dp_gui_theextmgr.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/desktop/source/deployment/gui/dp_gui_theextmgr.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -445,6 +445,7 @@ } else { + clearModified(); if ( m_pExtMgrDialog ) m_pExtMgrDialog->Close(); if ( m_pUpdReqDialog ) diff -Nru libreoffice-l10n-6.1.4/download.lst libreoffice-l10n-6.1.5~rc2/download.lst --- libreoffice-l10n-6.1.4/download.lst 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/download.lst 2019-01-30 17:56:45.000000000 +0000 @@ -29,8 +29,8 @@ export CPPUNIT_TARBALL := cppunit-1.14.0.tar.gz export CT2N_SHA256SUM := 71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3 export CT2N_TARBALL := 1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt -export CURL_SHA256SUM := eaa812e9a871ea10dbe8e1d3f8f12a64a8e3e62aeab18cb23742e2f1727458ae -export CURL_TARBALL := curl-7.61.1.tar.gz +export CURL_SHA256SUM := d483b89062832e211c887d7cf1b65c902d591b48c11fe7d174af781681580b41 +export CURL_TARBALL := curl-7.63.0.tar.gz export EBOOK_SHA256SUM := 7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz export EPOXY_SHA256SUM := 1d8668b0a259c709899e1c4bab62d756d9002d546ce4f59c9665e2fc5f001a64 @@ -134,8 +134,8 @@ export LANGTAGREG_TARBALL := language-subtag-registry-2018-04-23.tar.bz2 export LANGUAGETOOL_SHA256SUM := 48c87e41636783bba438b65fd895821e369ed139e1465fac654323ad93c5a82d export LANGUAGETOOL_TARBALL := b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 -export LCMS2_SHA256SUM := 66d02b229d2ea9474e62c2b6cd6720fde946155cd1d0d2bffdab829790a0fb22 -export LCMS2_TARBALL := lcms2-2.8.tar.gz +export LCMS2_SHA256SUM := 48c6fdf98396fa245ed86e622028caf49b96fa22f3e5734f853f806fbc8e7d20 +export LCMS2_TARBALL := lcms2-2.9.tar.gz export LIBASSUAN_SHA256SUM := 47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449 export LIBASSUAN_TARBALL := libassuan-2.5.1.tar.bz2 export LIBATOMIC_OPS_SHA256SUM := cf5c52f08a2067ae4fe7c8919e3c1ccf3ee917f1749e0bcc7efffff59c68d9ad @@ -154,11 +154,11 @@ export LIBTOMMATH_TARBALL := ltm-1.0.zip export XMLSEC_SHA256SUM := 967ca83edf25ccb5b48a3c4a09ad3405a63365576503bf34290a42de1b92fcd2 export XMLSEC_TARBALL := xmlsec1-1.2.25.tar.gz -export LIBXML_SHA256SUM := 0b74e51595654f958148759cfef0993114ddccccbb6f31aee018f3558e8e2732 -export LIBXML_VERSION_MICRO := 8 +export LIBXML_SHA256SUM := 94fb70890143e3c6549f265cee93ec064c80a84c42ad0f23e85ee1fd6540a871 +export LIBXML_VERSION_MICRO := 9 export LIBXML_TARBALL := libxml2-2.9.$(LIBXML_VERSION_MICRO).tar.gz -export LIBXSLT_SHA256SUM := 526ecd0abaf4a7789041622c3950c0e7f2c4c8835471515fd77eec684a355460 -export LIBXSLT_VERSION_MICRO := 32 +export LIBXSLT_SHA256SUM := 8e36605144409df979cab43d835002f63988f3dc94d5d3537c12796db90e38c8 +export LIBXSLT_VERSION_MICRO := 33 export LIBXSLT_TARBALL := libxslt-1.1.$(LIBXSLT_VERSION_MICRO).tar.gz export LPSOLVE_SHA256SUM := 171816288f14215c69e730f7a4f1c325739873e21f946ff83884b350574e6695 export LPSOLVE_TARBALL := 26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz @@ -206,8 +206,8 @@ export PIXMAN_TARBALL := e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz export LIBPNG_SHA256SUM := 2f1e960d92ce3b3abd03d06dfec9637dfbd22febf107a536b44f7a47c60659f6 export LIBPNG_TARBALL := libpng-1.6.34.tar.xz -export POPPLER_SHA256SUM := 2c096431adfb74bc2f53be466889b7646e1b599f28fa036094f3f7235cc9eae7 -export POPPLER_TARBALL := poppler-0.66.0.tar.xz +export POPPLER_SHA256SUM := e44b5543903128884ba4538c2a97d3bcc8889e97ffacc4636112101f0238db03 +export POPPLER_TARBALL := poppler-0.73.0.tar.xz export POSTGRESQL_SHA256SUM := db61d498105a7d5fe46185e67ac830c878cdd7dc1f82a87f06b842217924c461 export POSTGRESQL_TARBALL := c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 export PYTHON_SHA256SUM := 063d2c3b0402d6191b90731e0f735c64830e7522348aeb7ed382a83165d45009 diff -Nru libreoffice-l10n-6.1.4/embeddedobj/source/msole/xdialogcreator.cxx libreoffice-l10n-6.1.5~rc2/embeddedobj/source/msole/xdialogcreator.cxx --- libreoffice-l10n-6.1.4/embeddedobj/source/msole/xdialogcreator.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/embeddedobj/source/msole/xdialogcreator.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -43,6 +43,7 @@ #ifdef _WIN32 #include +#include class InitializedOleGuard { @@ -174,6 +175,10 @@ if( !pInsertFct ) throw uno::RuntimeException(); + // Disable any event loop shortcuts by enabling a real timer. + // This way the native windows dialog won't block our own processing. + WinScheduler::SetForceRealTimer(); + uTemp=pInsertFct(&io); if ( OLEUI_OK != uTemp ) diff -Nru libreoffice-l10n-6.1.4/extensions/inc/bitmaps.hlst libreoffice-l10n-6.1.5~rc2/extensions/inc/bitmaps.hlst --- libreoffice-l10n-6.1.4/extensions/inc/bitmaps.hlst 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/extensions/inc/bitmaps.hlst 2019-01-30 17:56:45.000000000 +0000 @@ -38,8 +38,8 @@ #define RID_EXTBMP_SCROLLBAR "res/sx10768.png" #define RID_EXTBMP_SPINBUTTON "res/sx10769.png" #define RID_EXTBMP_NAVIGATIONBAR "res/sx10607.png" -#define RID_UPDATE_AVAILABLE_16 "extensions/source/update/ui/onlineupdate_16.png" -#define RID_UPDATE_AVAILABLE_26 "extensions/source/update/ui/onlineupdate_26.png" +#define RID_UPDATE_AVAILABLE_16 "extensions/res/update/ui/onlineupdate_16.png" +#define RID_UPDATE_AVAILABLE_26 "extensions/res/update/ui/onlineupdate_26.png" #define BMP_TABLE "res/sx03188.png" #define BMP_QUERY "res/sx03202.png" #define RID_EXTBMP_AUTOFILTER_SC "res/sc10716.png" diff -Nru libreoffice-l10n-6.1.4/extensions/uiconfig/scanner/ui/griddialog.ui libreoffice-l10n-6.1.5~rc2/extensions/uiconfig/scanner/ui/griddialog.ui --- libreoffice-l10n-6.1.4/extensions/uiconfig/scanner/ui/griddialog.ui 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/extensions/uiconfig/scanner/ui/griddialog.ui 2019-01-30 17:56:45.000000000 +0000 @@ -84,7 +84,7 @@ False True - extensions/source/scanner/handle.png + extensions/res/scanner/handle.png False diff -Nru libreoffice-l10n-6.1.4/extensions/uiconfig/scanner/ui/sanedialog.ui libreoffice-l10n-6.1.5~rc2/extensions/uiconfig/scanner/ui/sanedialog.ui --- libreoffice-l10n-6.1.4/extensions/uiconfig/scanner/ui/sanedialog.ui 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/extensions/uiconfig/scanner/ui/sanedialog.ui 2019-01-30 17:56:45.000000000 +0000 @@ -530,7 +530,7 @@ True False - extensions/source/scanner/plus.png + extensions/res/scanner/plus.png 0 @@ -543,7 +543,7 @@ True False - extensions/source/scanner/minus.png + extensions/res/scanner/minus.png 1 diff -Nru libreoffice-l10n-6.1.4/external/lcms2/0001-Added-an-extra-check-to-MLU-bounds.patch.1 libreoffice-l10n-6.1.5~rc2/external/lcms2/0001-Added-an-extra-check-to-MLU-bounds.patch.1 --- libreoffice-l10n-6.1.4/external/lcms2/0001-Added-an-extra-check-to-MLU-bounds.patch.1 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/lcms2/0001-Added-an-extra-check-to-MLU-bounds.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -From 5ca71a7bc18b6897ab21d815d15e218e204581e2 Mon Sep 17 00:00:00 2001 -From: Marti -Date: Mon, 15 Aug 2016 23:31:39 +0200 -Subject: [PATCH] Added an extra check to MLU bounds - -Thanks to Ibrahim el-sayed for spotting the bug ---- - src/cmstypes.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/cmstypes.c b/src/cmstypes.c -index cb61860..c7328b9 100644 ---- a/src/cmstypes.c -+++ b/src/cmstypes.c -@@ -1460,6 +1460,7 @@ void *Type_MLU_Read(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsU - - // Check for overflow - if (Offset < (SizeOfHeader + 8)) goto Error; -+ if ((Offset + Len) > SizeOfTag + 8) goto Error; - - // True begin of the string - BeginOfThisString = Offset - SizeOfHeader - 8; --- -2.7.4 - diff -Nru libreoffice-l10n-6.1.4/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 libreoffice-l10n-6.1.5~rc2/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 --- libreoffice-l10n-6.1.4/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,172 @@ +From 768f70ca405cd3159d990e962d54456773bb8cf8 Mon Sep 17 00:00:00 2001 +From: Marti Maria +Date: Wed, 15 Aug 2018 20:07:56 +0200 +Subject: [PATCH 17/18] Upgrade Visual studio 2017 15.8 + +- Upgrade to 15.8 +- Add check on CGATS memory allocation (thanks to Quang Nguyen for +pointing out this) +--- + Projects/VC2017/jpegicc/jpegicc.vcxproj | 1 + + Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj | 2 +- + Projects/VC2017/lcms2_static/lcms2_static.vcxproj | 2 +- + Projects/VC2017/linkicc/linkicc.vcxproj | 2 +- + Projects/VC2017/psicc/psicc.vcxproj | 2 +- + Projects/VC2017/testbed/testbed.vcxproj | 2 +- + Projects/VC2017/tiffdiff/tiffdiff.vcxproj | 2 +- + Projects/VC2017/tifficc/tifficc.vcxproj | 2 +- + Projects/VC2017/transicc/transicc.vcxproj | 1 + + src/cmscgats.c | 14 ++++++++++---- + 10 files changed, 19 insertions(+), 11 deletions(-) + +diff --git a/Projects/VC2017/jpegicc/jpegicc.vcxproj b/Projects/VC2017/jpegicc/jpegicc.vcxproj +index ab26a53..39cfd00 100644 +--- a/Projects/VC2017/jpegicc/jpegicc.vcxproj ++++ b/Projects/VC2017/jpegicc/jpegicc.vcxproj +@@ -22,6 +22,7 @@ + {62812507-F926-4968-96A9-17678460AD90} + jpegicc + Win32Proj ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj b/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj +index 4c8aa3f..d1bf3eb 100644 +--- a/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj ++++ b/Projects/VC2017/lcms2_DLL/lcms2_DLL.vcxproj +@@ -22,7 +22,7 @@ + {8C51BE48-ADB8-4089-A9EC-F6BF993A0548} + lcms2_DLL + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/lcms2_static/lcms2_static.vcxproj b/Projects/VC2017/lcms2_static/lcms2_static.vcxproj +index 2a9988a..9fc05ce 100644 +--- a/Projects/VC2017/lcms2_static/lcms2_static.vcxproj ++++ b/Projects/VC2017/lcms2_static/lcms2_static.vcxproj +@@ -22,7 +22,7 @@ + {71DEDE59-3F1E-486B-A899-4283000F76B5} + lcms2_static + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/linkicc/linkicc.vcxproj b/Projects/VC2017/linkicc/linkicc.vcxproj +index 30c2b4e..51586dd 100644 +--- a/Projects/VC2017/linkicc/linkicc.vcxproj ++++ b/Projects/VC2017/linkicc/linkicc.vcxproj +@@ -22,7 +22,7 @@ + {FBFBE1DC-DB84-4BA1-9552-B4780F457849} + linkicc + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/psicc/psicc.vcxproj b/Projects/VC2017/psicc/psicc.vcxproj +index 9dcf89a..8f26e12 100644 +--- a/Projects/VC2017/psicc/psicc.vcxproj ++++ b/Projects/VC2017/psicc/psicc.vcxproj +@@ -22,7 +22,7 @@ + {EF6A8851-65FE-46F5-B9EF-14F0B671F693} + psicc + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/testbed/testbed.vcxproj b/Projects/VC2017/testbed/testbed.vcxproj +index 0af3762..3f6aea3 100644 +--- a/Projects/VC2017/testbed/testbed.vcxproj ++++ b/Projects/VC2017/testbed/testbed.vcxproj +@@ -22,7 +22,7 @@ + {928A3A2B-46EF-4279-959C-513B3652FF0E} + testbed + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/tiffdiff/tiffdiff.vcxproj b/Projects/VC2017/tiffdiff/tiffdiff.vcxproj +index 7edfe28..3a6d837 100644 +--- a/Projects/VC2017/tiffdiff/tiffdiff.vcxproj ++++ b/Projects/VC2017/tiffdiff/tiffdiff.vcxproj +@@ -22,7 +22,7 @@ + {75B91835-CCD7-48BE-A606-A9C997D5DBEE} + tiffdiff + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/tifficc/tifficc.vcxproj b/Projects/VC2017/tifficc/tifficc.vcxproj +index cd9f04c..5ef954f 100644 +--- a/Projects/VC2017/tifficc/tifficc.vcxproj ++++ b/Projects/VC2017/tifficc/tifficc.vcxproj +@@ -22,7 +22,7 @@ + {2256DE16-ED92-4A6F-9C54-F65BB61E64A2} + tifficc + Win32Proj +- 8.1 ++ 10.0.17134.0 + + + +diff --git a/Projects/VC2017/transicc/transicc.vcxproj b/Projects/VC2017/transicc/transicc.vcxproj +index d9b77c6..b3173d8 100644 +--- a/Projects/VC2017/transicc/transicc.vcxproj ++++ b/Projects/VC2017/transicc/transicc.vcxproj +@@ -22,6 +22,7 @@ + {9EE22D66-C849-474C-9ED5-C3E141DAB160} + transicc + Win32Proj ++ 10.0.17134.0 + + + +diff --git a/src/cmscgats.c b/src/cmscgats.c +index 1a87613..8c3e96d 100644 +--- a/src/cmscgats.c ++++ b/src/cmscgats.c +@@ -1,7 +1,7 @@ + //--------------------------------------------------------------------------------- + // + // Little Color Management System +-// Copyright (c) 1998-2017 Marti Maria Saguer ++// Copyright (c) 1998-2018 Marti Maria Saguer + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the "Software"), +@@ -1506,10 +1506,16 @@ void AllocateDataSet(cmsIT8* it8) + t-> nSamples = atoi(cmsIT8GetProperty(it8, "NUMBER_OF_FIELDS")); + t-> nPatches = atoi(cmsIT8GetProperty(it8, "NUMBER_OF_SETS")); + +- t-> Data = (char**)AllocChunk (it8, ((cmsUInt32Number) t->nSamples + 1) * ((cmsUInt32Number) t->nPatches + 1) *sizeof (char*)); +- if (t->Data == NULL) { ++ if (t -> nSamples < 0 || t->nSamples > 0x7ffe || t->nPatches < 0 || t->nPatches > 0x7ffe) ++ { ++ SynError(it8, "AllocateDataSet: too much data"); ++ } ++ else { ++ t->Data = (char**)AllocChunk(it8, ((cmsUInt32Number)t->nSamples + 1) * ((cmsUInt32Number)t->nPatches + 1) * sizeof(char*)); ++ if (t->Data == NULL) { + +- SynError(it8, "AllocateDataSet: Unable to allocate data array"); ++ SynError(it8, "AllocateDataSet: Unable to allocate data array"); ++ } + } + + } +-- +2.17.1 + diff -Nru libreoffice-l10n-6.1.4/external/lcms2/UnpackedTarball_lcms2.mk libreoffice-l10n-6.1.5~rc2/external/lcms2/UnpackedTarball_lcms2.mk --- libreoffice-l10n-6.1.4/external/lcms2/UnpackedTarball_lcms2.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/lcms2/UnpackedTarball_lcms2.mk 2019-01-30 17:56:45.000000000 +0000 @@ -16,9 +16,9 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,lcms2,3)) $(eval $(call gb_UnpackedTarball_add_patches,lcms2,\ + external/lcms2/0017-Upgrade-Visual-studio-2017-15.8.patch.1 \ external/lcms2/lcms2-2.4-windows.patch \ external/lcms2/lcms2-msvc-disable-sse2.patch.1 \ - external/lcms2/0001-Added-an-extra-check-to-MLU-bounds.patch.1 \ external/lcms2/c++17.patch.0 \ )) diff -Nru libreoffice-l10n-6.1.4/external/libnumbertext/ExternalProject_libnumbertext.mk libreoffice-l10n-6.1.5~rc2/external/libnumbertext/ExternalProject_libnumbertext.mk --- libreoffice-l10n-6.1.4/external/libnumbertext/ExternalProject_libnumbertext.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/libnumbertext/ExternalProject_libnumbertext.mk 2019-01-30 17:56:45.000000000 +0000 @@ -37,7 +37,7 @@ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM))\ $(if $(filter AIX,$(OS)),CFLAGS="-D_LINUX_SOURCE_COMPAT") \ $(if $(libnumbertext_CPPFLAGS),CPPFLAGS='$(libnumbertext_CPPFLAGS)') \ - CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if $(ENABLE_OPTIMIZED) $(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if $(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) $(gb_VISIBILITY_FLAGS_CXX)" \ + CXXFLAGS="$(libnumbertext_CXXFLAGS) $(if $(ENABLE_OPTIMIZED),$(gb_COMPILEROPTFLAGS),$(gb_COMPILERNOOPTFLAGS)) $(if $(debug),$(gb_DEBUGINFO_FLAGS) $(gb_DEBUG_CXXFLAGS)) $(gb_VISIBILITY_FLAGS) $(gb_VISIBILITY_FLAGS_CXX)" \ && cd src && $(MAKE) \ ) diff -Nru libreoffice-l10n-6.1.4/external/libxml2/libxml2-android.patch libreoffice-l10n-6.1.5~rc2/external/libxml2/libxml2-android.patch --- libreoffice-l10n-6.1.4/external/libxml2/libxml2-android.patch 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/libxml2/libxml2-android.patch 2019-01-30 17:56:45.000000000 +0000 @@ -1,15 +1,3 @@ ---- misc/libxml2-2.7.6/trionan.c -+++ misc/build/libxml2-2.7.6/trionan.c -@@ -327,7 +327,7 @@ - - if (result == 0.0) { - --#if defined(TRIO_COMPILER_SUPPORTS_C99) -+#if defined(TRIO_COMPILER_SUPPORTS_C99) && !(defined(__ANDROID__) && defined(__clang__)) - result = nan(""); - - #elif defined(NAN) && defined(__STDC_IEC_559__) - --- misc/libxml2-2.7.6/Makefile.in +++ misc/build/libxml2-2.7.6/Makefile.in @@ -1635,7 +1635,7 @@ diff -Nru libreoffice-l10n-6.1.4/external/libxml2/libxml2-global-symbols.patch libreoffice-l10n-6.1.5~rc2/external/libxml2/libxml2-global-symbols.patch --- libreoffice-l10n-6.1.4/external/libxml2/libxml2-global-symbols.patch 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/libxml2/libxml2-global-symbols.patch 2019-01-30 17:56:45.000000000 +0000 @@ -14,8 +14,8 @@ LIBXML2_2.6.32 { @@ -2231,3 +2231,43 @@ - xmlXPathSetContextNode; - } LIBXML2_2.9.0; + xmlHashDefaultDeallocator; + } LIBXML2_2.9.1; +# HACK: export global variable accessor functions (globals.h) +LIBXML2_GLOBAL_VARIABLES { diff -Nru libreoffice-l10n-6.1.4/external/poppler/poppler-c++11.patch.1 libreoffice-l10n-6.1.5~rc2/external/poppler/poppler-c++11.patch.1 --- libreoffice-l10n-6.1.4/external/poppler/poppler-c++11.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/poppler/poppler-c++11.patch.1 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,31 @@ +remove usage of newfangled C++ that baseline toolchains don't support + +--- poppler/goo/gfile.cc.orig 2019-01-16 11:02:21.112911552 +0100 ++++ poppler/goo/gfile.cc 2019-01-16 11:01:33.125975178 +0100 +@@ -67,7 +67,7 @@ + + #ifndef _WIN32 + +-using namespace std::string_literals; ++//using namespace std::string_literals; + + namespace { + +@@ -366,7 +366,7 @@ + } + #else + // First try to atomically open the file with CLOEXEC +- const std::string modeStr = mode + "e"s; ++ const std::string modeStr = mode + std::string("e"); + FILE *file = fopen(path, modeStr.c_str()); + if (file != nullptr) + return file; +--- poppler/goo/gmem.h.orig 2019-01-16 11:25:28.161920038 +0100 ++++ poppler/goo/gmem.h 2019-01-16 11:25:53.756882295 +0100 +@@ -177,4 +177,6 @@ + return std::strncpy(r, s, n); + } + ++#include ++ + #endif // GMEM_H diff -Nru libreoffice-l10n-6.1.4/external/poppler/poppler-config.patch.1 libreoffice-l10n-6.1.5~rc2/external/poppler/poppler-config.patch.1 --- libreoffice-l10n-6.1.4/external/poppler/poppler-config.patch.1 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/poppler/poppler-config.patch.1 2019-01-30 17:56:45.000000000 +0000 @@ -195,7 +195,7 @@ +#define PACKAGE_NAME "poppler" + +/* Define to the full name and version of this package. */ -+#define PACKAGE_STRING "poppler 0.66.0" ++#define PACKAGE_STRING "poppler 0.73.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "poppler" @@ -204,7 +204,7 @@ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ -+#define PACKAGE_VERSION "0.66.0" ++#define PACKAGE_VERSION "0.73.0" + +/* Poppler data dir */ +#define POPPLER_DATADIR "/usr/local/share/poppler" @@ -228,7 +228,7 @@ +/* #undef USE_FLOAT */ + +/* Version number of package */ -+#define VERSION "0.66.0" ++#define VERSION "0.73.0" + +#if defined(__APPLE__) +#elif defined (_WIN32) @@ -304,7 +304,7 @@ + +/* Defines the poppler version. */ +#ifndef POPPLER_VERSION -+#define POPPLER_VERSION "0.66.0" ++#define POPPLER_VERSION "0.73.0" +#endif + +/* Enable multithreading support. */ @@ -466,9 +466,9 @@ + +#include "poppler-global.h" + -+#define POPPLER_VERSION "0.66.0" ++#define POPPLER_VERSION "0.73.0" +#define POPPLER_VERSION_MAJOR 0 -+#define POPPLER_VERSION_MINOR 66 ++#define POPPLER_VERSION_MINOR 73 +#define POPPLER_VERSION_MICRO 0 + +namespace poppler diff -Nru libreoffice-l10n-6.1.4/external/poppler/StaticLibrary_poppler.mk libreoffice-l10n-6.1.5~rc2/external/poppler/StaticLibrary_poppler.mk --- libreoffice-l10n-6.1.4/external/poppler/StaticLibrary_poppler.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/poppler/StaticLibrary_poppler.mk 2019-01-30 17:56:45.000000000 +0000 @@ -53,11 +53,8 @@ $(eval $(call gb_StaticLibrary_add_generated_exception_objects,poppler,\ UnpackedTarball/poppler/goo/gfile \ - UnpackedTarball/poppler/goo/gmempp \ - UnpackedTarball/poppler/goo/GooList \ UnpackedTarball/poppler/goo/GooTimer \ UnpackedTarball/poppler/goo/GooString \ - UnpackedTarball/poppler/goo/gmem \ UnpackedTarball/poppler/goo/FixedPoint \ UnpackedTarball/poppler/goo/NetPBMWriter \ UnpackedTarball/poppler/goo/PNGWriter \ @@ -80,6 +77,7 @@ UnpackedTarball/poppler/poppler/BuiltinFontTables \ UnpackedTarball/poppler/poppler/CachedFile \ UnpackedTarball/poppler/poppler/Catalog \ + UnpackedTarball/poppler/poppler/CertificateInfo \ UnpackedTarball/poppler/poppler/CharCodeToUnicode \ UnpackedTarball/poppler/poppler/CMap \ UnpackedTarball/poppler/poppler/DateInfo \ @@ -114,7 +112,6 @@ UnpackedTarball/poppler/poppler/PDFDoc \ UnpackedTarball/poppler/poppler/PDFDocEncoding \ UnpackedTarball/poppler/poppler/PDFDocFactory \ - UnpackedTarball/poppler/poppler/PopplerCache \ UnpackedTarball/poppler/poppler/ProfileData \ UnpackedTarball/poppler/poppler/PreScanOutputDev \ UnpackedTarball/poppler/poppler/PSTokenizer \ @@ -135,7 +132,6 @@ UnpackedTarball/poppler/poppler/StdinPDFDocBuilder \ UnpackedTarball/poppler/poppler/Sound \ UnpackedTarball/poppler/poppler/ViewerPreferences \ - UnpackedTarball/poppler/poppler/XpdfPluginAPI \ UnpackedTarball/poppler/poppler/Movie \ UnpackedTarball/poppler/poppler/Rendition \ UnpackedTarball/poppler/poppler/DCTStream \ diff -Nru libreoffice-l10n-6.1.4/external/poppler/UnpackedTarball_poppler.mk libreoffice-l10n-6.1.5~rc2/external/poppler/UnpackedTarball_poppler.mk --- libreoffice-l10n-6.1.4/external/poppler/UnpackedTarball_poppler.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/poppler/UnpackedTarball_poppler.mk 2019-01-30 17:56:45.000000000 +0000 @@ -13,6 +13,17 @@ $(eval $(call gb_UnpackedTarball_add_patches,poppler,\ external/poppler/poppler-config.patch.1 \ + external/poppler/poppler-c++11.patch.1 \ )) +# std::make_unique is only available in C++14 +# use "env -i" to avoid Cygwin "environment is too large for exec" +# Mac OS X sed says "sed: RE error: illegal byte sequence"; Apple clang should +# be happy with std::make_unique so just skip it +ifneq ($(OS_FOR_BUILD),MACOSX) +$(eval $(call gb_UnpackedTarball_set_post_action,poppler,\ + env -i PATH="$(PATH)" $(FIND) . -name '*.cc' -exec sed -i -e 's/std::make_unique/o3tl::make_unique/' {} \\; \ +)) +endif + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-6.1.4/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 libreoffice-l10n-6.1.5~rc2/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 --- libreoffice-l10n-6.1.4/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,59 @@ +From 582d188e6e3487180891f1fc457a80dec8be26a8 Mon Sep 17 00:00:00 2001 +From: Christian Heimes +Date: Mon, 24 Sep 2018 14:38:31 +0200 +Subject: [PATCH] [3.6] bpo-17239: Disable external entities in SAX parser + (GH-9217) (GH-9512) + +The SAX parser no longer processes general external entities by default +to increase security. Before, the parser created network connections +to fetch remote files or loaded local files from the file system for DTD +and entities. + +Signed-off-by: Christian Heimes + +https://bugs.python.org/issue17239. +(cherry picked from commit 17b1d5d4e36aa57a9b25a0e694affbd1ee637e45) + +Co-authored-by: Christian Heimes + + + +https://bugs.python.org/issue17239 +--- + Doc/library/xml.dom.pulldom.rst | 14 +++++ + Doc/library/xml.rst | 6 +- + Doc/library/xml.sax.rst | 8 +++ + Doc/whatsnew/3.6.rst | 18 +++++- + Lib/test/test_pulldom.py | 7 +++ + Lib/test/test_sax.py | 60 ++++++++++++++++++- + Lib/test/test_xml_etree.py | 13 ++++ + Lib/xml/sax/expatreader.py | 2 +- + .../2018-09-11-18-30-55.bpo-17239.kOpwK2.rst | 3 + + 9 files changed, 125 insertions(+), 6 deletions(-) + create mode 100644 Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst + +diff --git a/Lib/xml/sax/expatreader.py b/Lib/xml/sax/expatreader.py +index 421358fa5b..5066ffc2fa 100644 +--- a/Lib/xml/sax/expatreader.py ++++ b/Lib/xml/sax/expatreader.py +@@ -95,7 +95,7 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator): + self._lex_handler_prop = None + self._parsing = 0 + self._entity_stack = [] +- self._external_ges = 1 ++ self._external_ges = 0 + self._interning = None + + # XMLReader methods +diff --git a/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst b/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst +new file mode 100644 +index 0000000000..8dd0fe8c1b +--- /dev/null ++++ b/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst +@@ -0,0 +1,3 @@ ++The xml.sax and xml.dom.minidom parsers no longer processes external ++entities by default. External DTD and ENTITY declarations no longer ++load files or create network connections. +-- +2.20.1 + diff -Nru libreoffice-l10n-6.1.4/external/python3/UnpackedTarball_python3.mk libreoffice-l10n-6.1.5~rc2/external/python3/UnpackedTarball_python3.mk --- libreoffice-l10n-6.1.4/external/python3/UnpackedTarball_python3.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/external/python3/UnpackedTarball_python3.mk 2019-01-30 17:56:45.000000000 +0000 @@ -26,6 +26,7 @@ external/python3/python-3.3.5-pyexpat-symbols.patch.1 \ external/python3/ubsan.patch.0 \ external/python3/python-3.5.tweak.strip.soabi.patch \ + external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 \ )) ifneq ($(filter DRAGONFLY FREEBSD LINUX NETBSD OPENBSD SOLARIS,$(OS)),) diff -Nru libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx --- libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -249,25 +249,20 @@ void SAL_CALL XMLFilterDialogComponent::queryTermination( const EventObject& /* Event */ ) { ::SolarMutexGuard aGuard; - if (!mpDialog) return; - - // we will never give a veto here - if (!mpDialog->isClosable()) - { - mpDialog->ToTop(); - throw TerminationVetoException( - "The office cannot be closed while the XMLFilterDialog is running", - static_cast(this)); - } - else - mpDialog->Close(); + mpDialog->ToTop(); } - void SAL_CALL XMLFilterDialogComponent::notifyTermination( const EventObject& /* Event */ ) { + { + ::SolarMutexGuard aGuard; + if (!mpDialog) + return; + mpDialog->Close(); + } + // we are going down, so dispose us! dispose(); } @@ -276,35 +271,41 @@ { } - void SAL_CALL XMLFilterDialogComponent::setTitle( const OUString& /* _rTitle */ ) { } - -sal_Int16 SAL_CALL XMLFilterDialogComponent::execute( ) +sal_Int16 SAL_CALL XMLFilterDialogComponent::execute() { ::SolarMutexGuard aGuard; - if( nullptr == mpDialog ) + bool bLaunch = false; + if (!mpDialog) { Reference< XComponent > xComp( this ); if (mxParent.is()) mpDialog = VclPtr::Create(VCLUnoHelper::GetWindow(mxParent), mxContext); else mpDialog = VclPtr::Create(nullptr, mxContext, Dialog::InitFlag::NoParent); - mpDialog->Execute(); + bLaunch = true; } - else if( !mpDialog->IsVisible() ) + + mpDialog->UpdateWindow(); + + if (!bLaunch) { - mpDialog->Execute(); + mpDialog->ToTop(); + return 0; } - mpDialog->ToTop(); + + mpDialog->StartExecuteAsync([this](sal_Int32) + { + mpDialog.reset(); + }); return 0; } - void SAL_CALL XMLFilterDialogComponent::initialize( const Sequence< Any >& aArguments ) { for(const Any& rArgument : aArguments) @@ -320,7 +321,6 @@ } } - extern "C" { SAL_DLLPUBLIC_EXPORT void * xsltdlg_component_getFactory( diff -Nru libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx --- libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfiltersettingsdialog.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -17,17 +17,19 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include #include +#include #include #include #include -#include #include #include -#include #include +#include +#include #include #include #include @@ -68,7 +70,6 @@ Dialog::InitFlag eFlag) : ModelessDialog(pParent, "XMLFilterSettingsDialog", "filter/ui/xmlfiltersettings.ui", eFlag) , mxContext( rxContext ) - , m_bIsClosable(true) , m_sTemplatePath("$(user)/template/") , m_sDocTypePrefix("doctype:") { @@ -132,7 +133,8 @@ IMPL_LINK(XMLFilterSettingsDialog, ClickHdl_Impl, Button *, pButton, void ) { - m_bIsClosable = false; + // tdf#122171 block closing libreoffice until the following dialog is dismissed + incBusy(); if (m_pPBNew == pButton) { @@ -163,7 +165,7 @@ Close(); } - m_bIsClosable = true; + decBusy(); } IMPL_LINK_NOARG(XMLFilterSettingsDialog, SelectionChangedHdl_Impl, SvTreeListBox*, void) @@ -177,15 +179,13 @@ return false; } -short XMLFilterSettingsDialog::Execute() +void XMLFilterSettingsDialog::UpdateWindow() { m_pCtrlFilterList->GrabFocus(); disposeFilterList(); m_pFilterListBox->Clear(); initFilterList(); updateStates(); - - return ModelessDialog::Execute(); } void XMLFilterSettingsDialog::updateStates() diff -Nru libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfiltersettingsdialog.hxx libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfiltersettingsdialog.hxx --- libreoffice-l10n-6.1.4/filter/source/xsltdialog/xmlfiltersettingsdialog.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/filter/source/xsltdialog/xmlfiltersettingsdialog.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -92,7 +93,7 @@ DECL_LINK(SelectionChangedHdl_Impl, SvTreeListBox*, void ); DECL_LINK(DoubleClickHdl_Impl, SvTreeListBox*, bool ); - virtual short Execute() override; + void UpdateWindow(); void onNew(); void onEdit(); @@ -105,12 +106,13 @@ virtual bool EventNotify( NotifyEvent& rNEvt ) override; - bool isClosable() { return m_bIsClosable;} - private: void initFilterList(); void disposeFilterList(); + void incBusy() { maBusy.incBusy(this); } + void decBusy() { maBusy.decBusy(); } + bool insertOrEdit( filter_info_impl* pNewInfo, const filter_info_impl* pOldInfo = nullptr ); OUString createUniqueFilterName( const OUString& rUIName ); @@ -125,6 +127,7 @@ std::vector< filter_info_impl* > maFilterVector; + TopLevelWindowLocker maBusy; VclPtr m_pFilterListBox; VclPtr m_pCtrlFilterList; VclPtr m_pPBNew; @@ -135,8 +138,6 @@ VclPtr m_pPBOpen; VclPtr m_pPBClose; - bool m_bIsClosable; - OUString m_sTemplatePath; OUString m_sDocTypePrefix; diff -Nru libreoffice-l10n-6.1.4/fpicker/Library_fps.mk libreoffice-l10n-6.1.5~rc2/fpicker/Library_fps.mk --- libreoffice-l10n-6.1.4/fpicker/Library_fps.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/Library_fps.mk 2019-01-30 17:56:45.000000000 +0000 @@ -67,9 +67,6 @@ fpicker/source/win32/filepicker/VistaFilePicker \ fpicker/source/win32/filepicker/VistaFilePickerEventHandler \ fpicker/source/win32/filepicker/VistaFilePickerImpl \ - fpicker/source/win32/folderpicker/FolderPicker \ - fpicker/source/win32/folderpicker/MtaFop \ - fpicker/source/win32/folderpicker/WinFOPImpl \ fpicker/source/win32/misc/resourceprovider \ fpicker/source/win32/misc/WinImplHelper \ )) diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/asyncrequests.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/asyncrequests.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/asyncrequests.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/asyncrequests.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -75,7 +75,14 @@ aLock.clear(); // <- SYNCHRONIZED - join(); + // The static AsyncRequests aNotify in VistaFilePickerEventHandler::impl_sendEvent + // is destructed at DLL atexit. But it won't run, so needs no join and release of + // the already destructed SolarMutex, which would crash LO on exit. + if (isRunning()) + { + SolarMutexReleaser aReleaser; + join(); + } } void AsyncRequests::triggerJobExecution() diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/FPentry.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/FPentry.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/FPentry.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/FPentry.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -25,32 +25,27 @@ #include "../misc/WinImplHelper.hxx" #include -#include "../folderpicker/FolderPicker.hxx" -#include "../folderpicker/FOPServiceInfo.hxx" -#include "../folderpicker/WinFOPImpl.hxx" - +using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::container; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::registry; using namespace ::cppu; using ::com::sun::star::ui::dialogs::XFilePicker2; +using ::com::sun::star::ui::dialogs::XFolderPicker2; static Reference< XInterface > createInstance( const Reference< XMultiServiceFactory >& rServiceManager ) { - Reference< XInterface > xDlg; - - xDlg.set(static_cast( - new ::fpicker::win32::vista::VistaFilePicker(rServiceManager))); - - return xDlg; + return Reference( + new ::fpicker::win32::vista::VistaFilePicker(rServiceManager, false)); } static Reference< XInterface > createInstance_fop( const Reference< XMultiServiceFactory >& rServiceManager ) { - return Reference< XInterface >( static_cast< cppu::OWeakObject * >( new CFolderPicker( rServiceManager ) ) ); + return Reference( + new ::fpicker::win32::vista::VistaFilePicker(rServiceManager, true)); } extern "C" diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/FPServiceInfo.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/FPServiceInfo.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/FPServiceInfo.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/FPServiceInfo.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -26,6 +26,12 @@ // the implementation names #define FILE_PICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FilePicker" +// the service names +#define FOLDER_PICKER_SERVICE_NAME "com.sun.star.ui.dialogs.SystemFolderPicker" + +// the implementation names +#define FOLDER_PICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FolderPicker" + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePicker.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -20,6 +20,7 @@ #include "VistaFilePicker.hxx" #include "../misc/WinImplHelper.hxx" +#include "FPServiceInfo.hxx" #include "shared.hxx" #include @@ -46,20 +47,22 @@ { css::uno::Sequence< OUString > VistaFilePicker_getSupportedServiceNames() { - css::uno::Sequence< OUString > aRet(2); + css::uno::Sequence< OUString > aRet(3); aRet[0] = "com.sun.star.ui.dialogs.FilePicker"; aRet[1] = "com.sun.star.ui.dialogs.SystemFilePicker"; + aRet[2] = "com.sun.star.ui.dialogs.SystemFolderPicker"; return aRet; } } -VistaFilePicker::VistaFilePicker(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR) +VistaFilePicker::VistaFilePicker(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR, bool bFolderPicker) : TVistaFilePickerBase (m_aMutex ) , m_xSMGR (xSMGR ) , m_rDialog (new VistaFilePickerImpl()) , m_aAsyncExecute (m_rDialog ) , m_nFilePickerThreadId (0 ) , m_bInitialized (false ) + , m_bFolderPicker (bFolderPicker ) { } @@ -233,9 +236,24 @@ if ( !bInitialized ) { - css::uno::Sequence < css::uno::Any > aInitArguments(1); - aInitArguments[0] <<= css::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE; - initialize(aInitArguments); + if (m_bFolderPicker) + { + RequestRef rRequest(new Request()); + rRequest->setRequest (VistaFilePickerImpl::E_CREATE_FOLDER_PICKER); + if ( ! m_aAsyncExecute.isRunning()) + m_aAsyncExecute.create(); + m_aAsyncExecute.triggerRequestThreadAware(rRequest, AsyncRequests::NON_BLOCKED); + { + osl::MutexGuard aGuard(m_aMutex); + m_bInitialized = true; + } + } + else + { + css::uno::Sequence < css::uno::Any > aInitArguments(1); + aInitArguments[0] <<= css::ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE; + initialize(aInitArguments); + } } } @@ -507,11 +525,27 @@ { } +OUString SAL_CALL VistaFilePicker::getDirectory() +{ + ensureInit(); + css::uno::Sequence< OUString > aFileSeq = getSelectedFiles(); + assert(aFileSeq.getLength() <= 1); + return aFileSeq.getLength() ? aFileSeq[0] : OUString(); +} + +void SAL_CALL VistaFilePicker::setDescription( const OUString& aDescription ) +{ + setTitle(aDescription); +} + // XServiceInfo OUString SAL_CALL VistaFilePicker::getImplementationName() { - return OUString("com.sun.star.comp.fpicker.VistaFileDialog"); + if (m_bFolderPicker) + return OUString(FOLDER_PICKER_IMPL_NAME); + else + return OUString(FILE_PICKER_IMPL_NAME); } sal_Bool SAL_CALL VistaFilePicker::supportsService(const OUString& sServiceName) diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePicker.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePicker.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePicker.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -47,6 +48,7 @@ css::ui::dialogs::XFilePicker3, css::ui::dialogs::XFilePickerControlAccess, css::ui::dialogs::XFilePreview, + css::ui::dialogs::XFolderPicker2, css::lang::XInitialization, css::lang::XServiceInfo > TVistaFilePickerBase; @@ -67,7 +69,7 @@ // ctor/dtor - explicit VistaFilePicker( const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR ); + explicit VistaFilePicker( const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR, bool bFolderPicker ); virtual ~VistaFilePicker() override; @@ -187,22 +189,14 @@ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override; - /* - // FilePicker Event functions + // XFolderPicker functions - void SAL_CALL fileSelectionChanged(const css::ui::dialogs::FilePickerEvent& aEvent ); - void SAL_CALL directoryChanged(const css::ui::dialogs::FilePickerEvent& aEvent ); - OUString SAL_CALL helpRequested(const css::ui::dialogs::FilePickerEvent& aEvent ) const; - void SAL_CALL controlStateChanged(const css::ui::dialogs::FilePickerEvent& aEvent ); - void SAL_CALL dialogSizeChanged( ); - - bool startupEventNotification(bool bStartupSuspended); - void shutdownEventNotification(); - void suspendEventNotification(); - void resumeEventNotification(); - */ + virtual OUString SAL_CALL getDirectory( ) override; + + virtual void SAL_CALL setDescription( const OUString& aDescription ) override; + private: @@ -234,6 +228,7 @@ oslThreadIdentifier m_nFilePickerThreadId; bool m_bInitialized; + const bool m_bFolderPicker; }; } // namespace vista diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -36,6 +36,7 @@ #include "../misc/WinImplHelper.hxx" #include +#include inline bool is_current_process_window(HWND hwnd) { @@ -94,28 +95,55 @@ OUString lcl_getURLFromShellItem (IShellItem* pItem) { - LPOLESTR pStr = nullptr; + LPWSTR pStr = nullptr; OUString sURL; + HRESULT hr; - SIGDN eConversion = SIGDN_FILESYSPATH; - HRESULT hr = pItem->GetDisplayName ( eConversion, &pStr ); - - if ( FAILED(hr) ) + hr = pItem->GetDisplayName ( SIGDN_FILESYSPATH, &pStr ); + if (SUCCEEDED(hr)) { - eConversion = SIGDN_URL; - hr = pItem->GetDisplayName ( eConversion, &pStr ); - - if ( FAILED(hr) ) - return OUString(); + ::osl::FileBase::getFileURLFromSystemPath( o3tl::toU(pStr), sURL ); + goto cleanup; + } + hr = pItem->GetDisplayName ( SIGDN_URL, &pStr ); + if (SUCCEEDED(hr)) + { sURL = o3tl::toU(pStr); + goto cleanup; } - else + + hr = pItem->GetDisplayName ( SIGDN_PARENTRELATIVEPARSING, &pStr ); + if (SUCCEEDED(hr)) { - ::osl::FileBase::getFileURLFromSystemPath( o3tl::toU(pStr), sURL ); + GUID known_folder_id; + std::wstring aStr = pStr; + CoTaskMemFree (pStr); + + if (0 == aStr.compare(0, 3, L"::{")) + aStr = aStr.substr(2); + hr = IIDFromString(aStr.c_str(), &known_folder_id); + if (SUCCEEDED(hr)) + { + hr = SHGetKnownFolderPath(known_folder_id, 0, NULL, &pStr); + if (SUCCEEDED(hr)) + { + ::osl::FileBase::getFileURLFromSystemPath(o3tl::toU(pStr), sURL); + goto cleanup; + } + } } + // Default fallback + hr = SHGetKnownFolderPath(FOLDERID_Documents, 0, NULL, &pStr); + if (SUCCEEDED(hr)) + ::osl::FileBase::getFileURLFromSystemPath(o3tl::toU(pStr), sURL); + else // shouldn't happen... + goto bailout; + +cleanup: CoTaskMemFree (pStr); +bailout: return sURL; } @@ -143,6 +171,7 @@ VistaFilePickerImpl::VistaFilePickerImpl() : m_iDialogOpen () , m_iDialogSave () + , m_iFolderPicker() , m_hLastResult () , m_lFilters () , m_iEventHandler(new VistaFilePickerEventHandler(this)) @@ -219,6 +248,10 @@ impl_sta_CreateSaveDialog(rRequest); break; + case E_CREATE_FOLDER_PICKER: + impl_sta_CreateFolderPicker(rRequest); + break; + case E_SET_MULTISELECTION_MODE : impl_sta_SetMultiSelectionMode(rRequest); break; @@ -399,56 +432,38 @@ } -void VistaFilePickerImpl::impl_sta_CreateOpenDialog(const RequestRef& rRequest) +void VistaFilePickerImpl::impl_sta_CreateDialog(const RequestRef& rRequest, PickerDialog eType, DWORD nOrFlags) { // SYNCHRONIZED-> ::osl::ResettableMutexGuard aLock(m_aMutex); - m_hLastResult = m_iDialogOpen.create(); - if (FAILED(m_hLastResult)) - return; - TFileDialog iDialog; - m_iDialogOpen.query(&iDialog); - - TFileDialogEvents iHandler = m_iEventHandler; - - aLock.clear(); - // <- SYNCHRONIZED - - DWORD nFlags = 0; - iDialog->GetOptions ( &nFlags ); - - nFlags &= ~FOS_FORCESHOWHIDDEN; - nFlags |= FOS_PATHMUSTEXIST; - nFlags |= FOS_FILEMUSTEXIST; - nFlags |= FOS_OVERWRITEPROMPT; - nFlags |= FOS_DONTADDTORECENT; - - iDialog->SetOptions ( nFlags ); - - ::sal_Int32 nFeatures = rRequest->getArgumentOrDefault(PROP_FEATURES, ::sal_Int32(0)); - ::sal_Int32 nTemplate = rRequest->getArgumentOrDefault(PROP_TEMPLATE_DESCR, ::sal_Int32(0)); - impl_sta_enableFeatures(nFeatures, nTemplate); - - VistaFilePickerEventHandler* pHandlerImpl = static_cast(iHandler.get()); - if (pHandlerImpl) - pHandlerImpl->startListening(iDialog); -} + switch (eType) + { + case PickerDialog::FileOpen: + m_hLastResult = m_iDialogOpen.create(); + if (FAILED(m_hLastResult)) + return; + m_iDialogOpen.query(&iDialog); + break; -void VistaFilePickerImpl::impl_sta_CreateSaveDialog(const RequestRef& rRequest) -{ - // SYNCHRONIZED-> - ::osl::ResettableMutexGuard aLock(m_aMutex); + case PickerDialog::FileSave: + m_hLastResult = m_iDialogSave.create(); + if (FAILED(m_hLastResult)) + return; + m_iDialogSave.query(&iDialog); + break; - m_hLastResult = m_iDialogSave.create(); - if (FAILED(m_hLastResult)) - return; + case PickerDialog::Folder: + m_hLastResult = m_iFolderPicker.create(); + if (FAILED(m_hLastResult)) + return; + m_iFolderPicker.query(&iDialog); + break; + } - TFileDialogEvents iHandler = m_iEventHandler; - TFileDialog iDialog; - m_iDialogSave.query(&iDialog); + TFileDialogEvents iHandler = m_iEventHandler; aLock.clear(); // <- SYNCHRONIZED @@ -458,14 +473,11 @@ nFlags &= ~FOS_FORCESHOWHIDDEN; nFlags |= FOS_PATHMUSTEXIST; - nFlags |= FOS_FILEMUSTEXIST; - nFlags |= FOS_OVERWRITEPROMPT; nFlags |= FOS_DONTADDTORECENT; + nFlags |= nOrFlags; iDialog->SetOptions ( nFlags ); - ::sal_Int32 nFeatures = rRequest->getArgumentOrDefault(PROP_FEATURES, ::sal_Int32(0)); - ::sal_Int32 nTemplate = rRequest->getArgumentOrDefault(PROP_TEMPLATE_DESCR, ::sal_Int32(0)); css::uno::Reference xWindow = rRequest->getArgumentOrDefault(PROP_PARENT_WINDOW, css::uno::Reference()); if(xWindow.is()) { @@ -481,6 +493,8 @@ } } + ::sal_Int32 nFeatures = rRequest->getArgumentOrDefault(PROP_FEATURES, ::sal_Int32(0)); + ::sal_Int32 nTemplate = rRequest->getArgumentOrDefault(PROP_TEMPLATE_DESCR, ::sal_Int32(0)); impl_sta_enableFeatures(nFeatures, nTemplate); VistaFilePickerEventHandler* pHandlerImpl = static_cast(iHandler.get()); @@ -489,6 +503,35 @@ } +void VistaFilePickerImpl::impl_sta_CreateOpenDialog(const RequestRef& rRequest) +{ + DWORD nFlags = 0; + nFlags |= FOS_FILEMUSTEXIST; + nFlags |= FOS_OVERWRITEPROMPT; + + impl_sta_CreateDialog(rRequest, PickerDialog::FileOpen, nFlags); +} + + +void VistaFilePickerImpl::impl_sta_CreateSaveDialog(const RequestRef& rRequest) +{ + DWORD nFlags = 0; + nFlags |= FOS_FILEMUSTEXIST; + nFlags |= FOS_OVERWRITEPROMPT; + + impl_sta_CreateDialog(rRequest, PickerDialog::FileSave, nFlags); +} + + +void VistaFilePickerImpl::impl_sta_CreateFolderPicker(const RequestRef& rRequest) +{ + DWORD nFlags = 0; + nFlags |= FOS_PICKFOLDERS; + + impl_sta_CreateDialog(rRequest, PickerDialog::Folder, nFlags); +} + + static const ::sal_Int32 GROUP_VERSION = 1; static const ::sal_Int32 GROUP_TEMPLATE = 2; static const ::sal_Int32 GROUP_IMAGETEMPLATE = 3; @@ -822,6 +865,7 @@ TFileOpenDialog iOpen = m_iDialogOpen; TFileSaveDialog iSave = m_iDialogSave; + TFolderPickerDialog iPick = m_iFolderPicker; bool bInExecute = m_bInExecute; aLock.clear(); @@ -852,6 +896,15 @@ else hResult = iSave->GetResult(&iItem); } + else if (iPick.is()) + { + if (bInExecute) + hResult = iPick->GetCurrentSelection(&iItem); + else + { + hResult = iPick->GetResult(&iItem); + } + } if (FAILED(hResult)) return; @@ -898,6 +951,7 @@ TFileDialog iDialog = impl_getBaseDialogInterface(); TFileOpenDialog iOpen = m_iDialogOpen; TFileSaveDialog iSave = m_iDialogSave; + TFolderPickerDialog iPick = m_iFolderPicker; // it's important to know if we are showing the dialog. // Some dialog interface methods can't be called then or some @@ -977,6 +1031,9 @@ else if (iSave.is()) hResult = iSave->Show( m_hParentWindow ); // parent window needed + else + if (iPick.is()) + hResult = iPick->Show( m_hParentWindow ); // parent window needed } catch(...) {} @@ -1006,6 +1063,8 @@ m_iDialogOpen.query(&iDialog); if (m_iDialogSave.is()) m_iDialogSave.query(&iDialog); + if (m_iFolderPicker.is()) + m_iFolderPicker.query(&iDialog); return iDialog; } @@ -1022,6 +1081,8 @@ m_iDialogOpen.query(&iCustom); else if (m_iDialogSave.is()) m_iDialogSave.query(&iCustom); + else if (m_iFolderPicker.is()) + m_iFolderPicker.query(&iCustom); return iCustom; } diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -109,6 +109,7 @@ E_GET_CURRENT_FILTER, E_CREATE_OPEN_DIALOG, E_CREATE_SAVE_DIALOG, + E_CREATE_FOLDER_PICKER, E_SET_MULTISELECTION_MODE, E_SET_TITLE, E_SET_FILENAME, @@ -182,6 +183,10 @@ void impl_sta_CreateSaveDialog(const RequestRef& rRequest); + /// implementation of request E_CREATE_FOLDER_PICKER + void impl_sta_CreateFolderPicker(const RequestRef& rRequest); + + /// implementation of request E_SET_MULTISELECTION_MODE void impl_sta_SetMultiSelectionMode(const RequestRef& rRequest); @@ -272,6 +277,14 @@ void impl_SetDefaultExtension( const OUString& currentFilter ); private: + enum class PickerDialog + { + FileOpen, + FileSave, + Folder, + }; + + void impl_sta_CreateDialog(const RequestRef& rRequest, PickerDialog eType, DWORD nOrFlags); /// COM object representing a file open dialog @@ -282,6 +295,10 @@ TFileSaveDialog m_iDialogSave; + /// COM object representing a folder picker dialog + TFolderPickerDialog m_iFolderPicker; + + /// knows the return state of the last COM call HRESULT m_hLastResult; diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/vistatypes.h libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/vistatypes.h --- libreoffice-l10n-6.1.4/fpicker/source/win32/filepicker/vistatypes.h 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/filepicker/vistatypes.h 2019-01-30 17:56:45.000000000 +0000 @@ -36,6 +36,7 @@ typedef ComPtr< IFileSaveDialog , IID_IFileSaveDialog , CLSID_FileSaveDialog > TFileSaveDialog; typedef ComPtr< IFileDialogEvents , IID_IFileDialogEvents > TFileDialogEvents; typedef ComPtr< IFileDialogCustomize, IID_IFileDialogCustomize > TFileDialogCustomize; +typedef TFileOpenDialog TFolderPickerDialog; } // namespace vista } // namespace win32 diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FolderPicker.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FolderPicker.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FolderPicker.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FolderPicker.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,134 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include -#include - -#include "FolderPicker.hxx" -#include -#include "WinFOPImpl.hxx" - -using com::sun::star::uno::Reference; -using com::sun::star::uno::RuntimeException; -using com::sun::star::uno::Sequence; -using com::sun::star::lang::XMultiServiceFactory; -using com::sun::star::lang::XServiceInfo; -using com::sun::star::lang::IllegalArgumentException; -using osl::MutexGuard; - -using namespace cppu; -using namespace com::sun::star::ui::dialogs; - -#define FOLDERPICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FolderPicker" - -namespace -{ - Sequence< OUString > FolderPicker_getSupportedServiceNames() - { - Sequence< OUString > aRet { "com.sun.star.ui.dialogs.SystemFolderPicker" }; - return aRet; - } -} - -CFolderPicker::CFolderPicker( const Reference< XMultiServiceFactory >& xServiceMgr ) : - m_xServiceMgr( xServiceMgr ) -{ - m_pFolderPickerImpl = std::unique_ptr< CWinFolderPickerImpl > ( new CWinFolderPickerImpl( this ) ); -} - -void SAL_CALL CFolderPicker::setTitle( const OUString& aTitle ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - m_pFolderPickerImpl->setTitle( aTitle ); -} - -void SAL_CALL CFolderPicker::setDisplayDirectory( const OUString& aDirectory ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - m_pFolderPickerImpl->setDisplayDirectory( aDirectory ); -} - -OUString SAL_CALL CFolderPicker::getDisplayDirectory( ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - return m_pFolderPickerImpl->getDisplayDirectory( ); -} - -OUString SAL_CALL CFolderPicker::getDirectory( ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - return m_pFolderPickerImpl->getDirectory( ); -} - -void SAL_CALL CFolderPicker::setDescription( const OUString& aDescription ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - m_pFolderPickerImpl->setDescription( aDescription ); -} - -sal_Int16 SAL_CALL CFolderPicker::execute( ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - - // we should not block in this call else - // in the case of an event the client can'tgetPImplFromHandle( hWnd ) - // call another function and we run into a - // deadlock !!!!! - return m_pFolderPickerImpl->execute( ); -} - -// XServiceInfo - -OUString SAL_CALL CFolderPicker::getImplementationName( ) -{ - return OUString( FOLDERPICKER_IMPL_NAME ); -} - -sal_Bool SAL_CALL CFolderPicker::supportsService( const OUString& ServiceName ) -{ - return cppu::supportsService(this, ServiceName); -} - -Sequence< OUString > SAL_CALL CFolderPicker::getSupportedServiceNames( ) -{ - return FolderPicker_getSupportedServiceNames(); -} - -// XCancellable - -void SAL_CALL CFolderPicker::cancel( ) -{ - OSL_ASSERT( m_pFolderPickerImpl.get( ) ); - MutexGuard aGuard( m_aMutex ); - m_pFolderPickerImpl->cancel( ); -} - -// overwrite base class method, which is called -// by base class dispose function - -void CFolderPicker::disposing() -{ -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FolderPicker.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FolderPicker.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FolderPicker.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FolderPicker.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,104 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOLDERPICKER_HXX -#define INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOLDERPICKER_HXX - -#include -#include -#include -#include - -#include - -#include - -#include "WinFOPImpl.hxx" - - -// class declaration - - -class CFolderPicker : - public cppu::WeakImplHelper< - css::ui::dialogs::XFolderPicker2, - css::lang::XServiceInfo > -{ -public: - - // ctor/dtor - explicit CFolderPicker( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceMgr ); - - - // XExecutableDialog - - - virtual void SAL_CALL setTitle( const OUString& aTitle ) override; - - virtual sal_Int16 SAL_CALL execute( ) override; - - - // XFolderPicker functions - - - virtual void SAL_CALL setDisplayDirectory( const OUString& aDirectory ) override; - - virtual OUString SAL_CALL getDisplayDirectory( ) override; - - virtual OUString SAL_CALL getDirectory( ) override; - - virtual void SAL_CALL setDescription( const OUString& aDescription ) override; - - - // XServiceInfo - - - virtual OUString SAL_CALL getImplementationName( ) override; - - virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; - - virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override; - - - // XCancellable - - - virtual void SAL_CALL cancel( ) override; - - - // overwrite base class method, which is called - // by base class dispose function - - - virtual void disposing(); - -private: - css::uno::Reference< css::lang::XMultiServiceFactory > m_xServiceMgr; - std::unique_ptr< CWinFolderPickerImpl > m_pFolderPickerImpl; - osl::Mutex m_aMutex; - -// prevent copy and assignment -private: - CFolderPicker( const CFolderPicker& ); - CFolderPicker& operator=( const CFolderPicker& ); -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FopEvtDisp.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FopEvtDisp.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FopEvtDisp.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FopEvtDisp.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - - -#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOPEVTDISP_HXX -#define INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOPEVTDISP_HXX - -#include - -class CFOPEventDispatcher -{ -public: - - // dispatches a FilePickerEvent to wherever - virtual void helpRequested( css::lang::EventObject aEvent ) const = 0; - -protected: - ~CFOPEventDispatcher() {} -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/FOPServiceInfo.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - - -#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOPSERVICEINFO_HXX -#define INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_FOPSERVICEINFO_HXX - -// the service name is a description of a set of -// interfaces (is the same as component categories in COM) - -// the service names -#define FOLDER_PICKER_SERVICE_NAME "com.sun.star.ui.dialogs.SystemFolderPicker" - -// the implementation names -#define FOLDER_PICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FolderPicker" - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/MtaFop.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/MtaFop.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/MtaFop.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/MtaFop.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,721 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include -#include -#include -#include - -#include "MtaFop.hxx" -#include -#include -#include "../misc/resourceprovider.hxx" - -#include - - -const sal_uInt32 MSG_BROWSEFORFOLDER = WM_USER + 1; -const sal_uInt32 MSG_SHUTDOWN = WM_USER + 2; - -const sal_uInt32 MAX_WAITTIME = 2000; // msec - -const bool MANUAL_RESET = true; -const bool AUTO_RESET = false; -const bool INIT_NONSIGNALED = false; - -#define FOLDERPICKER_TITLE 500 -#define FOLDER_PICKER_DEF_DESCRIPTION 501 - -namespace -{ - const wchar_t* const FOLDERPICKER_SRV_DLL_NAME = L"fps.dll"; - const wchar_t g_szWndClsName[] = L"FopStaReqWnd###"; - const wchar_t* const CURRENT_INSTANCE = L"CurrInst"; - - struct RequestContext - { - HANDLE hEvent; - bool bRet; - }; - - inline bool InitializeRequestContext( RequestContext* aRequestContext ) - { - OSL_ASSERT( aRequestContext ); - - aRequestContext->hEvent = CreateEventW( - nullptr, AUTO_RESET, INIT_NONSIGNALED, nullptr ); - - aRequestContext->bRet = false; - - return ( nullptr != aRequestContext->hEvent ); - } - - inline void DeinitializeRequestContext( RequestContext* aRequestContext ) - { - OSL_ASSERT( aRequestContext && aRequestContext->hEvent ); - CloseHandle( aRequestContext->hEvent ); - } -} - - -// static member initialization - - -ATOM CMtaFolderPicker::s_ClassAtom = 0; -osl::Mutex CMtaFolderPicker::s_Mutex; -sal_Int32 CMtaFolderPicker::s_StaRequestWndRegisterCount = 0; - - -// ctor - - -CMtaFolderPicker::CMtaFolderPicker( sal_uInt32 Flags ) : - m_hStaThread( nullptr ), - m_uStaThreadId( 0 ), - m_hEvtThrdReady( nullptr ), - m_hwndStaRequestWnd( nullptr ) -{ - m_hInstance = GetModuleHandleW( FOLDERPICKER_SRV_DLL_NAME ); - OSL_ENSURE( m_hInstance, "The name of the FolderPicker service dll must have changed" ); - - ZeroMemory( &m_bi, sizeof( m_bi ) ); - - // !!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!! - - // Remember: This HACK prevents you from stepping - // through your code in the debugger because if you - // set a break point in the ctor here the debugger - // may become the owner of the FolderBrowse dialog - // and so it seems that the Visual Studio and the - // office are hanging - m_bi.hwndOwner = GetForegroundWindow( ); - - /* - Flag Available - -------------------------------- - BIF_EDITBOX Version 4.71 - BIF_NEWDIALOGSTYLE Version 5.0 - BIF_SHAREABLE Version 5.0 - BIF_VALIDATE Version 4.71 - - Version 4.71 - Internet Explorer 4.0 - Version 5.0 - Internet Explorer 5.0 - Windows 2000 - */ - m_bi.ulFlags = Flags; - - m_bi.lpfn = CMtaFolderPicker::FolderPickerCallback; - m_bi.lParam = reinterpret_cast< LPARAM >( this ); - - m_dialogTitle = CResourceProvider::getResString(FOLDERPICKER_TITLE); - m_Description = CResourceProvider::getResString(FOLDER_PICKER_DEF_DESCRIPTION); - - // signals that the thread was successfully set up - m_hEvtThrdReady = CreateEventW( - nullptr, - MANUAL_RESET, - INIT_NONSIGNALED, - nullptr ); - - if ( m_hEvtThrdReady ) - { - // setup the sta thread - m_hStaThread = reinterpret_cast(_beginthreadex( - nullptr, - 0, - CMtaFolderPicker::StaThreadProc, - this, - 0, - &m_uStaThreadId )); - - OSL_ASSERT( m_hStaThread ); - } - - OSL_ASSERT( m_hEvtThrdReady ); -} - - -// dtor - - -CMtaFolderPicker::~CMtaFolderPicker( ) -{ - // only if the is a valid event handle - // there may also be a thread a hidden - // target request window and so on - // see ctor - if ( m_hEvtThrdReady ) - { - // block calling threads because we - // are about to shutdown - ResetEvent( m_hEvtThrdReady ); - - // force the destruction of the sta thread request window - // and the end of the thread - // remember: DestroyWindow may only be called from within - // the thread that created the window - if ( IsWindow( m_hwndStaRequestWnd ) ) - { - SendMessageW( m_hwndStaRequestWnd, MSG_SHUTDOWN, 0, 0 ); - - // we place unregister class here because - // if we have a valid window we must have - // successfully registered a window class - // if the creation of the window itself - // failed after registering the window - // class we have unregistered it immediately - // in createStaRequestWindow below - UnregisterStaRequestWindowClass( ); - } - - if ( m_hStaThread ) - { - // wait for thread shutdown - sal_uInt32 dwResult = WaitForSingleObject( m_hStaThread, MAX_WAITTIME ); - OSL_ENSURE( dwResult == WAIT_OBJECT_0, "sta thread could not terminate" ); - - // terminate the thread if it - // doesn't shutdown itself - if ( WAIT_OBJECT_0 != dwResult ) - TerminateThread( - m_hStaThread, sal::static_int_cast< DWORD >(-1) ); - - CloseHandle( m_hStaThread ); - } - - CloseHandle( m_hEvtThrdReady ); - } -} - - -bool CMtaFolderPicker::browseForFolder( ) -{ - bool bRet = false; - - OSL_ASSERT( m_hEvtThrdReady ); - - if ( WaitForSingleObject( m_hEvtThrdReady, MAX_WAITTIME ) != WAIT_OBJECT_0 ) - { - OSL_FAIL( "sta thread not ready" ); - return false; - } - - RequestContext aReqCtx; - - if ( !InitializeRequestContext( &aReqCtx ) ) - { - OSL_ASSERT( false ); - return false; - } - - // marshall request into the sta thread - BOOL const ret = PostMessageW( - m_hwndStaRequestWnd, - MSG_BROWSEFORFOLDER, - 0, - reinterpret_cast< LPARAM >( &aReqCtx ) ); - SAL_WARN_IF(0 == ret, "fpicker", "ERROR: PostMessage() failed!"); - - // waiting for the event to be signaled or - // window messages so that we don't block - // our parent window - - bool bContinue = true; - - while ( bContinue ) - { - DWORD dwResult = MsgWaitForMultipleObjects( - 1, &aReqCtx.hEvent, false, INFINITE, QS_ALLEVENTS ); - - switch ( dwResult ) - { - // the request context event is signaled - case WAIT_OBJECT_0: - bContinue = false; - break; - - // a window message has arrived - case WAIT_OBJECT_0 + 1: - Application::Reschedule( true ); - break; - - // should not happen - default: - OSL_ASSERT( false ); - } - } - - /*sal_Bool*/ bRet = aReqCtx.bRet; - DeinitializeRequestContext( &aReqCtx ); - - return bRet; -} - - -void CMtaFolderPicker::setDisplayDirectory( const OUString& aDirectory ) -{ - m_displayDir = aDirectory; -} - - -OUString CMtaFolderPicker::getDisplayDirectory( ) -{ - return m_displayDir; -} - - -OUString CMtaFolderPicker::getDirectory( ) -{ - return m_SelectedDir; -} - - -void CMtaFolderPicker::setDescription( const OUString& aDescription ) -{ - m_Description = aDescription; -} - - -void CMtaFolderPicker::setTitle( const OUString& aTitle ) -{ - m_dialogTitle = aTitle; -} - - -OUString CMtaFolderPicker::getTitle( ) -{ - return m_dialogTitle; -} - - -// XCancellable - - -void CMtaFolderPicker::cancel( ) -{ - if ( IsWindow( m_hwnd ) ) - { - // simulate a mouse click to the - // cancel button - BOOL const ret = PostMessageW( - m_hwnd, - WM_COMMAND, - MAKEWPARAM( IDCANCEL, BN_CLICKED ), - reinterpret_cast(GetDlgItem( m_hwnd, IDCANCEL )) ); - SAL_WARN_IF(0 == ret, "fpicker", "ERROR: PostMessage() failed!"); - } -} - - -bool CMtaFolderPicker::onBrowseForFolder( ) -{ - bool bRet; - LPITEMIDLIST lpiid; - - // pre SHBrowseFroFolder - - m_bi.pidlRoot = nullptr; - m_bi.pszDisplayName = o3tl::toW(m_pathBuff); - - if ( m_Description.getLength( ) ) - m_bi.lpszTitle = o3tl::toW(m_Description.getStr( )); - - lpiid = SHBrowseForFolderW( &m_bi ); - bRet = ( nullptr != lpiid ); - - // post SHBrowseForFolder - - m_SelectedDir = getPathFromItemIdList( lpiid ); - releaseItemIdList( lpiid ); - - return bRet; -} - - -void CMtaFolderPicker::releaseItemIdList( LPITEMIDLIST lpItemIdList ) -{ - sal::systools::COMReference pIMalloc; - SHGetMalloc(&pIMalloc); - if (pIMalloc.is()) - { - pIMalloc->Free(lpItemIdList); - lpItemIdList = nullptr; - } -} - - -LPITEMIDLIST CMtaFolderPicker::getItemIdListFromPath( const OUString& aDirectory ) -{ - // parameter checking - if ( !aDirectory.getLength( ) ) - return nullptr; - - LPITEMIDLIST lpItemIdList(nullptr); - - sal::systools::COMReference pIShellFolder; - SHGetDesktopFolder(&pIShellFolder); - - if (pIShellFolder.is()) - { - pIShellFolder->ParseDisplayName( - nullptr, - nullptr, - const_cast(o3tl::toW( aDirectory.getStr( ) )), - nullptr, - &lpItemIdList, - nullptr ); - } - - return lpItemIdList; -} - - -OUString CMtaFolderPicker::getPathFromItemIdList( LPCITEMIDLIST lpItemIdList ) -{ - OUString path; - - if ( lpItemIdList ) - { - bool bRet = SHGetPathFromIDListW( lpItemIdList, o3tl::toW(m_pathBuff) ); - if ( bRet ) - path = m_pathBuff; - } - - return path; -} - - -void CMtaFolderPicker::enableOk( bool bEnable ) -{ - OSL_ASSERT( IsWindow( m_hwnd ) ); - - SendMessageW( - m_hwnd, - BFFM_ENABLEOK, - static_cast< WPARAM >( 0 ), - static_cast< LPARAM >( bEnable ) ); -} - - -void CMtaFolderPicker::setSelection( const OUString& aDirectory ) -{ - OSL_ASSERT( IsWindow( m_hwnd ) ); - - SendMessageW( - m_hwnd, - BFFM_SETSELECTIONW, - static_cast< WPARAM >( true ), - reinterpret_cast< LPARAM >( aDirectory.getStr( ) ) ); -} - - -void CMtaFolderPicker::setStatusText( const OUString& aStatusText ) -{ - OSL_ASSERT( IsWindow( m_hwnd ) ); - - SendMessageW( - m_hwnd, - BFFM_SETSTATUSTEXTW, - static_cast< WPARAM >( 0 ), - reinterpret_cast< LPARAM >( aStatusText.getStr( ) ) ); -} - - -void CMtaFolderPicker::onInitialized( ) -{ - LPITEMIDLIST lpiidDisplayDir = getItemIdListFromPath( m_displayDir ); - - if ( lpiidDisplayDir ) - { - SendMessageW( - m_hwnd, - BFFM_SETSELECTION, - WPARAM(false), - reinterpret_cast(lpiidDisplayDir) ); - - releaseItemIdList( lpiidDisplayDir ); - } -} - - -sal_uInt32 CMtaFolderPicker::onValidateFailed() -{ - // to be overwritten by subclasses - return 1; -} - - -int CALLBACK CMtaFolderPicker::FolderPickerCallback( HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData ) -{ - CMtaFolderPicker* pImpl = reinterpret_cast< CMtaFolderPicker* >( lpData ); - OSL_ASSERT( pImpl ); - - int nRC = 0; - - switch( uMsg ) - { - case BFFM_INITIALIZED: - pImpl->m_hwnd = hwnd; - pImpl->onInitialized( ); - SetWindowTextW( hwnd, o3tl::toW(pImpl->m_dialogTitle.getStr()) ); - break; - - case BFFM_SELCHANGED: - pImpl->m_hwnd = hwnd; - pImpl->onSelChanged( - pImpl->getPathFromItemIdList( - reinterpret_cast< LPITEMIDLIST >( lParam ) ) ); - break; - - case BFFM_VALIDATEFAILEDW: - nRC = CMtaFolderPicker::onValidateFailed(); - break; - - default: - OSL_ASSERT( false ); - } - - return nRC; -} - - -// the window proc - - -LRESULT CALLBACK CMtaFolderPicker::StaWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) -{ - LRESULT lResult = 0; - CMtaFolderPicker* pImpl = nullptr; - - /* - we connect to the belonging class instance of this - window using SetProp, GetProp etc. - this may fail if somehow the class instance destroyed - before the window - */ - - switch( uMsg ) - { - case WM_CREATE: - { - LPCREATESTRUCTW lpcs = - reinterpret_cast< LPCREATESTRUCTW >( lParam ); - - OSL_ASSERT( lpcs->lpCreateParams ); - - // connect the instance handle to the window - SetPropW( hWnd, CURRENT_INSTANCE, lpcs->lpCreateParams ); - } - break; - - case WM_NCDESTROY: - // RemoveProp returns the saved value on success - pImpl = static_cast< CMtaFolderPicker* >( - RemovePropW( hWnd, CURRENT_INSTANCE ) ); - - OSL_ASSERT( pImpl && !IsBadReadPtr( pImpl, sizeof( CMtaFolderPicker ) ) ); - break; - - case MSG_BROWSEFORFOLDER: - { - RequestContext* aReqCtx = reinterpret_cast< RequestContext* >( lParam ); - OSL_ASSERT( aReqCtx ); - - pImpl = static_cast< CMtaFolderPicker* >( - GetPropW( hWnd, CURRENT_INSTANCE ) ); - - OSL_ASSERT( pImpl && !IsBadReadPtr( pImpl, sizeof( CMtaFolderPicker ) ) ); - - aReqCtx->bRet = pImpl->onBrowseForFolder( ); - SetEvent( aReqCtx->hEvent ); - } - break; - - case MSG_SHUTDOWN: - pImpl = static_cast< CMtaFolderPicker* >( - GetPropW( hWnd, CURRENT_INSTANCE ) ); - - OSL_ASSERT( pImpl && !IsBadReadPtr( pImpl, sizeof( CMtaFolderPicker ) ) ); - - DestroyWindow( pImpl->m_hwndStaRequestWnd ); - break; - - case WM_DESTROY: - PostQuitMessage( 0 ); - break; - - default: - lResult = DefWindowProcW( hWnd, uMsg, wParam, lParam ); - break; - } - - return lResult; -} - - -bool CMtaFolderPicker::createStaRequestWindow( ) -{ - bool bIsWnd = false; - - if ( RegisterStaRequestWindowClass( ) ) - { - m_hwndStaRequestWnd = CreateWindowW( - g_szWndClsName, nullptr, - 0, 0, 0, 0, 0, - nullptr, nullptr, m_hInstance, - this // provide the instance of the class - ); - - bIsWnd = IsWindow( m_hwndStaRequestWnd ); - - // we do immediately unregister the window class - // if the creation of the window fails because we - // don't want to spoil the register class counter - if ( !bIsWnd ) - UnregisterStaRequestWindowClass( ); - - OSL_ENSURE( bIsWnd, "sta request window creation failed" ); - } - - return bIsWnd; -} - - -unsigned int CMtaFolderPicker::run( ) -{ - OSL_ASSERT( m_hEvtThrdReady ); - - // setup an sta environment - HRESULT hr = CoInitialize( nullptr ); - - // if we can't setup an sta environment - // we stop here and return - if ( FAILED( hr ) ) - { - OSL_FAIL( "CoInitialize failed" ); - return sal::static_int_cast< unsigned int >(-1); - } - - unsigned int nRet; - - if ( createStaRequestWindow( ) ) - { - SetEvent( m_hEvtThrdReady ); - - // pumping messages - MSG msg; - while( GetMessageW( &msg, nullptr, 0, 0 ) ) - DispatchMessageW( &msg ); - - nRet = 0; - } - else - { - OSL_FAIL( "failed to create sta thread" ); - nRet = sal::static_int_cast< unsigned int >(-1); - } - - // shutdown sta environment - CoUninitialize( ); - - return nRet; -} - - -unsigned int WINAPI CMtaFolderPicker::StaThreadProc( LPVOID pParam ) -{ - osl_setThreadName("fpicker CMtaFolderPicker::run()"); - - CMtaFolderPicker* pInst = - static_cast( pParam ); - - OSL_ASSERT( pInst ); - - HRESULT hr = OleInitialize( nullptr ); - - unsigned int result = pInst->run( ); - - if ( SUCCEEDED( hr ) ) - OleUninitialize(); - - return result; -} - - -ATOM CMtaFolderPicker::RegisterStaRequestWindowClass( ) -{ - osl::MutexGuard aGuard( s_Mutex ); - - if ( 0 == s_ClassAtom ) - { - WNDCLASSEXW wcex; - - ZeroMemory( &wcex, sizeof( wcex ) ); - - wcex.cbSize = sizeof(wcex); - wcex.style = 0; - wcex.lpfnWndProc = CMtaFolderPicker::StaWndProc; - wcex.cbClsExtra = 0; - wcex.cbWndExtra = 0; - wcex.hInstance = m_hInstance; - wcex.hIcon = nullptr; - wcex.hCursor = nullptr; - wcex.hbrBackground = nullptr; - wcex.lpszMenuName = nullptr; - wcex.lpszClassName = g_szWndClsName; - wcex.hIconSm = nullptr; - - s_ClassAtom = RegisterClassExW( &wcex ); - OSL_ASSERT( s_ClassAtom ); - } - - // increment the register class counter - // so that we keep track of the number - // of class registrations - if ( 0 != s_ClassAtom ) - s_StaRequestWndRegisterCount++; - - return s_ClassAtom; -} - - -void CMtaFolderPicker::UnregisterStaRequestWindowClass( ) -{ - osl::MutexGuard aGuard( s_Mutex ); - - OSL_ASSERT( 0 != s_ClassAtom ); - - // update the register class counter - // and unregister the window class if - // counter drops to zero - if ( 0 != s_ClassAtom ) - { - s_StaRequestWndRegisterCount--; - OSL_ASSERT( s_StaRequestWndRegisterCount >= 0 ); - } - - if ( 0 == s_StaRequestWndRegisterCount ) - { - UnregisterClass( MAKEINTATOM(s_ClassAtom), m_hInstance ); - - s_ClassAtom = 0; - } -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/MtaFop.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/MtaFop.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/MtaFop.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/MtaFop.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,137 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_MTAFOP_HXX -#define INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_MTAFOP_HXX - -#include - -#include -#include -#include -#include -#include - -#include -#include -#include -#include "../misc/WinImplHelper.hxx" - -// the Mta-Ole clipboard class is for internal use only! -// only one instance of this class should be created, the -// user has to ensure this! -// the class is not thread-safe because it will be used -// only from within the clipboard service and the methods -// of the clipboard service are already synchronized - - -class CMtaFolderPicker -{ -public: - explicit CMtaFolderPicker( sal_uInt32 Flags ); - virtual ~CMtaFolderPicker( ); - - // shell functions - bool browseForFolder( ); - - virtual void setDisplayDirectory( const OUString& aDirectory ); - virtual OUString getDisplayDirectory( ); - virtual OUString getDirectory( ); - - virtual void setDescription( const OUString& aDescription ); - - virtual void setTitle( const OUString& aTitle ); - OUString getTitle( ); - - - // XCancellable - - - virtual void cancel( ); - -protected: - void enableOk( bool bEnable ); - void setSelection( const OUString& aDirectory ); - void setStatusText( const OUString& aStatusText ); - - virtual void onInitialized( ); - virtual void onSelChanged( const OUString& aNewPath ) = 0; - -private: - static sal_uInt32 onValidateFailed(); - - // helper functions - static LPITEMIDLIST getItemIdListFromPath( const OUString& aDirectory ); - OUString getPathFromItemIdList( LPCITEMIDLIST lpItemIdList ); - static void releaseItemIdList( LPITEMIDLIST lpItemIdList ); - - unsigned int run( ); - - // create a hidden windows which serves as an request - // target; so we guarantee synchronization - bool createStaRequestWindow( ); - - - // message handler functions; remember these functions are called - // from a different thread context! - - - bool onBrowseForFolder( ); - - static LRESULT CALLBACK StaWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ); - static unsigned int WINAPI StaThreadProc( LPVOID pParam ); - - static int CALLBACK FolderPickerCallback( HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData ); - -protected: - HWND m_hwnd; - -private: - ATOM RegisterStaRequestWindowClass( ); - void UnregisterStaRequestWindowClass( ); - -private: - HANDLE m_hStaThread; - unsigned m_uStaThreadId; - HANDLE m_hEvtThrdReady; - HWND m_hwndStaRequestWnd; - OUString m_dialogTitle; - OUString m_Description; - OUString m_displayDir; - OUString m_SelectedDir; - BROWSEINFOW m_bi; - sal_Unicode m_pathBuff[32000]; // max path length under Win2000 - HINSTANCE m_hInstance; - - // the request window class has to be registered only - // once per process, so multiple instance of this class - // share the registered window class - static ATOM s_ClassAtom; - static osl::Mutex s_Mutex; - static sal_Int32 s_StaRequestWndRegisterCount; - -// prevent copy and assignment -private: - CMtaFolderPicker( const CMtaFolderPicker& ); - CMtaFolderPicker& operator=( const CMtaFolderPicker& ); -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/WinFOPImpl.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/WinFOPImpl.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/WinFOPImpl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/WinFOPImpl.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,117 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "WinFOPImpl.hxx" - -#include -#include "FopEvtDisp.hxx" -#include -#include "FolderPicker.hxx" - -using com::sun::star::uno::RuntimeException; -using com::sun::star::lang::IllegalArgumentException; - -using namespace com::sun::star::ui::dialogs; -using osl::FileBase; - -const OUString BACKSLASH( "\\" ); - -CWinFolderPickerImpl::CWinFolderPickerImpl( CFolderPicker* aFolderPicker ) : - CMtaFolderPicker( BIF_RETURNONLYFSDIRS | BIF_RETURNFSANCESTORS | BIF_EDITBOX | BIF_VALIDATE ), - m_pFolderPicker( aFolderPicker ), - m_nLastDlgResult( css::ui::dialogs::ExecutableDialogResults::CANCEL ) -{ -} - -// get directory in URL format, convert it to system format and set the -// member variable -// If the given URL for the directory is invalid the function throws an -// IllegalArgumentException -// If the specified path is well formed but invalid for the underlying -// OS the FolderPicker starts in the root of the file system hierarchy - -void CWinFolderPickerImpl::setDisplayDirectory( const OUString& aDirectory ) -{ - OUString sysDir; - - if( aDirectory.getLength( ) ) - { - // assuming that this function succeeds after successful execution - // of getAbsolutePath - ::osl::FileBase::RC rc = - ::osl::FileBase::getSystemPathFromFileURL( aDirectory, sysDir ); - - if ( ::osl::FileBase::E_None != rc ) - throw IllegalArgumentException( - "directory is not a valid file url", - static_cast< cppu::OWeakObject * >( m_pFolderPicker ), - 1 ); - - // we ensure that there is a trailing '/' at the end of - // he given file url, because the windows functions only - // works correctly when providing "c:\" or an environment - // variable like "=c:=c:\.." etc. is set, else the - // FolderPicker would stand in the root of the shell - // hierarchy which is the desktop folder - if ( sysDir.lastIndexOf( BACKSLASH ) != (sysDir.getLength( ) - 1) ) - sysDir += BACKSLASH; - } - - // call base class method - CMtaFolderPicker::setDisplayDirectory( sysDir ); -} - -// we return the directory in URL format - -OUString CWinFolderPickerImpl::getDisplayDirectory( ) -{ - // call base class method to get the directory in system format - OUString displayDirectory = CMtaFolderPicker::getDisplayDirectory( ); - - OUString displayDirectoryURL; - if ( displayDirectory.getLength( ) ) - ::osl::FileBase::getFileURLFromSystemPath( displayDirectory, displayDirectoryURL ); - - return displayDirectoryURL; -} - -OUString CWinFolderPickerImpl::getDirectory( ) -{ - OUString sysDir = CMtaFolderPicker::getDirectory( ); - OUString dirURL; - - if ( sysDir.getLength( ) ) - ::osl::FileBase::getFileURLFromSystemPath( sysDir, dirURL ); - - return dirURL; -} - -sal_Int16 CWinFolderPickerImpl::execute( ) -{ - return m_nLastDlgResult = CMtaFolderPicker::browseForFolder( ) ? - css::ui::dialogs::ExecutableDialogResults::OK : - css::ui::dialogs::ExecutableDialogResults::CANCEL; -} - -void CWinFolderPickerImpl::onSelChanged( const OUString& aNewPath ) -{ - setStatusText( aNewPath ); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/WinFOPImpl.hxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/WinFOPImpl.hxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/WinFOPImpl.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/WinFOPImpl.hxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - - -#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_WINFOPIMPL_HXX -#define INCLUDED_FPICKER_SOURCE_WIN32_FOLDERPICKER_WINFOPIMPL_HXX - -#include -#include "MtaFop.hxx" - - -// forward - - -class CFolderPicker; - -class CWinFolderPickerImpl : public CMtaFolderPicker -{ -public: - explicit CWinFolderPickerImpl( CFolderPicker* aFolderPicker ); - - - // XExecutableDialog - - /// @throws css::uno::RuntimeException - virtual sal_Int16 execute( ); - - - // XFolderPicker - - - virtual void setDisplayDirectory( const OUString& aDirectory ) override; - - virtual OUString getDisplayDirectory( ) override; - - virtual OUString getDirectory( ) override; - -protected: - virtual void onSelChanged( const OUString& aNewPath ) override; - -private: - CFolderPicker* m_pFolderPicker; - sal_Int16 m_nLastDlgResult; -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/workbench/makefile.mk libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/workbench/makefile.mk --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/workbench/makefile.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/workbench/makefile.mk 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# -# This file incorporates work covered by the following license notice: -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed -# with this work for additional information regarding copyright -# ownership. The ASF licenses this file to you under the Apache -# License, Version 2.0 (the "License"); you may not use this file -# except in compliance with the License. You may obtain a copy of -# the License at http://www.apache.org/licenses/LICENSE-2.0 . -# - -PRJ=..$/..$/..$/.. - -PRJNAME= sysui -TARGET= testfops -LIBTARGET= NO -TARGETTYPE= CUI - -# --- Settings ----------------------------------------------------- - -.INCLUDE : settings.mk - -.IF "$(COM)" == "MSC" -CFLAGS+=-GR -EHa -.ENDIF - -# --- Files -------------------------------------------------------- - - -OBJFILES= $(OBJ)$/test_fops.obj - -APP1TARGET= test_fops - -APP1OBJS= $(OBJ)$/test_fops.obj - -APP1STDLIBS+= $(CPPULIB) \ - $(CPPUHELPERLIB) \ - $(SALLIB) \ - $(USER32LIB)\ - $(OLE32LIB) - -APP1DEF= $(MISC)$/$(APP1TARGET).def - -# --- Targets ------------------------------------------------------ - -.INCLUDE : target.mk - diff -Nru libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx --- libreoffice-l10n-6.1.4/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/fpicker/source/win32/folderpicker/workbench/Test_fops.cxx 1970-01-01 00:00:00.000000000 +0000 @@ -1,147 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include -#include -#include - -#include - -#include -#include -#include - -#include - -#include - -#include - -#include "..\FOPServiceInfo.hxx" - -#define _WIN32_DCOM - -#if !defined WIN32_LEAN_AND_MEAN -# define WIN32_LEAN_AND_MEAN -#endif -#include - - -// namespaces - - -using namespace ::cppu ; -using namespace ::com::sun::star::uno ; -using namespace ::com::sun::star::lang ; -using namespace ::com::sun::star::ui::dialogs; -using namespace std ; - -#define RDB_SYSPATH "D:\\Projects\\gsl\\sysui\\wntmsci7\\bin\\applicat.rdb" - - -// global variables - - -Reference< XMultiServiceFactory > g_xFactory; - - -// main - - -int SAL_CALL main(int /*nArgc*/, char* /*Argv[]*/, char* /*Env[]*/ ) -{ - CoInitializeEx( NULL, COINIT_MULTITHREADED ); - - printf("Starting test of FolderPicker Service\n"); - - //CreateDeepDirectory( ); - - - // get the global service-manager - - - // Get global factory for uno services. - Reference< XMultiServiceFactory > g_xFactory( createRegistryServiceFactory( RDB_SYSPATH ) ); - - // Print a message if an error occurred. - if ( g_xFactory.is() == sal_False ) - { - OSL_FAIL("Can't create RegistryServiceFactory"); - return(-1); - } - - printf("Creating RegistryServiceFactory successful\n"); - - - // try to get an Interface to a XFilePicker Service - - - Reference< XFolderPicker2 > xFolderPicker( g_xFactory->createInstance( FOLDER_PICKER_SERVICE_NAME ), UNO_QUERY ); - - if ( xFolderPicker.is() == sal_False ) - { - OSL_FAIL( "Error creating FolderPicker Service" ); - return(-1); - } - - try - { - xFolderPicker->setDisplayDirectory( L"file:///C|" ); - xFolderPicker->setTitle( L"FolderBrowse Dialog" ); - xFolderPicker->execute( ); - - OUString rootDir = xFolderPicker->getDisplayDirectory( ); - OUString selectedDir = xFolderPicker->getDirectory( ); - - xFolderPicker->setDisplayDirectory( selectedDir ); - xFolderPicker->execute( ); - - rootDir = xFolderPicker->getDisplayDirectory( ); - selectedDir = xFolderPicker->getDirectory( ); - } - catch( css::uno::Exception& ) - { - MessageBox( NULL, "Exception caught!", "Error", MB_OK ); - } - - - // shutdown - - - // Cast factory to XComponent - Reference< XComponent > xComponent( g_xFactory, UNO_QUERY ); - - // Print a message if an error occurred. - if ( xComponent.is() == sal_False ) - { - OSL_FAIL("Error shuting down"); - } - - // Dispose and clear factory - xComponent->dispose(); - g_xFactory.clear(); - - printf("Test successful\n"); - - CoUninitialize( ); - - return 0; -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/.gitreview libreoffice-l10n-6.1.5~rc2/.gitreview --- libreoffice-l10n-6.1.4/.gitreview 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/.gitreview 2019-01-30 17:56:45.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-6-1-4 +defaultbranch=libreoffice-6-1-5 Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/res/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/res/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/res/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/res/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/source/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/source/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/source/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/source/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/links.txt --- libreoffice-l10n-6.1.4/icon-themes/breeze/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -1133,8 +1133,8 @@ # extensions # ============================================== extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/source/scanner/minus.png -extensions/res/buttonplus.png extensions/source/scanner/plus.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png # formula # ============================================== Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/res/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/res/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/res/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/res/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/source/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/source/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/source/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/source/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/breeze_dark/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_dark/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/links.txt --- libreoffice-l10n-6.1.4/icon-themes/breeze_dark/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_dark/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -1133,8 +1133,8 @@ # extensions # ============================================== extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/source/scanner/minus.png -extensions/res/buttonplus.png extensions/source/scanner/plus.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png # formula # ============================================== diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/scanner/minus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,6 @@ + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/scanner/plus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,6 @@ + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_16.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,6 @@ + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/res/update/ui/onlineupdate_26.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,6 @@ + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/scanner/minus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/scanner/plus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_16.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_26.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/extensions/source/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/breeze_svg/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/links.txt --- libreoffice-l10n-6.1.4/icon-themes/breeze_svg/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/breeze_svg/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -1133,8 +1133,8 @@ # extensions # ============================================== extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/source/scanner/minus.png -extensions/res/buttonplus.png extensions/source/scanner/plus.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png # formula # ============================================== Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/res/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/res/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/res/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/res/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/res/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/res/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/source/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/source/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/source/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/source/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/source/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/source/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/colibre/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/links.txt --- libreoffice-l10n-6.1.4/icon-themes/colibre/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -1114,8 +1114,8 @@ # extensions # ============================================== extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/source/scanner/minus.png -extensions/res/buttonplus.png extensions/source/scanner/plus.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png # formula # ============================================== diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/handle.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/handle.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/handle.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/handle.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/minus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/scanner/plus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_16.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/res/update/ui/onlineupdate_26.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/handle.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/handle.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/handle.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/handle.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/minus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/scanner/plus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_16.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_26.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/colibre_svg/extensions/source/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - \ No newline at end of file Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/res/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/res/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/res/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/res/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/source/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/source/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/source/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/source/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/elementary/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/links.txt --- libreoffice-l10n-6.1.4/icon-themes/elementary/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -949,8 +949,8 @@ # extensions # ============================================== extensions/res/arrow.png cmd/sc_nextrecord.png -extensions/res/buttonminus.png extensions/source/scanner/minus.png -extensions/res/buttonplus.png extensions/source/scanner/plus.png +extensions/res/buttonminus.png extensions/res/scanner/minus.png +extensions/res/buttonplus.png extensions/res/scanner/plus.png # formula # ============================================== diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/scanner/minus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,125 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/scanner/plus.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,109 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_16.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/res/update/ui/onlineupdate_26.svg 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,256 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/scanner/minus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/scanner/minus.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/scanner/minus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/scanner/minus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,125 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/scanner/plus.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/scanner/plus.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/scanner/plus.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/scanner/plus.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,109 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_16.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_16.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_16.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_16.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,331 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff -Nru libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_26.svg libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_26.svg --- libreoffice-l10n-6.1.4/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_26.svg 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/elementary_svg/extensions/source/update/ui/onlineupdate_26.svg 1970-01-01 00:00:00.000000000 +0000 @@ -1,256 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/res/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/res/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/res/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/res/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/res/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/res/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/source/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/source/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/source/scanner/minus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/source/scanner/minus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/source/scanner/plus.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/source/scanner/plus.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/links.txt --- libreoffice-l10n-6.1.4/icon-themes/karasa_jaga/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/karasa_jaga/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -850,8 +850,8 @@ cmd/sc_zoomtoolbox.png cmd/sc_zoom.png desktop/res/extension_16.png cmd/sc_addons.png desktop/res/extension_32.png cmd/32/addons.png -extensions/source/scanner/minus.png res/minus.png -extensions/source/scanner/plus.png res/plus.png +extensions/res/scanner/minus.png res/minus.png +extensions/res/scanner/plus.png res/plus.png formula/res/fx.png cmd/sc_insertformula.png framework/res/addtemplate_32.png cmd/32/newdoc.png framework/res/arrow.png cmd/sc_nextrecord.png Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/res/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/res/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/res/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/res/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/res/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/res/update/ui/onlineupdate_26.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/source/scanner/handle.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/source/scanner/handle.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/source/update/ui/onlineupdate_16.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/source/update/ui/onlineupdate_16.png differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/icon-themes/tango/extensions/source/update/ui/onlineupdate_26.png and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/icon-themes/tango/extensions/source/update/ui/onlineupdate_26.png differ diff -Nru libreoffice-l10n-6.1.4/icon-themes/tango/links.txt libreoffice-l10n-6.1.5~rc2/icon-themes/tango/links.txt --- libreoffice-l10n-6.1.4/icon-themes/tango/links.txt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/icon-themes/tango/links.txt 2019-01-30 17:56:45.000000000 +0000 @@ -360,8 +360,8 @@ sfx2/res/styfam1.png sw/res/sf01.png sfx2/res/styfam2.png sw/res/sf02.png sfx2/res/styfam4.png sw/res/sf04.png -extensions/source/scanner/minus.png sfx2/res/minus.png -extensions/source/scanner/plus.png sfx2/res/plus.png +extensions/res/scanner/minus.png sfx2/res/minus.png +extensions/res/scanner/plus.png sfx2/res/plus.png res/minus.png sfx2/res/minus.png res/plus.png sfx2/res/plus.png sc/res/sf02.png sw/res/sf04.png diff -Nru libreoffice-l10n-6.1.4/include/oox/drawingml/shape.hxx libreoffice-l10n-6.1.5~rc2/include/oox/drawingml/shape.hxx --- libreoffice-l10n-6.1.4/include/oox/drawingml/shape.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/include/oox/drawingml/shape.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -214,6 +214,14 @@ const LinkedTxbxAttr& getLinkedTxbxAttributes() { return maLinkedTxbxAttr; }; bool isLinkedTxbx() { return mbHasLinkedTxbx; }; + void setZOrder(sal_Int32 nZOrder) { mnZOrder = nZOrder; } + + sal_Int32 getZOrder() const { return mnZOrder; } + + void setZOrderOff(sal_Int32 nZOrderOff) { mnZOrderOff = nZOrderOff; } + + sal_Int32 getZOrderOff() const { return mnZOrderOff; } + protected: css::uno::Reference< css::drawing::XShape > const & @@ -327,6 +335,12 @@ bool mbHasLinkedTxbx; // this text box has linked text box ? css::uno::Sequence maDiagramDoms; + + /// Z-Order. + sal_Int32 mnZOrder = 0; + + /// Z-Order offset. + sal_Int32 mnZOrderOff = 0; }; } } diff -Nru libreoffice-l10n-6.1.4/include/svx/unoshprp.hxx libreoffice-l10n-6.1.5~rc2/include/svx/unoshprp.hxx --- libreoffice-l10n-6.1.4/include/svx/unoshprp.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/include/svx/unoshprp.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -431,7 +431,7 @@ { OUString(UNO_NAME_GRAPHOBJ_GRAFSTREAMURL), OWN_ATTR_GRAFSTREAMURL , ::cppu::UnoType::get(), css::beans::PropertyAttribute::MAYBEVOID, 0 }, \ { OUString(UNO_NAME_GRAPHOBJ_FILLBITMAP), OWN_ATTR_VALUE_FILLBITMAP , cppu::UnoType::get() , 0, 0}, \ { OUString(UNO_NAME_GRAPHOBJ_GRAPHIC), OWN_ATTR_VALUE_GRAPHIC , cppu::UnoType::get() , 0, 0}, \ - { OUString(UNO_NAME_GRAPHOBJ_GRAPHIC_URL), OWN_ATTR_GRAPHIC_URL , cppu::UnoType::get(), 0, 0 }, \ + { OUString(UNO_NAME_GRAPHOBJ_GRAPHIC_URL), OWN_ATTR_GRAPHIC_URL , cppu::UnoType::get(), 0, 0 }, \ { OUString(UNO_NAME_GRAPHOBJ_IS_SIGNATURELINE), OWN_ATTR_IS_SIGNATURELINE , cppu::UnoType::get(), 0, 0}, \ { OUString(UNO_NAME_GRAPHOBJ_SIGNATURELINE_ID), OWN_ATTR_SIGNATURELINE_ID , cppu::UnoType::get(), 0, 0}, \ { OUString(UNO_NAME_GRAPHOBJ_SIGNATURELINE_SUGGESTED_SIGNER_NAME), OWN_ATTR_SIGNATURELINE_SUGGESTED_SIGNER_NAME, cppu::UnoType::get(), 0, 0}, \ diff -Nru libreoffice-l10n-6.1.4/include/vcl/dialog.hxx libreoffice-l10n-6.1.5~rc2/include/vcl/dialog.hxx --- libreoffice-l10n-6.1.4/include/vcl/dialog.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/include/vcl/dialog.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -180,6 +180,7 @@ void add_button(PushButton* pButton, int nResponse, bool bTransferOwnership); void set_default_response(int nResponse); + int get_default_response(); vcl::Window* get_widget_for_response(int nResponse); }; diff -Nru libreoffice-l10n-6.1.4/include/vcl/waitobj.hxx libreoffice-l10n-6.1.5~rc2/include/vcl/waitobj.hxx --- libreoffice-l10n-6.1.4/include/vcl/waitobj.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/include/vcl/waitobj.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -23,6 +23,9 @@ #include #include +#include +#include + class VCL_DLLPUBLIC WaitObject { private: @@ -37,6 +40,18 @@ ~WaitObject(); }; +class VCL_DLLPUBLIC TopLevelWindowLocker +{ +private: + std::stack>> m_aBusyStack; +public: + // lock all toplevels, except the argument + void incBusy(const vcl::Window* pIgnore); + // unlock previous lock + void decBusy(); + bool isBusy() const { return !m_aBusyStack.empty(); } +}; + #endif // INCLUDED_VCL_WAITOBJ_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/include/vcl/winscheduler.hxx libreoffice-l10n-6.1.5~rc2/include/vcl/winscheduler.hxx --- libreoffice-l10n-6.1.4/include/vcl/winscheduler.hxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/include/vcl/winscheduler.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,39 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_VCL_WINSCHEDULER_HXX +#define INCLUDED_VCL_WINSCHEDULER_HXX + +#ifndef _WIN32 +#error This header is just useable on Windows +#else + +#include + +struct VCL_DLLPUBLIC WinScheduler final +{ + /// Hack for Windows native dialogs, which run the main loop, so we can't + /// use the direct processing shortcut. + static void SetForceRealTimer(); +}; + +#endif // _WIN32 +#endif // INCLUDED_VCL_WINSCHEDULER_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt --- libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/AppSearc.idt 2019-01-30 17:56:45.000000000 +0000 @@ -6,3 +6,4 @@ INSTALLLOCATION installmachine INSTALLLOCATION installmachine_ WIN81S14 win81s14 +WINMAJORVER WinMajorVer diff -Nru libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt --- libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/Property.idt 2019-01-30 17:56:45.000000000 +0000 @@ -43,7 +43,7 @@ Quickstarterlinkname QUICKSTARTERLINKNAMETEMPLATE RebootYesNo Yes ReinstallModeText omus -SecureCustomProperties NEWPRODUCTS;OLDPRODUCTS;WIN81S14 +SecureCustomProperties NEWPRODUCTS;OLDPRODUCTS;WIN81S14;WINMAJORVER SetupType Typical SELECT_WORD 0 SELECT_EXCEL 0 diff -Nru libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/RegLocat.idt libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/RegLocat.idt --- libreoffice-l10n-6.1.4/instsetoo_native/inc_openoffice/windows/msi_templates/RegLocat.idt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/instsetoo_native/inc_openoffice/windows/msi_templates/RegLocat.idt 2019-01-30 17:56:45.000000000 +0000 @@ -5,3 +5,4 @@ installuser_ 1 Software\LibreOffice\Layers_\[DEFINEDPRODUCT]\[BRANDPACKAGEVERSION] INSTALLLOCATION 2 installmachine 2 Software\LibreOffice\Layers\[DEFINEDPRODUCT]\[BRANDPACKAGEVERSION] INSTALLLOCATION 2 installmachine_ 2 Software\LibreOffice\Layers_\[DEFINEDPRODUCT]\[BRANDPACKAGEVERSION] INSTALLLOCATION 2 +WinMajorVer 2 Software\Microsoft\Windows NT\CurrentVersion CurrentMajorVersionNumber 2 diff -Nru libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml --- libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_freebsd.xml 2019-01-30 17:56:45.000000000 +0000 @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - 2012-07-12 + 2019-01-19 1.7.0 @@ -31,5 +31,8 @@ 1.5.0 + + 1.8.0 + diff -Nru libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml --- libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_linux.xml 2019-01-30 17:56:45.000000000 +0000 @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - 2013-05-02 + 2019-01-19 1.5.0 @@ -40,5 +40,8 @@ 1.6.0 + + 1.8.0 + diff -Nru libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml --- libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_macosx.xml 2019-01-30 17:56:45.000000000 +0000 @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - 2013-04-09 + 2019-01-19 1.7.0 @@ -31,5 +31,8 @@ 1.6.0 + + 1.8.0 + diff -Nru libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml --- libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_unx.xml 2019-01-30 17:56:45.000000000 +0000 @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - 2011-01-07 + 2019-01-19 1.7.0 @@ -25,5 +25,8 @@ 1.5.0 + + 1.8.0 + diff -Nru libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml --- libreoffice-l10n-6.1.4/jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/distributions/OpenOfficeorg/javavendors_wnt.xml 2019-01-30 17:56:45.000000000 +0000 @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . --> - 2013-05-02 + 2019-01-19 1.6.0 @@ -31,5 +31,8 @@ 1.6.0 + + 1.8.0 + diff -Nru libreoffice-l10n-6.1.4/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx libreoffice-l10n-6.1.5~rc2/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx --- libreoffice-l10n-6.1.4/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/jvmfwk/plugins/sunmajor/pluginlib/vendorlist.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -41,6 +41,7 @@ #endif VENDOR_MAP_ENTRY("Sun Microsystems Inc.", SunInfo) VENDOR_MAP_ENTRY("Oracle Corporation", SunInfo) + VENDOR_MAP_ENTRY("AdoptOpenJdk", SunInfo) #ifndef MACOSX VENDOR_MAP_ENTRY("IBM Corporation", OtherInfo) VENDOR_MAP_ENTRY("Blackdown Java-Linux Team", OtherInfo) diff -Nru libreoffice-l10n-6.1.4/odk/CustomTarget_javadoc.mk libreoffice-l10n-6.1.5~rc2/odk/CustomTarget_javadoc.mk --- libreoffice-l10n-6.1.4/odk/CustomTarget_javadoc.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/odk/CustomTarget_javadoc.mk 2019-01-30 17:56:45.000000000 +0000 @@ -32,7 +32,7 @@ $(call gb_Jar_get_target,ridl) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),JDC,1) $(call gb_Helper_abbreviate_dirs,\ - $(JAVADOC) -J-Xmx120m -use -splitindex \ + $(JAVADOC) -source $(JAVA_SOURCE_VER) -J-Xmx120m -use -splitindex \ -windowtitle "Java UNO Runtime Reference" \ -header "$(PRODUCTNAME) $(PRODUCTVERSION) SDK Java API Reference"\ -tag attention:a:"Attention:" \ diff -Nru libreoffice-l10n-6.1.4/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu libreoffice-l10n-6.1.5~rc2/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu --- libreoffice-l10n-6.1.4/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 2019-01-30 17:56:45.000000000 +0000 @@ -6558,11 +6558,6 @@ Edit with External Tool - - - 3D Model... - - Apply document classification diff -Nru libreoffice-l10n-6.1.4/officecfg/registry/data/org/openoffice/VCL.xcu libreoffice-l10n-6.1.5~rc2/officecfg/registry/data/org/openoffice/VCL.xcu --- libreoffice-l10n-6.1.4/officecfg/registry/data/org/openoffice/VCL.xcu 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/officecfg/registry/data/org/openoffice/VCL.xcu 2019-01-30 17:56:45.000000000 +0000 @@ -47,9 +47,6 @@ Default - - true - diff -Nru libreoffice-l10n-6.1.4/officecfg/registry/schema/org/openoffice/Office/Common.xcs libreoffice-l10n-6.1.5~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs --- libreoffice-l10n-6.1.4/officecfg/registry/schema/org/openoffice/Office/Common.xcs 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/officecfg/registry/schema/org/openoffice/Office/Common.xcs 2019-01-30 17:56:45.000000000 +0000 @@ -1617,7 +1617,7 @@ $(insturl)/@LIBO_SHARE_FOLDER@/config - + Contains the provided dictionaries. diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/chart/seriesconverter.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/chart/seriesconverter.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/chart/seriesconverter.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/chart/seriesconverter.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -124,6 +124,14 @@ return xLabeledSeq; } +void convertTextProperty(PropertySet& rPropSet, ObjectFormatter& rFormatter, + DataLabelModelBase::TextBodyRef xTextProps) +{ + rFormatter.convertTextFormatting( rPropSet, xTextProps, OBJECTTYPE_DATALABEL ); + ObjectFormatter::convertTextRotation( rPropSet, xTextProps, false ); + ObjectFormatter::convertTextWrap( rPropSet, xTextProps ); +} + void lclConvertLabelFormatting( PropertySet& rPropSet, ObjectFormatter& rFormatter, const DataLabelModelBase& rDataLabel, const TypeGroupConverter& rTypeGroup, bool bDataSeriesLabel, bool bMSO2007Doc, const PropertySet* pSeriesPropSet ) @@ -171,10 +179,7 @@ rFormatter.convertNumberFormat( rPropSet, rDataLabel.maNumberFormat, false, bShowPercent ); // data label text formatting (frame formatting not supported by Chart2) - rFormatter.convertTextFormatting( rPropSet, rDataLabel.mxTextProp, OBJECTTYPE_DATALABEL ); - ObjectFormatter::convertTextRotation( rPropSet, rDataLabel.mxTextProp, false ); - ObjectFormatter::convertTextWrap( rPropSet, rDataLabel.mxTextProp ); - + convertTextProperty(rPropSet, rFormatter, rDataLabel.mxTextProp); // data label separator (do not overwrite series separator, if no explicit point separator is present) if( bDataSeriesLabel || rDataLabel.moaSeparator.has() ) @@ -338,6 +343,7 @@ } aPropSet.setProperty( PROP_CustomLabelFields, makeAny( aSequence ) ); + convertTextProperty(aPropSet, getFormatter(), mrModel.mxText->mxTextBody); } } catch( Exception& ) diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/diagramlayoutatoms.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/diagramlayoutatoms.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/diagramlayoutatoms.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -54,6 +54,50 @@ return oRet; } + +/** + * Determines if nUnit is a font unit (measured in points) or not (measured in + * millimeters). + */ +bool isFontUnit(sal_Int32 nUnit) +{ + return nUnit == oox::XML_primFontSz || nUnit == oox::XML_secFontSz; +} + +/// Determines the connector shape type from a linear alg. +sal_Int32 getConnectorType(const oox::drawingml::LayoutNode* pNode) +{ + sal_Int32 nType = oox::XML_rightArrow; + + if (!pNode) + return nType; + + for (const auto& pChild : pNode->getChildren()) + { + auto pAlgAtom = dynamic_cast(pChild.get()); + if (!pAlgAtom) + continue; + + if (pAlgAtom->getType() != oox::XML_lin) + continue; + + sal_Int32 nDir = oox::XML_fromL; + if (pAlgAtom->getMap().count(oox::XML_linDir)) + nDir = pAlgAtom->getMap().find(oox::XML_linDir)->second; + + switch (nDir) + { + case oox::XML_fromL: + nType = oox::XML_rightArrow; + break; + case oox::XML_fromR: + nType = oox::XML_leftArrow; + break; + } + } + + return nType; +} } namespace oox { namespace drawingml { @@ -269,13 +313,15 @@ rVisitor.visit(*this); } -void ConstraintAtom::parseConstraint(std::vector& rConstraints) const +void ConstraintAtom::parseConstraint(std::vector& rConstraints, + bool bRequireForName) const { + if (bRequireForName && maConstraint.msForName.isEmpty()) + return; + // accepting only basic equality constraints - if (!maConstraint.msForName.isEmpty() && - (maConstraint.mnOperator == XML_none || maConstraint.mnOperator == XML_equ) && - maConstraint.mnType != XML_none && - maConstraint.mfValue == 0) + if ((maConstraint.mnOperator == XML_none || maConstraint.mnOperator == XML_equ) + && maConstraint.mnType != XML_none) { rConstraints.push_back(maConstraint); } @@ -290,7 +336,7 @@ const std::vector& rOwnConstraints ) const { // Algorithm result may depend on the parent constraints as well. - std::vector aParentConstraints; + std::vector aMergedConstraints; const LayoutNode* pParent = getLayoutNode().getParentLayoutNode(); if (pParent) { @@ -298,10 +344,12 @@ { auto pConstraintAtom = dynamic_cast(pChild.get()); if (pConstraintAtom) - pConstraintAtom->parseConstraint(aParentConstraints); + pConstraintAtom->parseConstraint(aMergedConstraints, /*bRequireForName=*/true); } } - const std::vector& rConstraints = rOwnConstraints.empty() ? aParentConstraints : rOwnConstraints; + aMergedConstraints.insert(aMergedConstraints.end(), rOwnConstraints.begin(), + rOwnConstraints.end()); + const std::vector& rConstraints = aMergedConstraints; switch(mnType) { @@ -327,7 +375,19 @@ if (aRefType != aRef->second.end()) aProperties[rConstr.msForName][rConstr.mnType] = aRefType->second * rConstr.mfFactor; else - aProperties[rConstr.msForName][rConstr.mnType] = 0; // TODO: val + { + // Values are never in EMU, while oox::drawingml::Shape + // position and size are always in EMU. + double fUnitFactor = 0; + if (isFontUnit(rConstr.mnRefType)) + // Points -> EMU. + fUnitFactor = EMU_PER_PT; + else + // Millimeters -> EMU. + fUnitFactor = EMU_PER_HMM * 100; + aProperties[rConstr.msForName][rConstr.mnType] + = rConstr.mfValue * fUnitFactor; + } } } @@ -376,7 +436,54 @@ } case XML_conn: + { + if (rShape->getSubType() == XML_conn) + { + // There is no shape type "conn", replace it by an arrow based + // on the direction of the parent linear layout. + sal_Int32 nType = getConnectorType(pParent); + + rShape->setSubType(nType); + rShape->getCustomShapeProperties()->setShapePresetType(nType); + } + + // Parse constraints to adjust the size. + std::vector aDirectConstraints; + const LayoutNode& rLayoutNode = getLayoutNode(); + for (const auto& pChild : rLayoutNode.getChildren()) + { + auto pConstraintAtom = dynamic_cast(pChild.get()); + if (pConstraintAtom) + pConstraintAtom->parseConstraint(aDirectConstraints, /*bRequireForName=*/false); + } + + LayoutPropertyMap aProperties; + LayoutProperty& rParent = aProperties[""]; + rParent[XML_w] = rShape->getSize().Width; + rParent[XML_h] = rShape->getSize().Height; + rParent[XML_l] = 0; + rParent[XML_t] = 0; + rParent[XML_r] = rShape->getSize().Width; + rParent[XML_b] = rShape->getSize().Height; + for (const auto& rConstr : aDirectConstraints) + { + const LayoutPropertyMap::const_iterator aRef + = aProperties.find(rConstr.msRefForName); + if (aRef != aProperties.end()) + { + const LayoutProperty::const_iterator aRefType + = aRef->second.find(rConstr.mnRefType); + if (aRefType != aRef->second.end()) + aProperties[rConstr.msForName][rConstr.mnType] + = aRefType->second * rConstr.mfFactor; + } + } + awt::Size aSize; + aSize.Width = rParent[XML_w]; + aSize.Height = rParent[XML_h]; + rShape->setSize(aSize); break; + } case XML_cycle: { @@ -428,22 +535,9 @@ const sal_Int32 nIncX = nDir==XML_fromL ? 1 : (nDir==XML_fromR ? -1 : 0); const sal_Int32 nIncY = nDir==XML_fromT ? 1 : (nDir==XML_fromB ? -1 : 0); - // TODO: get values from constraints sal_Int32 nCount = rShape->getChildren().size(); double fSpace = 0.3; - awt::Size aChildSize = rShape->getSize(); - if (nDir == XML_fromL || nDir == XML_fromR) - aChildSize.Width /= (nCount + (nCount-1)*fSpace); - else if (nDir == XML_fromT || nDir == XML_fromB) - aChildSize.Height /= (nCount + (nCount-1)*fSpace); - - awt::Point aCurrPos(0, 0); - if (nIncX == -1) - aCurrPos.X = rShape->getSize().Width - aChildSize.Width; - if (nIncY == -1) - aCurrPos.Y = rShape->getSize().Height - aChildSize.Height; - // Find out which contraint is relevant for which (internal) name. LayoutPropertyMap aProperties; for (const auto& rConstraint : rConstraints) @@ -454,8 +548,24 @@ LayoutProperty& rProperty = aProperties[rConstraint.msForName]; if (rConstraint.mnType == XML_w) rProperty[XML_w] = rShape->getSize().Width * rConstraint.mfFactor; + + // TODO: get values from differently named constraints as well + if (rConstraint.msForName == "sibTrans" && rConstraint.mnType == XML_w) + fSpace = rConstraint.mfFactor; } + awt::Size aChildSize = rShape->getSize(); + if (nDir == XML_fromL || nDir == XML_fromR) + aChildSize.Width /= (nCount + (nCount-1)*fSpace); + else if (nDir == XML_fromT || nDir == XML_fromB) + aChildSize.Height /= (nCount + (nCount-1)*fSpace); + + awt::Point aCurrPos(0, 0); + if (nIncX == -1) + aCurrPos.X = rShape->getSize().Width - aChildSize.Width; + if (nIncY == -1) + aCurrPos.Y = rShape->getSize().Height - aChildSize.Height; + // See if children requested more than 100% space in total: scale // down in that case. sal_Int32 nTotalWidth = 0; @@ -500,7 +610,7 @@ aSize.Width *= fWidthScale; aCurrShape->setSize(aSize); - aCurrShape->setChildSize(aChildSize); + aCurrShape->setChildSize(aSize); aCurrPos.X += nIncX * (aSize.Width + fSpace*aSize.Width); aCurrPos.Y += nIncY * (aChildSize.Height + fSpace*aChildSize.Height); } @@ -711,13 +821,27 @@ } ParamMap::const_iterator aBulletLvl = maMap.find(XML_stBulletLvl); + int nStartBulletsAtLevel = 0; if (aBulletLvl != maMap.end()) + { nBaseLevel -= aBulletLvl->second; + nStartBulletsAtLevel = aBulletLvl->second; + } for (auto & aParagraph : pTextBody->getParagraphs()) { sal_Int32 nLevel = aParagraph->getProperties().getLevel(); aParagraph->getProperties().setLevel(nLevel - nBaseLevel); + if (nStartBulletsAtLevel > 0 && nLevel >= nStartBulletsAtLevel) + { + // It is not possible to change the bullet style for text. + sal_Int32 nLeftMargin = 285750 * (nLevel - nStartBulletsAtLevel) / EMU_PER_HMM; + aParagraph->getProperties().getParaLeftMargin() = nLeftMargin; + aParagraph->getProperties().getFirstLineIndentation() = -285750 / EMU_PER_HMM; + OUString aBulletChar = OUString::fromUtf8(u8"•"); + aParagraph->getProperties().getBulletList().setBulletChar(aBulletChar); + aParagraph->getProperties().getBulletList().setSuffixNone(); + } } // explicit alignment @@ -821,8 +945,10 @@ if( aVecIter->second != -1 ) rPara.getProperties().setLevel(aVecIter->second); - rPara.addRun( - aDataNode2->second->mpShape->getTextBody()->getParagraphs().front()->getRuns().front()); + std::shared_ptr pSourceParagraph + = aDataNode2->second->mpShape->getTextBody()->getParagraphs().front(); + for (const auto& pRun : pSourceParagraph->getRuns()) + rPara.addRun(pRun); rPara.getProperties().apply( aDataNode2->second->mpShape->getTextBody()->getParagraphs().front()->getProperties()); } diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/diagramlayoutatoms.hxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/diagramlayoutatoms.hxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/diagramlayoutatoms.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/diagramlayoutatoms.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -141,7 +141,7 @@ virtual void accept( LayoutAtomVisitor& ) override; Constraint& getConstraint() { return maConstraint; } - void parseConstraint(std::vector& rConstraints) const; + void parseConstraint(std::vector& rConstraints, bool bRequireForName) const; private: Constraint maConstraint; }; @@ -162,6 +162,13 @@ { maMap[nType]=nVal; } void layoutShape( const ShapePtr& rShape, const std::vector& rConstraints ) const; + + /// Gives access to . + sal_Int32 getType() const { return mnType; } + + /// Gives access to . + const ParamMap& getMap() const { return maMap; } + private: sal_Int32 mnType; ParamMap maMap; diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutatomvisitors.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutatomvisitors.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutatomvisitors.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutatomvisitors.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -46,6 +46,14 @@ void ShapeCreationVisitor::visit(ForEachAtom& rAtom) { + if (rAtom.iterator().mnAxis == XML_followSib) + { + // If the axis is the follow sibling, then the last atom should not be + // visited. + if (mnCurrIdx + mnCurrStep >= mnCurrCnt) + return; + } + const std::vector& rChildren=rAtom.getChildren(); sal_Int32 nChildren=1; @@ -65,7 +73,11 @@ rAtom.iterator().mnCnt==-1 ? nChildren : rAtom.iterator().mnCnt); const sal_Int32 nOldIdx=mnCurrIdx; + const sal_Int32 nOldStep = mnCurrStep; + const sal_Int32 nOldCnt = mnCurrCnt; const sal_Int32 nStep=rAtom.iterator().mnStep; + mnCurrStep = nStep; + mnCurrCnt = nCnt; for( mnCurrIdx=0; mnCurrIdx0; mnCurrIdx+=nStep ) { // TODO there is likely some conditions @@ -75,6 +87,8 @@ // and restore idx mnCurrIdx = nOldIdx; + mnCurrStep = nOldStep; + mnCurrCnt = nOldCnt; } void ShapeCreationVisitor::visit(ConditionAtom& rAtom) @@ -166,6 +180,38 @@ std::remove_if(pCurrParent->getChildren().begin(), pCurrParent->getChildren().end(), [] (const ShapePtr & aChild) { return aChild->getServiceName() == "com.sun.star.drawing.GroupShape" && aChild->getChildren().empty(); }), pCurrParent->getChildren().end()); + + // Offset the children from their default z-order stacking, if necessary. + std::vector& rChildren = pCurrParent->getChildren(); + for (size_t i = 0; i < rChildren.size(); ++i) + rChildren[i]->setZOrder(i); + + for (size_t i = 0; i < rChildren.size(); ++i) + { + const ShapePtr& pChild = rChildren[i]; + sal_Int32 nZOrderOff = pChild->getZOrderOff(); + if (nZOrderOff <= 0) + continue; + + // Increase my ZOrder by nZOrderOff. + pChild->setZOrder(pChild->getZOrder() + nZOrderOff); + pChild->setZOrderOff(0); + + for (sal_Int32 j = 0; j < nZOrderOff; ++j) + { + size_t nIndex = i + j + 1; + if (nIndex >= rChildren.size()) + break; + + // Decrease the ZOrder of the next nZOrderOff elements by one. + const ShapePtr& pNext = rChildren[nIndex]; + pNext->setZOrder(pNext->getZOrder() - 1); + } + } + + // Now that the ZOrders are adjusted, sort the children. + std::sort(rChildren.begin(), rChildren.end(), + [](const ShapePtr& a, const ShapePtr& b) { return a->getZOrder() < b->getZOrder(); }); } void ShapeCreationVisitor::visit(ShapeAtom& /*rAtom*/) @@ -235,7 +281,7 @@ void ShapeLayoutingVisitor::visit(ConstraintAtom& rAtom) { if (meLookFor == CONSTRAINT) - rAtom.parseConstraint(maConstraints); + rAtom.parseConstraint(maConstraints, /*bRequireForName=*/true); } void ShapeLayoutingVisitor::visit(AlgAtom& rAtom) diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutatomvisitors.hxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutatomvisitors.hxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutatomvisitors.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutatomvisitors.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -33,6 +33,8 @@ ShapePtr mpParentShape; const Diagram& mrDgm; sal_Int32 mnCurrIdx; + sal_Int32 mnCurrStep = 0; + sal_Int32 mnCurrCnt = 0; const dgm::Point* mpCurrentNode; void defaultVisit(LayoutAtom const & rAtom); diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutnodecontext.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutnodecontext.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/diagram/layoutnodecontext.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/diagram/layoutnodecontext.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -209,6 +209,8 @@ pShape->setDiagramRotation(rAttribs.getInteger(XML_rot, 0) * PER_DEGREE); + pShape->setZOrderOff(rAttribs.getInteger(XML_zOrderOff, 0)); + ShapeAtomPtr pAtom( new ShapeAtom(mpNode->getLayoutNode(), pShape) ); LayoutAtom::connect(mpNode, pAtom); return new ShapeContext( *this, ShapePtr(), pShape ); diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/shape.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/shape.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/shape.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/shape.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -175,6 +175,8 @@ , maLinkedTxbxAttr() , mbHasLinkedTxbx(false) , maDiagramDoms( pSourceShape->maDiagramDoms ) +, mnZOrder(pSourceShape->mnZOrder) +, mnZOrderOff(pSourceShape->mnZOrderOff) {} Shape::~Shape() diff -Nru libreoffice-l10n-6.1.4/oox/source/drawingml/textcharacterpropertiescontext.cxx libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/textcharacterpropertiescontext.cxx --- libreoffice-l10n-6.1.4/oox/source/drawingml/textcharacterpropertiescontext.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/oox/source/drawingml/textcharacterpropertiescontext.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -203,6 +203,17 @@ mrTextCharacterProperties.moCaseMap = XML_none; } break; + case W_TOKEN(vertAlign): + { + // Map wordprocessingML to drawingML + // . + sal_Int32 nVal = rAttribs.getToken(W_TOKEN(val), 0); + if (nVal == XML_superscript) + mrTextCharacterProperties.moBaseline = 30000; + else if (nVal == XML_subscript) + mrTextCharacterProperties.moBaseline = -25000; + break; + } case OOX_TOKEN(w14, glow): case OOX_TOKEN(w14, shadow): case OOX_TOKEN(w14, reflection): diff -Nru libreoffice-l10n-6.1.4/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-6.1.5~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-6.1.4/readlicense_oo/license/CREDITS.fodt 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/readlicense_oo/license/CREDITS.fodt 2019-01-30 17:56:45.000000000 +0000 @@ -1,24 +1,24 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/6.1.3.2$Linux_X86_64 LibreOffice_project/86daf60bf00efa86ad547e59e09d6bb77c699acb2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/6.1.4.2$Linux_X86_64 LibreOffice_project/9d0f32d1f0b509096fd65e0d4bec26ddd1938fd32012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 637 + 501 501 - 50872 - 26940 + 34451 + 18960 true true view2 - 3577 - 3434 + 3531 + 3313 501 - 637 - 51372 - 27575 + 501 + 34950 + 19459 0 0 false @@ -69,7 +69,7 @@ false false true - 8294212 + 8395333 false false false @@ -320,37 +320,40 @@ - + - + - + - + - + + + + - + - + - + - + - + @@ -359,19 +362,19 @@ - + - + - + - + - + @@ -380,19 +383,19 @@ - + - + - + - + - + @@ -401,23 +404,26 @@ - + - + - + - + - + + + + @@ -1051,7 +1057,7 @@ Credits - 1378 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2018-12-10 22:20:51. + 1395 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2019-01-23 10:31:20. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1075,16 +1081,16 @@ - Vladimir GlazunovCommits: 25434Joined: 2000-12-04 + Caolán McNamaraCommits: 25513Joined: 2000-10-10 - Caolán McNamaraCommits: 25395Joined: 2000-10-10 + Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 16635Joined: 2000-10-04 + Stephan BergmannCommits: 16722Joined: 2000-10-04 - *Noel GrandinCommits: 10789Joined: 2011-12-12 + *Noel GrandinCommits: 10949Joined: 2011-12-12 @@ -1092,10 +1098,10 @@ Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Tor LillqvistCommits: 8452Joined: 2010-03-23 + Tor LillqvistCommits: 8485Joined: 2010-03-23 - Miklos VajnaCommits: 7207Joined: 2010-07-29 + Miklos VajnaCommits: 7251Joined: 2010-07-29 Michael StahlCommits: 6418Joined: 2008-06-16 @@ -1112,12 +1118,12 @@ Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Eike RathkeCommits: 4574Joined: 2000-10-11 + Eike RathkeCommits: 4602Joined: 2000-10-11 - David TardonCommits: 3615Joined: 2009-11-12 + David TardonCommits: 3621Joined: 2009-11-12 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1131,21 +1137,21 @@ - Jan HolesovskyCommits: 2571Joined: 2009-06-23 + Jan HolesovskyCommits: 2573Joined: 2009-06-23 - Oliver SpechtCommits: 2548Joined: 2000-09-21 + *Julien NabetCommits: 2555Joined: 2010-11-04 - *Julien NabetCommits: 2546Joined: 2010-11-04 + Oliver SpechtCommits: 2548Joined: 2000-09-21 - Michael MeeksCommits: 2308Joined: 2004-08-05 + Michael MeeksCommits: 2309Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2264Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2268Joined: 2009-10-14 *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1159,7 +1165,7 @@ - *Tomaž VajngerlCommits: 1961Joined: 2012-06-02 + *Tomaž VajngerlCommits: 1972Joined: 2012-06-02 *Andras TimarCommits: 1812Joined: 2010-10-02 @@ -1173,24 +1179,24 @@ - Luboš LuňákCommits: 1646Joined: 2010-09-21 + Luboš LuňákCommits: 1649Joined: 2010-09-21 - *Takeshi AbeCommits: 1465Joined: 2010-11-08 + *Takeshi AbeCommits: 1471Joined: 2010-11-08 - Armin Le GrandCommits: 1446Joined: 2000-09-25 + Armin Le GrandCommits: 1448Joined: 2000-09-25 - Thorsten BehrensCommits: 1379Joined: 2001-04-25 + Thorsten BehrensCommits: 1382Joined: 2001-04-25 - Fridrich ŠtrbaCommits: 1337Joined: 2007-02-22 + *Matteo CasalinCommits: 1358Joined: 2011-11-13 - *Matteo CasalinCommits: 1310Joined: 2011-11-13 + Fridrich ŠtrbaCommits: 1337Joined: 2007-02-22 Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 @@ -1207,14 +1213,17 @@ *Chris SherlockCommits: 1204Joined: 2013-02-25 - *Lionel Elie MamaneCommits: 1029Joined: 2011-01-15 + *Lionel Elie MamaneCommits: 1032Joined: 2011-01-15 - *Tamás ZolnaiCommits: 989Joined: 2012-08-06 + *Tamás ZolnaiCommits: 1007Joined: 2012-08-06 + *Andrea GelminiCommits: 969Joined: 2014-10-30 + + Petr MladekCommits: 958Joined: 2006-10-03 @@ -1223,13 +1232,10 @@ Kai AhrensCommits: 909Joined: 2000-09-21 - - Henning BrinkmannCommits: 899Joined: 2002-08-14 - - *Andrea GelminiCommits: 894Joined: 2014-10-30 + Henning BrinkmannCommits: 899Joined: 2002-08-14 Cédric BosdonnatCommits: 882Joined: 2009-11-16 @@ -1249,15 +1255,15 @@ Martin GallweyCommits: 827Joined: 2000-11-08 - Mikhail VoytenkoCommits: 793Joined: 2001-01-16 + *Olivier HallotCommits: 806Joined: 2010-10-25 - *Olivier HallotCommits: 774Joined: 2010-10-25 + *Mike KaganskiCommits: 797Joined: 2015-04-26 - *Mike KaganskiCommits: 749Joined: 2015-04-26 + Mikhail VoytenkoCommits: 793Joined: 2001-01-16 Carsten DriesnerCommits: 748Joined: 2000-10-06 @@ -1266,15 +1272,15 @@ Joachim LingnerCommits: 745Joined: 2000-10-05 - *Andrzej HuntCommits: 733Joined: 2012-03-27 + Christian LohmaierCommits: 736Joined: 2008-06-01 - Andre FischerCommits: 730Joined: 2001-02-06 + *Andrzej HuntCommits: 733Joined: 2012-03-27 - Christian LohmaierCommits: 729Joined: 2008-06-01 + Andre FischerCommits: 730Joined: 2001-02-06 Release EngineeringCommits: 728Joined: 2008-10-02 @@ -1285,44 +1291,44 @@ - *Samuel MehrbrodtCommits: 694Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 702Joined: 2011-06-08 - Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 + *Katarina BehrensCommits: 679Joined: 2010-10-13 - *Katarina BehrensCommits: 670Joined: 2010-10-13 + Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 - *Joseph PowersCommits: 658Joined: 2010-10-15 + *andreas kainzCommits: 665Joined: 2015-03-18 - Kai SommerfeldCommits: 651Joined: 2000-10-10 + *Joseph PowersCommits: 658Joined: 2010-10-15 - Ingrid HalamaCommits: 639Joined: 2001-01-19 + Kai SommerfeldCommits: 651Joined: 2000-10-10 - *Zdeněk CrhonekCommits: 628Joined: 2016-05-19 + *Zdeněk CrhonekCommits: 643Joined: 2016-05-19 - *andreas kainzCommits: 625Joined: 2015-03-18 + Ingrid HalamaCommits: 639Joined: 2001-01-19 - *Rafael DominguezCommits: 606Joined: 2011-02-13 + *Michael StahlCommits: 625Joined: 2018-04-03 - *Gabor KelemenCommits: 604Joined: 2013-06-18 + *Gabor KelemenCommits: 624Joined: 2013-06-18 - *Jochen NitschkeCommits: 584Joined: 2016-02-02 + *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Michael StahlCommits: 579Joined: 2018-04-03 + *Jochen NitschkeCommits: 584Joined: 2016-02-02 @@ -1336,7 +1342,7 @@ *Xisco FauliCommits: 546Joined: 2011-02-06 - *Jan-Marek GlogowskiCommits: 528Joined: 2013-11-14 + *Jan-Marek GlogowskiCommits: 545Joined: 2013-11-14 @@ -1347,10 +1353,10 @@ Jürgen SchmidtCommits: 512Joined: 2000-10-09 - Rene EngelhardCommits: 504Joined: 2005-03-14 + Rene EngelhardCommits: 505Joined: 2005-03-14 - *Szymon KłosCommits: 490Joined: 2014-03-22 + *Szymon KłosCommits: 492Joined: 2014-03-22 @@ -1364,32 +1370,32 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Jens CarlCommits: 401Joined: 2014-05-28 + *Jens CarlCommits: 449Joined: 2014-05-28 - *Adolfo Jayme BarrientosCommits: 394Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 399Joined: 2013-06-21 Dirk VoelzkeCommits: 392Joined: 2000-11-27 - *Ivan TimofeevCommits: 380Joined: 2011-09-16 + *Justin LuthCommits: 385Joined: 2014-09-30 - Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + *Ivan TimofeevCommits: 380Joined: 2011-09-16 - Martin HollmichelCommits: 371Joined: 2000-09-19 + Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 - *Pranav KantCommits: 366Joined: 2015-03-01 + Martin HollmichelCommits: 371Joined: 2000-09-19 - *Justin LuthCommits: 363Joined: 2014-09-30 + *Pranav KantCommits: 366Joined: 2015-03-01 Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 @@ -1397,10 +1403,10 @@ - Patrick LubyCommits: 335Joined: 2000-09-21 + *László NémethCommits: 341Joined: 2010-09-29 - *László NémethCommits: 334Joined: 2010-09-29 + Patrick LubyCommits: 335Joined: 2000-09-21 *David OstrovskyCommits: 330Joined: 2012-04-01 @@ -1428,18 +1434,18 @@ Lars LanghansCommits: 260Joined: 2000-09-22 - *Marco CecchettiCommits: 253Joined: 2011-04-14 + *Marco CecchettiCommits: 254Joined: 2011-04-14 - Muthu SubramanianCommits: 250Joined: 2010-08-25 + *Ashod NakashianCommits: 251Joined: 2015-01-07 - *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 + Muthu SubramanianCommits: 250Joined: 2010-08-25 - *Ashod NakashianCommits: 247Joined: 2015-01-07 + *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 *Laurent BPCommits: 242Joined: 2011-08-31 @@ -1448,15 +1454,15 @@ *Arnaud VersiniCommits: 238Joined: 2010-10-05 - *Mark HungCommits: 220Joined: 2014-11-04 + *Mark HungCommits: 221Joined: 2014-11-04 - *Stanislav HoracekCommits: 214Joined: 2012-12-09 + *Stanislav HoracekCommits: 219Joined: 2012-12-09 - *Winfried DonkersCommits: 205Joined: 2011-11-11 + *Winfried DonkersCommits: 207Joined: 2011-11-11 Ingo SchmidtCommits: 202Joined: 2004-02-05 @@ -1481,21 +1487,21 @@ - *Johnny_MCommits: 173Joined: 2016-05-12 + *Johnny_MCommits: 175Joined: 2016-05-12 - *Philipp RiemerCommits: 171Joined: 2012-05-25 + Bartosz KosiorekCommits: 172Joined: 2010-09-17 - Bartosz KosiorekCommits: 167Joined: 2010-09-17 + *Philipp RiemerCommits: 171Joined: 2012-05-25 - *Nigel HawkinsCommits: 160Joined: 2010-10-28 + *Tamas BunthCommits: 166Joined: 2016-03-08 - *Tamas BunthCommits: 158Joined: 2016-03-08 + *Nigel HawkinsCommits: 160Joined: 2010-10-28 *Artur DordaCommits: 151Joined: 2012-04-15 @@ -1512,30 +1518,33 @@ *Henry CastroCommits: 145Joined: 2015-01-09 + *heiko tietzeCommits: 142Joined: 2016-10-06 + + Gregor HartmannCommits: 141Joined: 2000-10-12 *Matthias FreundCommits: 139Joined: 2013-02-08 + + Giuseppe CastagnoCommits: 138Joined: 2007-12-09 - - *Artur DryomovCommits: 137Joined: 2013-03-14 - *Heiko TietzeCommits: 136Joined: 2016-10-06 + *Jim RaykowskiCommits: 131Joined: 2017-04-16 *Jesús CorriusCommits: 130Joined: 2010-10-07 + + *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 - - *Tomáš ChvátalCommits: 129Joined: 2011-07-27 @@ -1545,16 +1554,13 @@ *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 - - *haochenCommits: 126Joined: 2013-10-10 - - Helge Delfs [hde]Commits: 126Joined: 2009-07-28 + *haochenCommits: 126Joined: 2013-10-10 - *Jim RaykowskiCommits: 123Joined: 2017-04-16 + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 Takashi OnoCommits: 122Joined: 2009-12-10 @@ -1593,34 +1599,37 @@ - *Thomas KlausnerCommits: 99Joined: 2010-10-01 + *Vasily MelenchukCommits: 100Joined: 2015-01-27 - *Vasily MelenchukCommits: 97Joined: 2015-01-27 + *Thomas KlausnerCommits: 99Joined: 2010-10-01 - *Laurent GodardCommits: 93Joined: 2011-05-06 + *Sophia SchröderCommits: 99Joined: 2018-04-07 - *Stefan KnorrCommits: 91Joined: 2011-07-04 + *Michael WeghornCommits: 95Joined: 2014-09-10 - *Varun DhallCommits: 91Joined: 2015-03-07 + *Laurent GodardCommits: 93Joined: 2011-05-06 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Michael WeghornCommits: 89Joined: 2014-09-10 + *Varun DhallCommits: 91Joined: 2015-03-07 - *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 + *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 + + *Daniel BankstonCommits: 88Joined: 2012-04-03 @@ -1629,11 +1638,11 @@ *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 + + *Adam CoCommits: 86Joined: 2013-04-28 - - Mihaela KedikovaCommits: 85Joined: 2009-10-30 @@ -1643,55 +1652,66 @@ Tobias KrauseCommits: 83Joined: 2007-10-02 + + *Minh NgoCommits: 83Joined: 2013-05-02 - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - *Sophia SchröderCommits: 77Joined: 2018-04-07 + *Serge KrotCommits: 77Joined: 2015-10-25 *Tobias MadlCommits: 74Joined: 2014-09-15 + + *Gergo MocsiCommits: 72Joined: 2013-02-14 - - + + *Justin LuthCommits: 72Joined: 2018-04-21 + *weigaoCommits: 72Joined: 2014-05-07 - Thorsten BosbachCommits: 70Joined: 2008-06-18 + *Arkadiy IllarionovCommits: 71Joined: 2017-01-15 + + - *Serge KrotCommits: 70Joined: 2015-10-25 + Thorsten BosbachCommits: 70Joined: 2008-06-18 *Michaël LefèvreCommits: 68Joined: 2011-02-22 - - *Antonio FernandezCommits: 68Joined: 2012-07-18 *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 + + *Kevin HunterCommits: 67Joined: 2010-10-22 *Jelle van der WaaCommits: 66Joined: 2013-06-16 + + *Regina HenschelCommits: 66Joined: 2010-11-04 + + + *Rohan KumarCommits: 65Joined: 2016-02-23 + - *Rohan KumarCommits: 65Joined: 2016-02-23 + *Xisco FaulíCommits: 64Joined: 2018-02-01 *Juergen FunkCommits: 63Joined: 2014-09-17 @@ -1700,68 +1720,54 @@ *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 - *Justin LuthCommits: 62Joined: 2018-04-21 + *Rosemary SebastianCommits: 62Joined: 2015-06-23 - *Rosemary SebastianCommits: 62Joined: 2015-06-23 - - - *Regina HenschelCommits: 62Joined: 2010-11-04 - - *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 - - Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 *Jaskaran SinghCommits: 60Joined: 2016-02-18 + + *Simon SteinbeissCommits: 59Joined: 2015-06-01 + *Rizal MuttaqinCommits: 59Joined: 2018-05-21 + + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 - - *Martin HoskenCommits: 59Joined: 2011-02-25 + + *shiming zhangCommits: 59Joined: 2013-11-04 - *Rizal MuttaqinCommits: 58Joined: 2018-05-21 - - *tageziCommits: 58Joined: 2015-09-16 - - *Aron BudeaCommits: 57Joined: 2014-12-22 *yiming juCommits: 57Joined: 2013-11-01 - - *Arkadiy IllarionovCommits: 57Joined: 2017-01-15 - - - *matteocamCommits: 56Joined: 2014-02-25 - - *Xisco FauliCommits: 55Joined: 2018-02-01 + *matteocamCommits: 56Joined: 2014-02-25 *Matthew J. FrancisCommits: 55Joined: 2014-08-25 @@ -1988,21 +1994,21 @@ *Dennis RoczekCommits: 33Joined: 2015-06-09 - *Yogesh BharateCommits: 33Joined: 2013-10-11 + *Cor NouwsCommits: 33Joined: 2011-11-19 - *Andreas MantkeCommits: 33Joined: 2010-09-29 + *Yogesh BharateCommits: 33Joined: 2013-10-11 - *Laurent AlonsoCommits: 33Joined: 2011-10-23 + *Andreas MantkeCommits: 33Joined: 2010-09-29 - *Arnold DumasCommits: 32Joined: 2016-02-14 + *Laurent AlonsoCommits: 33Joined: 2011-10-23 - *Cor NouwsCommits: 32Joined: 2011-11-19 + *Arnold DumasCommits: 32Joined: 2016-02-14 *GokulCommits: 32Joined: 2012-07-10 @@ -2111,6 +2117,9 @@ + *Dmitriy ShilinCommits: 27Joined: 2018-11-30 + + *José Guilherme VanzCommits: 27Joined: 2012-09-26 @@ -2119,11 +2128,11 @@ *Grzegorz AraminowiczCommits: 27Joined: 2017-04-01 + + *Akash JainCommits: 26Joined: 2016-03-25 - - *Josh HeidenreichCommits: 26Joined: 2011-07-20 @@ -2133,11 +2142,11 @@ *Daniel SikelerCommits: 26Joined: 2014-08-28 + + *Maxime de RoucyCommits: 26Joined: 2012-03-08 - - *VortCommits: 25Joined: 2014-01-21 @@ -2147,11 +2156,11 @@ *Prashant PandeyCommits: 25Joined: 2013-02-20 + + *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 - - *Uray M. JánosCommits: 24Joined: 2012-07-17 @@ -2161,11 +2170,11 @@ *Tomofumi YagiCommits: 24Joined: 2011-10-20 + + *Pedro GiffuniCommits: 24Joined: 2011-10-28 - - *Felix ZhangCommits: 23Joined: 2011-10-19 @@ -2175,16 +2184,13 @@ *ekuiitrCommits: 23Joined: 2017-10-13 - - *Marco A.G.PintoCommits: 23Joined: 2016-02-02 - - *Lucas BaudinCommits: 23Joined: 2011-01-25 + *Marco A.G.PintoCommits: 23Joined: 2016-02-02 - *Sören MöllerCommits: 23Joined: 2011-01-03 + *Lucas BaudinCommits: 23Joined: 2011-01-25 *Robert RothCommits: 23Joined: 2010-10-31 @@ -2195,23 +2201,34 @@ + *Sören MöllerCommits: 23Joined: 2011-01-03 + + + *Aleksei NikiforovCommits: 23Joined: 2018-10-31 + + *Mario J. RugieroCommits: 23Joined: 2015-10-11 *zhenyu yuanCommits: 22Joined: 2013-11-06 + + *Jian Fang ZhangCommits: 22Joined: 2012-06-18 *Jacek WolszczakCommits: 22Joined: 2010-10-07 - - *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 + *himajin100000Commits: 22Joined: 2018-03-11 + + + + *Frédéric WangCommits: 22Joined: 2013-06-22 @@ -2220,9 +2237,15 @@ *Júlio HoffimannCommits: 22Joined: 2010-10-18 + + *Matthias SeidelCommits: 22Joined: 2017-02-18 + + *Patrick JaapCommits: 21Joined: 2017-08-01 + + *Vitaliy AndersonCommits: 21Joined: 2016-12-09 @@ -2231,11 +2254,11 @@ *Rohit DeshmukhCommits: 21Joined: 2013-09-30 + + *Tushar BendeCommits: 20Joined: 2013-09-27 - - *Andy HolderCommits: 20Joined: 2010-12-06 @@ -2245,26 +2268,26 @@ Eric BachardCommits: 20Joined: 2005-10-19 - - *Petr VorelCommits: 20Joined: 2012-02-17 - - *Peilin XiaoCommits: 19Joined: 2013-12-09 + *Petr VorelCommits: 20Joined: 2012-02-17 - *Lennard WasserthalCommits: 19Joined: 2012-08-11 + *Balazs VargaCommits: 20Joined: 2018-07-05 - *Patrick JaapCommits: 19Joined: 2017-08-01 + *Peilin XiaoCommits: 19Joined: 2013-12-09 - *krishna keshavCommits: 19Joined: 2016-05-05 + *Lennard WasserthalCommits: 19Joined: 2012-08-11 + *krishna keshavCommits: 19Joined: 2016-05-05 + + *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 @@ -2273,11 +2296,11 @@ *Sven WehnerCommits: 19Joined: 2014-01-11 + + *Ravindra VidhateCommits: 19Joined: 2014-01-30 - - Xiaofei ZhangCommits: 19Joined: 2010-06-28 @@ -2287,9 +2310,6 @@ *Joost WezenbeekCommits: 18Joined: 2010-10-24 - - *himajin100000Commits: 18Joined: 2018-03-11 - @@ -2310,47 +2330,44 @@ *Boris DušekCommits: 18Joined: 2013-07-21 - *Matthias SeidelCommits: 18Joined: 2017-02-18 - - *Zdibák ZoltánCommits: 18Joined: 2018-10-13 *Alfonso EusebioCommits: 17Joined: 2011-01-16 - - *Vikas MahatoCommits: 17Joined: 2017-12-31 - - *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - + + *Thomas BeckCommits: 17Joined: 2017-03-27 *Jian Hong ChengCommits: 17Joined: 2012-06-26 - - *Kshitij PathaniaCommits: 17Joined: 2017-09-28 *Bálint DózsaCommits: 17Joined: 2011-02-10 + + *melikeyurtogluCommits: 17Joined: 2015-10-09 + *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 + + *Umesh KadamCommits: 17Joined: 2014-01-10 - - *navin patidarCommits: 17Joined: 2013-01-06 + + *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 @@ -2360,11 +2377,11 @@ *Jordan AyersCommits: 16Joined: 2010-11-04 - - *Niko RönkköCommits: 16Joined: 2010-10-31 + + *Anders JonssonCommits: 16Joined: 2010-12-11 @@ -2374,11 +2391,11 @@ Florian ReuterCommits: 16Joined: 2010-09-14 - - *Adam KasztennyCommits: 16Joined: 2016-03-27 + + *Maciej RumianowskiCommits: 16Joined: 2011-07-19 @@ -2388,11 +2405,11 @@ *Lei De BinCommits: 16Joined: 2012-07-04 - - *Nikhil WalvekarCommits: 15Joined: 2013-11-01 + + *Catalin IacobCommits: 15Joined: 2012-02-10 @@ -2402,11 +2419,11 @@ *Andreas BrandnerCommits: 15Joined: 2017-09-04 - - *Joachim TremourouxCommits: 15Joined: 2010-11-19 + + Octavio AlvarezCommits: 15Joined: 2010-09-13 @@ -2416,11 +2433,11 @@ *Yifan JCommits: 15Joined: 2010-12-16 - - *Alexander BergmannCommits: 15Joined: 2012-01-13 + + *Povilas KanapickasCommits: 15Joined: 2010-10-18 @@ -2430,15 +2447,18 @@ *Heena GuptaCommits: 15Joined: 2014-06-17 - - *Nickson ThandaCommits: 14Joined: 2018-03-25 + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 + *Ilhan YesilCommits: 14Joined: 2018-04-11 + + *Zhe WangCommits: 14Joined: 2012-06-20 @@ -2453,16 +2473,13 @@ *Juan PiccaCommits: 14Joined: 2014-07-23 - *Balazs VargaCommits: 14Joined: 2018-07-05 - - *Tim HardeckCommits: 14Joined: 2011-11-03 - - *Gökhan GurbetoğluCommits: 14Joined: 2016-06-06 + + *Zsolt BölönyCommits: 14Joined: 2015-01-10 @@ -2470,13 +2487,13 @@ *Olivier RCommits: 14Joined: 2011-08-01 - *Ilhan YesilCommits: 13Joined: 2018-04-11 + *sabri unalCommits: 13Joined: 2018-11-20 - - *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Prashant ShahCommits: 13Joined: 2010-10-10 @@ -2486,11 +2503,11 @@ *Muhammad HaggagCommits: 13Joined: 2012-02-01 - - *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + + *Manfred BlumeCommits: 13Joined: 2017-03-27 @@ -2500,11 +2517,11 @@ *kadertarlanCommits: 12Joined: 2015-12-14 - - *Gábor StefanikCommits: 12Joined: 2012-04-07 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 @@ -2514,11 +2531,11 @@ *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 - - *Jani MonosesCommits: 12Joined: 2010-10-30 + + *Mirek MazelCommits: 12Joined: 2012-06-05 @@ -2528,11 +2545,11 @@ *Wei WeiCommits: 12Joined: 2013-11-16 - - *tymyjanCommits: 12Joined: 2016-04-03 + + *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 @@ -2540,6 +2557,9 @@ *Tomas HlavatyCommits: 12Joined: 2011-12-06 + *Roman KuznetsovCommits: 12Joined: 2018-10-23 + + *jmzambonCommits: 11Joined: 2017-05-19 @@ -2610,14 +2630,11 @@ *Charu TyagiCommits: 11Joined: 2014-06-25 - *Aleksei NikiforovCommits: 11Joined: 2018-10-31 + *René KjellerupCommits: 11Joined: 2010-10-14 - *René KjellerupCommits: 11Joined: 2010-10-14 - - *Jianyuan LiCommits: 10Joined: 2012-08-16 @@ -2626,11 +2643,11 @@ *Kristian RietveldCommits: 10Joined: 2011-10-15 - - *Chirag ManwaniCommits: 10Joined: 2016-02-16 + + *Troy RolloCommits: 10Joined: 2011-07-11 @@ -2640,11 +2657,11 @@ *Dilek UzulmezCommits: 10Joined: 2016-10-15 - - *Luke PetrolekasCommits: 10Joined: 2011-02-12 + + *Stefan WeibergCommits: 10Joined: 2014-08-28 @@ -2654,23 +2671,29 @@ *Rahul GurungCommits: 10Joined: 2018-08-26 + + *Timo HeinoCommits: 10Joined: 2010-11-22 + - *Timo HeinoCommits: 10Joined: 2010-11-22 + *Gabor KelemenCommits: 9Joined: 2019-01-12 - *Dinesh PatilCommits: 9Joined: 2014-03-12 + *Alain RomedenneCommits: 9Joined: 2018-12-19 - *Dmitriy ShilinCommits: 9Joined: 2018-11-30 + *Martin SrebotnjakCommits: 9Joined: 2010-12-19 - *Steven ButlerCommits: 9Joined: 2011-01-07 + *Dinesh PatilCommits: 9Joined: 2014-03-12 + *Steven ButlerCommits: 9Joined: 2011-01-07 + + *skswalesCommits: 9Joined: 2016-05-06 @@ -2679,40 +2702,40 @@ *Michael DunphyCommits: 9Joined: 2013-04-18 + + *Ryan McCoskrieCommits: 9Joined: 2014-09-14 - - + + *Muhammet KaraCommits: 9Joined: 2018-12-06 + *Matthew PottageCommits: 9Joined: 2014-07-26 *Aybuke OzdemirCommits: 9Joined: 2015-10-07 + + *pv2kCommits: 9Joined: 2016-11-28 *Surendran MahendranCommits: 9Joined: 2010-11-05 - - *Mattias JohnssonCommits: 9Joined: 2010-10-18 *David VogtCommits: 9Joined: 2012-02-05 + + *Sean DavisCommits: 8Joined: 2015-06-01 - *Martin SrebotnjakCommits: 8Joined: 2010-12-19 - - - - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 @@ -2721,11 +2744,11 @@ *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + *Michael CallahanCommits: 8Joined: 2010-12-06 - - *Jenei GáborCommits: 8Joined: 2011-07-29 @@ -2735,11 +2758,11 @@ *Terrence EngerCommits: 8Joined: 2011-10-27 + + *ShinnokCommits: 8Joined: 2017-09-06 - - *Ursache VladimirCommits: 8Joined: 2015-02-10 @@ -2749,11 +2772,11 @@ Fong LinCommits: 8Joined: 2010-09-14 + + *Keith CurtisCommits: 8Joined: 2013-12-20 - - *RajashriCommits: 8Joined: 2013-12-06 @@ -2763,11 +2786,11 @@ *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + *HeiherCommits: 8Joined: 2015-07-07 - - *Timothy PearsonCommits: 8Joined: 2012-08-18 @@ -2777,11 +2800,11 @@ *karthCommits: 8Joined: 2013-01-07 + + *Nathan YeeCommits: 8Joined: 2015-01-01 - - *Jonathan AdamsCommits: 8Joined: 2012-03-16 @@ -2791,11 +2814,11 @@ *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + *IanCommits: 8Joined: 2015-08-06 - - *Adam KovacsCommits: 7Joined: 2018-08-16 @@ -2805,11 +2828,11 @@ *RaalCommits: 7Joined: 2014-12-31 + + *Tiago SantosCommits: 7Joined: 2016-08-12 - - *David DelmaCommits: 7Joined: 2014-05-13 @@ -2819,11 +2842,11 @@ *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 + + *Thies PierdolaCommits: 7Joined: 2011-01-28 - - *Mathias MichelCommits: 7Joined: 2012-11-19 @@ -2833,11 +2856,11 @@ *iremCommits: 7Joined: 2015-10-11 + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 - - *Vincas DargisCommits: 7Joined: 2018-01-21 @@ -2847,154 +2870,162 @@ *Ulrich GemkowCommits: 7Joined: 2016-10-27 + + + + *Alain RomedenneCommits: 7Joined: 2018-11-29 + *SJacobiCommits: 7Joined: 2013-03-05 - - *Christopher CopitsCommits: 7Joined: 2012-09-19 *Eric SeynaeveCommits: 7Joined: 2013-02-04 + + *Deena FrancisCommits: 7Joined: 2014-07-29 *Issa AlkurtassCommits: 7Joined: 2012-09-04 - - *Keith McRaeCommits: 7Joined: 2012-01-18 *Wang LeiCommits: 7Joined: 2012-06-14 + + *Christoph LutzCommits: 7Joined: 2011-09-06 *HieronymousCommits: 7Joined: 2016-10-13 - - *Trent MacAlpineCommits: 7Joined: 2014-03-06 *Sergey DavidoffCommits: 7Joined: 2011-04-11 + + *V Stuart FooteCommits: 7Joined: 2014-12-04 *Christian BarthCommits: 7Joined: 2017-06-25 - - *Asela DasanayakaCommits: 7Joined: 2016-07-30 *Samuel CantrellCommits: 7Joined: 2011-06-11 + + *Stefan RingCommits: 7Joined: 2014-01-09 *Feyza YavuzCommits: 7Joined: 2015-10-04 - - *Brennan VincentCommits: 7Joined: 2012-04-02 - *sabri unalCommits: 6Joined: 2018-11-20 + *Xavier ALTCommits: 6Joined: 2011-03-06 + + - *Xavier ALTCommits: 6Joined: 2011-03-06 + *Marco A.G.PintoCommits: 6Joined: 2018-07-16 *Thomas CollertonCommits: 6Joined: 2011-11-18 - - *Michel RenonCommits: 6Joined: 2015-05-19 *RosenCommits: 6Joined: 2016-08-04 + + *abdulwdCommits: 6Joined: 2016-12-22 *Phil BordelonCommits: 6Joined: 2010-09-30 - - *Kiyotaka NishiboriCommits: 6Joined: 2017-08-27 *Guillaume SmahaCommits: 6Joined: 2015-11-25 + + *Ricardo MorenoCommits: 6Joined: 2010-11-03 *Anurag JainCommits: 6Joined: 2011-04-05 - - *Kay SchenkCommits: 6Joined: 2014-09-19 *David VerrierCommits: 6Joined: 2013-02-26 + + *tianyaoCommits: 6Joined: 2013-11-09 *Anurag KanungoCommits: 6Joined: 2013-04-19 - - *Jeroen NijhofCommits: 6Joined: 2014-05-01 *Gian Domenico CeccariniCommits: 6Joined: 2017-01-13 + + *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 *udareechkCommits: 6Joined: 2017-09-20 - - *Fabio BusoCommits: 6Joined: 2015-11-01 *Daniel Di MarcoCommits: 6Joined: 2010-11-15 + + *shiraharaCommits: 6Joined: 2011-01-28 + *Brian FraserCommits: 6Joined: 2013-09-03 + + *giaccoCommits: 6Joined: 2016-10-11 - - *Sedat AkCommits: 6Joined: 2015-11-08 + + *Steven GuoCommits: 6Joined: 2016-03-02 @@ -3004,53 +3035,53 @@ *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 - - *Werner KoernerCommits: 5Joined: 2012-12-11 + + *Antoine ProulxCommits: 5Joined: 2011-01-30 - *Marco A.G.PintoCommits: 5Joined: 2018-07-16 - - *Timothy MarkleCommits: 5Joined: 2014-01-31 - - *ericb2Commits: 5Joined: 2011-10-30 *Ciorba EdmondCommits: 5Joined: 2013-06-11 + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 *Jan KantertCommits: 5Joined: 2014-06-12 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 + + *Miguel GomezCommits: 5Joined: 2013-04-02 *Berk GurekenCommits: 5Joined: 2015-10-01 - - + + *Ricardo PalomaresCommits: 5Joined: 2016-01-16 + *pje335_NLCommits: 5Joined: 2013-05-10 + + *Pavel JaníkCommits: 5Joined: 2012-11-29 @@ -3060,11 +3091,11 @@ *Rico TzschichholzCommits: 5Joined: 2016-02-09 - - *Tobias RosenbergerCommits: 5Joined: 2011-01-31 + + *Pasi LallinahoCommits: 5Joined: 2015-06-02 @@ -3074,11 +3105,11 @@ *Pader RezsoCommits: 5Joined: 2013-07-01 - - *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + *tamsil1amani3Commits: 5Joined: 2016-12-22 @@ -3086,6 +3117,9 @@ *Edmund WongCommits: 5Joined: 2016-12-08 + *Mark RobbinsonCommits: 5Joined: 2019-01-02 + + *Lukas RöllinCommits: 5Joined: 2017-02-06 @@ -3114,12 +3148,12 @@ *Gil ForcadaCommits: 5Joined: 2010-09-28 - *Roman KuznetsovCommits: 5Joined: 2018-10-23 + *Lionel DricotCommits: 5Joined: 2012-06-04 - *Lionel DricotCommits: 5Joined: 2012-06-04 + *Martin van ZijlCommits: 5Joined: 2018-02-26 *Jeffrey ChangCommits: 5Joined: 2011-06-01 @@ -3139,16 +3173,13 @@ *Ken BiondiCommits: 4Joined: 2014-03-05 - *Andrew C. E. DentCommits: 4Joined: 2010-10-24 - - *Kate GossCommits: 4Joined: 2012-02-11 - - *Paul MenzelCommits: 4Joined: 2017-05-17 + + *ClioCommits: 4Joined: 2011-01-30 @@ -3158,124 +3189,124 @@ *Jon NermutCommits: 4Joined: 2018-01-20 - - *Simon DannerCommits: 4Joined: 2014-08-02 + + *Thomas ViehmannCommits: 4Joined: 2014-08-15 - *Ricardo PalomaresCommits: 4Joined: 2016-01-16 - - *Mihkel TõnnovCommits: 4Joined: 2012-07-02 - - *Olivier TilloyCommits: 4Joined: 2018-01-08 *Fyodor YemelyanenkoCommits: 4Joined: 2017-08-21 + + *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 *Sameer DeshmukhCommits: 4Joined: 2013-04-20 + + *Patrick JaapCommits: 4Joined: 2017-01-30 *Burcin AkalinCommits: 4Joined: 2015-12-18 - - *XiaoliCommits: 4Joined: 2013-03-23 *Fabio BiocchettiCommits: 4Joined: 2016-10-21 + + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 *coypuCommits: 4Joined: 2016-02-03 - - *Kumar ThangavelCommits: 4Joined: 2016-01-04 *Nicholas ShanksCommits: 4Joined: 2012-09-04 + + *Samuel ThibaultCommits: 4Joined: 2018-09-05 *Gaurav DhingraCommits: 4Joined: 2016-12-03 - - *Sahasranaman M SCommits: 4Joined: 2015-10-04 *Aleksandr AndreevCommits: 4Joined: 2015-04-20 + + *Alexander ThurgoodCommits: 4Joined: 2011-01-26 *ccshellerCommits: 4Joined: 2015-10-08 - - *Jeffrey StedfastCommits: 4Joined: 2014-07-26 *An LeendersCommits: 4Joined: 2011-01-25 + + *Tim EvesCommits: 4Joined: 2016-02-23 *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 - - *aqcoderCommits: 4Joined: 2015-12-13 + *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + + + *Florian BircherCommits: 4Joined: 2010-10-16 @@ -3284,11 +3315,11 @@ *tinoCommits: 4Joined: 2012-12-03 - - *Piotr DrągCommits: 4Joined: 2017-03-05 + + *GurkaranCommits: 4Joined: 2016-03-17 @@ -3298,109 +3329,109 @@ *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 - - *Yong Lin MaCommits: 4Joined: 2012-06-07 + + *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 - *Brian FraserCommits: 4Joined: 2013-09-03 - - *Andreas BeckerCommits: 4Joined: 2011-04-04 - - *Florian ReisingerCommits: 4Joined: 2012-06-22 *Zheng FanCommits: 4Joined: 2013-04-22 + + *Kevin SuoCommits: 4Joined: 2014-11-06 *erdemdemirkapiCommits: 4Joined: 2016-01-30 - - *Raimundo MouraCommits: 4Joined: 2012-06-16 *Honza HavlíčekCommits: 4Joined: 2013-07-27 + + *Samphan RaruenromCommits: 4Joined: 2011-03-24 *bansan85Commits: 3Joined: 2016-12-21 - - *Alan DuCommits: 3Joined: 2010-10-12 *Stefan SchickCommits: 3Joined: 2013-02-18 + + *Petr KrausCommits: 3Joined: 2013-03-26 *Gioele BarabucciCommits: 3Joined: 2010-11-18 - - *Simon LongCommits: 3Joined: 2015-07-08 *Giovanni CaligarisCommits: 3Joined: 2015-11-30 + + *Cameron PaulCommits: 3Joined: 2012-02-27 *Markus MaierCommits: 3Joined: 2012-11-25 - - *Gabriele BulfonCommits: 3Joined: 2013-07-05 *Michael KochCommits: 3Joined: 2011-01-21 + + *Jonathan AquilinaCommits: 3Joined: 2011-01-18 *vjinochCommits: 3Joined: 2013-04-09 - - *Bán RóbertCommits: 3Joined: 2017-10-25 *Stefan HeinemannCommits: 3Joined: 2012-02-16 + + *Shubham VermaCommits: 3Joined: 2018-02-17 *Michael BauerCommits: 3Joined: 2011-11-23 - - + + *Gülşah KöseCommits: 3Joined: 2019-01-17 + *Ivan SafonovCommits: 3Joined: 2017-07-13 + + *Popa Adrian MariusCommits: 3Joined: 2015-03-23 @@ -3410,11 +3441,11 @@ *Matthew NichollsCommits: 3Joined: 2015-04-01 - - *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 + + *Dennis FrancisCommits: 3Joined: 2018-11-15 @@ -3424,11 +3455,11 @@ *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Peter BaumgartenCommits: 3Joined: 2012-11-24 + + *Dimitri DucCommits: 3Joined: 2011-04-19 @@ -3438,11 +3469,11 @@ *Marek DoleželCommits: 3Joined: 2015-07-06 - - *Mayank GuptaCommits: 3Joined: 2016-03-11 + + *David NalleyCommits: 3Joined: 2011-03-03 @@ -3452,11 +3483,11 @@ *Golnaz IrannejadCommits: 3Joined: 2013-04-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 + + *Sérgio MarquesCommits: 3Joined: 2011-11-25 @@ -3466,11 +3497,11 @@ *liongoldCommits: 3Joined: 2016-11-21 - - *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 @@ -3480,11 +3511,11 @@ *Marina PlakalovicCommits: 3Joined: 2012-12-14 - - *Bartosz KosiorekCommits: 3Joined: 2018-02-07 + + *Tobias MuellerCommits: 3Joined: 2014-02-10 @@ -3494,11 +3525,11 @@ *Jacopo NespoloCommits: 3Joined: 2010-10-01 - - *Robert M CampbellCommits: 3Joined: 2013-11-13 + + *Renato FerreiraCommits: 3Joined: 2014-11-15 @@ -3508,11 +3539,11 @@ *Dmitry AshkadovCommits: 3Joined: 2011-08-29 - - *Istvan TuriCommits: 3Joined: 2012-08-16 + + *Johannes BergCommits: 3Joined: 2016-08-03 @@ -3522,11 +3553,11 @@ *Lucas SatabinCommits: 3Joined: 2015-08-25 - - Keith StribleyCommits: 3Joined: 2010-06-29 + + *Mike EberdtCommits: 3Joined: 2011-07-12 @@ -3536,11 +3567,11 @@ *Stephan van den AkkerCommits: 3Joined: 2012-06-07 - - *baltasarqCommits: 3Joined: 2016-02-24 + + *Benjamin DrungCommits: 3Joined: 2012-06-08 @@ -3548,6 +3579,9 @@ *Jason HulmeCommits: 3Joined: 2013-06-05 + *Jozsef SzakacsCommits: 3Joined: 2018-11-07 + + *Oliver GüntherCommits: 3Joined: 2012-08-09 @@ -3587,41 +3621,44 @@ *Xuacu SaturioCommits: 3Joined: 2010-12-19 - *Linus BehrensCommits: 3Joined: 2015-04-23 + *Sumit ChauhanCommits: 3Joined: 2018-12-04 - *Ulkem KasapogluCommits: 3Joined: 2018-07-04 + *Linus BehrensCommits: 3Joined: 2015-04-23 + *Ulkem KasapogluCommits: 3Joined: 2018-07-04 + + *Jacek FraczekCommits: 3Joined: 2016-10-05 + *John Paul Adrian GlaubitzCommits: 3Joined: 2016-11-27 + + *Gergely TarsolyCommits: 3Joined: 2017-11-28 + + *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 *Jan DarmochwalCommits: 3Joined: 2011-01-27 - - *AlexFCommits: 3Joined: 2015-11-12 - *Martin van ZijlCommits: 3Joined: 2018-02-26 - - *Gabriel ChiquiniCommits: 3Joined: 2017-10-01 + + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 - - *sllCommits: 2Joined: 2016-09-06 @@ -3631,11 +3668,11 @@ *Sean McNamaraCommits: 2Joined: 2010-09-29 + + *Kenneth KoskiCommits: 2Joined: 2016-02-20 - - *Mohammad ElahiCommits: 2Joined: 2011-08-27 @@ -3645,11 +3682,11 @@ *Gary HoustonCommits: 2Joined: 2014-12-15 + + *brian houston morrowCommits: 2Joined: 2018-01-24 - - *UrmasCommits: 2Joined: 2012-02-13 @@ -3659,11 +3696,11 @@ *Valter MuraCommits: 2Joined: 2015-06-07 + + *Andrew HigginsonCommits: 2Joined: 2012-04-10 - - *Your NameCommits: 2Joined: 2017-10-09 @@ -3673,11 +3710,11 @@ *Andras BartekCommits: 2Joined: 2012-08-06 + + *Matthias KloseCommits: 2Joined: 2011-03-01 - - *Donizete WaterkemperCommits: 2Joined: 2013-05-23 @@ -3687,13 +3724,13 @@ *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + *Tibor MógerCommits: 2Joined: 2016-12-06 - - - *Kelly AndersonCommits: 2Joined: 2011-05-31 + *AdityaCommits: 2Joined: 2019-01-04 *Ri GangHuCommits: 2Joined: 2013-07-28 @@ -3701,11 +3738,11 @@ *Kevin DubrulleCommits: 2Joined: 2018-07-07 + + *Flex LiuCommits: 2Joined: 2012-09-04 - - *mmeof2Commits: 2Joined: 2013-05-03 @@ -3715,11 +3752,11 @@ *Michal KubecekCommits: 2Joined: 2016-06-02 + + *G_ZoltanCommits: 2Joined: 2016-12-27 - - *Sophie SuCommits: 2Joined: 2016-08-27 @@ -3729,11 +3766,11 @@ *Adam MrózCommits: 2Joined: 2013-02-24 + + *Ed DeanCommits: 2Joined: 2011-01-14 - - *Jean Charles PapinCommits: 2Joined: 2011-02-11 @@ -3743,11 +3780,11 @@ *Kishor BhatCommits: 2Joined: 2015-01-28 + + *Ferran VidalCommits: 2Joined: 2012-04-21 - - *Réka CsékeiCommits: 2Joined: 2018-10-09 @@ -3757,70 +3794,78 @@ *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - + + *Furkan Ahmet KaraCommits: 2Joined: 2017-10-21 + *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 *Daniel StoneCommits: 2Joined: 2014-10-29 + + *Milos SramekCommits: 2Joined: 2012-01-20 *JeevanCommits: 2Joined: 2017-03-04 - - *Boris EgorovCommits: 2Joined: 2014-09-08 *Clarence GuoCommits: 2Joined: 2014-05-26 + + Loiseleur MichelCommits: 2Joined: 2010-09-14 *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 - - *Abeer SethiCommits: 2Joined: 2012-04-12 *Ward van WanrooijCommits: 2Joined: 2012-06-25 + + *Mark DoboCommits: 2Joined: 2018-10-20 *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 - - *Izabela BakollariCommits: 2Joined: 2018-10-27 *Andreas SchierlCommits: 2Joined: 2012-01-30 + + *Viktor VargaCommits: 2Joined: 2013-08-28 *gamebusterzCommits: 2Joined: 2015-02-19 - - + + *Sass DávidCommits: 2Joined: 2019-01-09 + *Clément LassieurCommits: 2Joined: 2014-12-21 + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 @@ -3830,11 +3875,11 @@ *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 - - *Martin NathansenCommits: 2Joined: 2016-04-18 + + *martinb214Commits: 2Joined: 2017-11-28 @@ -3844,123 +3889,123 @@ *Jeremy BichaCommits: 2Joined: 2017-02-06 - - - - *Alain RomedenneCommits: 2Joined: 2018-11-29 - *Yogesh DesaiCommits: 2Joined: 2016-01-05 + + *Jonathan CallenCommits: 2Joined: 2011-01-29 *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *blendergeekCommits: 2Joined: 2017-04-08 *Lubosz SarneckiCommits: 2Joined: 2015-08-20 + + *Sabin FrandesCommits: 2Joined: 2017-09-15 *G??bor KoruhelyCommits: 2Joined: 2017-10-25 - - *Christoph NoackCommits: 2Joined: 2010-12-13 *Sean McMurrayCommits: 2Joined: 2010-10-20 + + *Vicente VendrellCommits: 2Joined: 2012-04-23 *Seo SanghyeonCommits: 2Joined: 2010-09-29 - - *George KorepanovCommits: 2Joined: 2017-01-06 *Marc GarciaCommits: 2Joined: 2012-05-04 + + *Victor MireyevCommits: 2Joined: 2018-05-04 *Mark WolfCommits: 2Joined: 2012-04-04 - - *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 *Rimas KudelisCommits: 2Joined: 2015-01-06 + + *danielat998Commits: 2Joined: 2016-02-11 *PKEuSCommits: 2Joined: 2012-02-05 - - *Chris HoppeCommits: 2Joined: 2013-06-27 *Greggory HernandezCommits: 2Joined: 2012-02-22 + + *Jan HubickaCommits: 2Joined: 2011-09-12 *David SteeleCommits: 2Joined: 2012-04-24 - - *William GathoyeCommits: 2Joined: 2012-02-28 *Horacio FernandesCommits: 2Joined: 2012-07-20 + + *Austin ChenCommits: 2Joined: 2015-03-25 *Jagan LokanathaCommits: 2Joined: 2013-11-19 - - *Gregg KingCommits: 2Joined: 2013-02-26 *Marcin eXine MCommits: 2Joined: 2010-11-02 + + *Benedikt MorbachCommits: 2Joined: 2013-03-10 *Mark WilliamsCommits: 2Joined: 2014-12-17 - - + + *Patrik VasCommits: 2Joined: 2018-12-31 + *Rolf HemmerlingCommits: 2Joined: 2013-06-15 + + *Jon NermutCommits: 2Joined: 2018-01-13 @@ -3970,11 +4015,11 @@ *Sergey FarbotkaCommits: 2Joined: 2012-09-21 - - *Jingtao YanCommits: 2Joined: 2015-03-23 + + *Simon QuigleyCommits: 2Joined: 2018-10-11 @@ -3984,11 +4029,11 @@ *Hussian AlamriCommits: 2Joined: 2014-05-14 - - *Alyssa RossCommits: 2Joined: 2018-11-18 + + *Christos StrubulisCommits: 2Joined: 2012-12-09 @@ -3998,13 +4043,13 @@ *Michael NattererCommits: 2Joined: 2011-04-08 - - *Neil MooreCommits: 2Joined: 2013-08-09 + + - *Jozsef SzakacsCommits: 2Joined: 2018-11-07 + *Tóth AttilaCommits: 2Joined: 2018-12-30 *Arno TeigsethCommits: 2Joined: 2011-09-14 @@ -4012,11 +4057,11 @@ *brinzingCommits: 2Joined: 2015-08-22 - - *Pierre LepageCommits: 2Joined: 2016-11-05 + + *Karsten GerloffCommits: 2Joined: 2011-02-06 @@ -4026,11 +4071,11 @@ *Markus WernigCommits: 2Joined: 2015-03-18 - - *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 + + *Maxim IorshCommits: 2Joined: 2011-10-05 @@ -4040,11 +4085,11 @@ *Carlos LuqueCommits: 2Joined: 2015-07-16 - - *Robert SedakCommits: 2Joined: 2010-10-05 + + *Janit AnjariaCommits: 2Joined: 2013-04-19 @@ -4054,6 +4099,9 @@ *Moritz KuettCommits: 2Joined: 2013-03-23 + + *Denis ArnaudCommits: 2Joined: 2018-01-16 + @@ -4077,18 +4125,18 @@ *Yury TarasievichCommits: 2Joined: 2011-11-23 - *John Paul Adrian GlaubitzCommits: 2Joined: 2016-11-27 + *Hideki IkedaCommits: 2Joined: 2014-06-25 - *Hideki IkedaCommits: 2Joined: 2014-06-25 + *Takashi NakamotoCommits: 2Joined: 2011-08-28 - *Takashi NakamotoCommits: 2Joined: 2011-08-28 + *Daniel HerdeCommits: 2Joined: 2012-08-09 - *Daniel HerdeCommits: 2Joined: 2012-08-09 + *Kelly AndersonCommits: 2Joined: 2011-05-31 *Arne de BruijnCommits: 2Joined: 2012-12-11 @@ -4368,16 +4416,19 @@ *armijnCommits: 1Joined: 2010-12-30 + *Rizal MuttaqinCommits: 1Joined: 2018-12-18 + + *Ondřej SmržCommits: 1Joined: 2013-03-10 *Italo VignoliCommits: 1Joined: 2012-03-09 + + *Suhail AlkowaileetCommits: 1Joined: 2017-12-25 - - *James ClarkeCommits: 1Joined: 2016-08-05 @@ -4387,11 +4438,11 @@ *Jihui ChoiCommits: 1Joined: 2015-06-22 + + *Alain RomedenneCommits: 1Joined: 2018-11-22 - - *Marcel HBCommits: 1Joined: 2011-05-03 @@ -4401,11 +4452,11 @@ *Stefan WeigelCommits: 1Joined: 2011-10-17 + + *Keigo KawamuraCommits: 1Joined: 2015-11-16 - - *Mirco RondiniCommits: 1Joined: 2016-10-10 @@ -4415,11 +4466,11 @@ *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 + + *Paula MannesCommits: 1Joined: 2012-11-30 - - *George WoodCommits: 1Joined: 2018-07-25 @@ -4429,11 +4480,11 @@ *Heiko TietzeCommits: 1Joined: 2018-04-16 + + *Timotej LazarCommits: 1Joined: 2017-11-22 - - *qzhengCommits: 1Joined: 2017-11-14 @@ -4443,11 +4494,11 @@ *Johannes WidmerCommits: 1Joined: 2013-03-23 + + *Ryo ONODERACommits: 1Joined: 2014-04-07 - - *umairshahidCommits: 1Joined: 2015-05-29 @@ -4455,31 +4506,39 @@ *Zenaan HarknessCommits: 1Joined: 2016-08-22 + *Tim RichardsonCommits: 1Joined: 2013-06-04 + + + + *Masataka ShinkeCommits: 1Joined: 2012-02-15 *Jason GerlowskiCommits: 1Joined: 2014-03-07 - - *Michal SiedlaczekCommits: 1Joined: 2014-01-25 *Victor LeeCommits: 1Joined: 2011-12-24 + + *Andreas SägerCommits: 1Joined: 2017-03-26 + *Mert TumerCommits: 1Joined: 2019-01-17 + + *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 - - *Christoph BrillCommits: 1Joined: 2016-02-09 - + + + *Valek FilippovCommits: 1Joined: 2013-02-23 @@ -4488,11 +4547,11 @@ *xjclCommits: 1Joined: 2014-08-04 - - *Julian MehneCommits: 1Joined: 2016-08-04 + + *Andrea MussapCommits: 1Joined: 2016-10-02 @@ -4502,11 +4561,11 @@ *Matti LehtonenCommits: 1Joined: 2017-10-07 - - *Andrew RistCommits: 1Joined: 2012-10-05 + + *Travis CarterCommits: 1Joined: 2012-06-22 @@ -4514,11 +4573,17 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 + *Çağrı DolazCommits: 1Joined: 2018-12-30 + + *Arianna MascioliniCommits: 1Joined: 2017-05-29 + *Howard JohnsonCommits: 1Joined: 2018-11-25 + + *Hiroto KagotaniCommits: 1Joined: 2014-08-19 @@ -4527,11 +4592,11 @@ *Petr GajdosCommits: 1Joined: 2015-04-07 + + *Stefano FacchiniCommits: 1Joined: 2013-08-22 - - *ReshmaCommits: 1Joined: 2018-03-09 @@ -4541,11 +4606,11 @@ *Ilya PonamarevCommits: 1Joined: 2016-10-05 + + *Piet van OostrumCommits: 1Joined: 2015-03-12 - - *Guilhem MoulinCommits: 1Joined: 2018-02-05 @@ -4555,25 +4620,25 @@ *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 + + *Vincent PovirkCommits: 1Joined: 2011-12-19 - - *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 - *Furkan Ahmet KaraCommits: 1Joined: 2017-10-21 + *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 *Christopher BackhouseCommits: 1Joined: 2010-12-06 + + *Andy HearnCommits: 1Joined: 2011-01-09 - - *Karl KoehlerCommits: 1Joined: 2011-11-11 @@ -4583,11 +4648,11 @@ *Martin OwensCommits: 1Joined: 2014-07-27 + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 @@ -4597,11 +4662,11 @@ *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 + + *Aditya KaleCommits: 1Joined: 2014-04-01 - - *SalimHabchiCommits: 1Joined: 2018-07-11 @@ -4611,12 +4676,12 @@ *James CCommits: 1Joined: 2011-12-20 - - *Tim RichardsonCommits: 1Joined: 2013-06-04 - + *Mike SaundersCommits: 1Joined: 2016-06-20 + + *ComputingDwarfCommits: 1Joined: 2017-03-12 @@ -4625,11 +4690,11 @@ *Florent GallaireCommits: 1Joined: 2012-04-21 + + *udaycoderCommits: 1Joined: 2017-03-14 - - *Steve HartCommits: 1Joined: 2015-11-17 @@ -4639,11 +4704,11 @@ *Kevin PengCommits: 1Joined: 2012-07-20 + + *William LachanceCommits: 1Joined: 2011-06-08 - - *krishnan parthasarathiCommits: 1Joined: 2010-10-07 @@ -4653,11 +4718,11 @@ *ZirkCommits: 1Joined: 2015-01-07 + + *Paolo PozzanCommits: 1Joined: 2010-12-19 - - *Rolf KoetterCommits: 1Joined: 2013-11-05 @@ -4667,11 +4732,11 @@ *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + *Pierre SauterCommits: 1Joined: 2015-12-01 - - *NeilBrownCommits: 1Joined: 2010-09-28 @@ -4681,11 +4746,11 @@ *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Leo MoonsCommits: 1Joined: 2018-08-26 - - *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 @@ -4695,56 +4760,64 @@ *Tadele AssefaCommits: 1Joined: 2013-01-15 + + *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 - - *Martin LiškaCommits: 1Joined: 2014-03-26 + *Andreas SturmlechnerCommits: 1Joined: 2019-01-08 + + *pavelCommits: 1Joined: 2010-12-10 + + *Шиповський РоманCommits: 1Joined: 2016-10-28 *Jose ManuelCommits: 1Joined: 2012-04-25 - - *Fernando PiraniCommits: 1Joined: 2015-08-04 *Michael DuelliCommits: 1Joined: 2013-08-01 + + *Vojta KoukalCommits: 1Joined: 2013-03-03 *Chris CheneyCommits: 1Joined: 2011-04-27 - - *Marc BessièresCommits: 1Joined: 2016-01-29 *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + *Mike GorseCommits: 1Joined: 2017-03-11 *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 - - + + *DeveCommits: 1Joined: 2019-01-09 + *ricardobottoCommits: 1Joined: 2013-05-18 + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 @@ -4754,11 +4827,11 @@ *Danny BrownCommits: 1Joined: 2013-09-18 - - *David PenzesCommits: 1Joined: 2011-06-14 + + *Bijan TabatabaiCommits: 1Joined: 2018-08-26 @@ -4768,11 +4841,11 @@ *HrishabhCommits: 1Joined: 2018-03-10 - - *AlicVBCommits: 1Joined: 2018-10-17 + + *Mohamed ThabetCommits: 1Joined: 2016-03-13 @@ -4782,11 +4855,11 @@ *Gabriele PonzoCommits: 1Joined: 2018-02-06 - - *Nithin Kumar PadavuCommits: 1Joined: 2018-04-07 + + *Karan DesaiCommits: 1Joined: 2012-04-01 @@ -4796,11 +4869,11 @@ *nikkiCommits: 1Joined: 2017-04-12 - - *Paulo JoséCommits: 1Joined: 2011-04-01 + + *Dona HertelCommits: 1Joined: 2011-04-14 @@ -4810,11 +4883,11 @@ *Kalman KemenczyCommits: 1Joined: 2010-10-28 - - *Naruhiko OgasawaraCommits: 1Joined: 2014-10-25 + + *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 @@ -4824,11 +4897,11 @@ *Babu VincentCommits: 1Joined: 2014-09-19 - - *Heiko ScheidtCommits: 1Joined: 2014-08-03 + + *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 @@ -4838,11 +4911,11 @@ *JBurantCommits: 1Joined: 2016-04-05 - - *OKANO TakayoshiCommits: 1Joined: 2013-01-29 + + *Alex IvanCommits: 1Joined: 2013-04-15 @@ -4852,11 +4925,11 @@ *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - - *Werner TietzCommits: 1Joined: 2017-04-11 + + *Gleb MishchenkoCommits: 1Joined: 2016-03-22 @@ -4866,11 +4939,11 @@ *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 - - *Ayantha RandikaCommits: 1Joined: 2014-01-23 + + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -4880,11 +4953,11 @@ *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 - - *Dan CorneanuCommits: 1Joined: 2010-12-29 + + *PeterCommits: 1Joined: 2016-05-03 @@ -4894,11 +4967,11 @@ *Álex PuchadesCommits: 1Joined: 2018-03-14 - - *Tim JanikCommits: 1Joined: 2012-08-10 + + *Pavel KacerCommits: 1Joined: 2013-04-11 @@ -4908,11 +4981,11 @@ *Christophe StrobbeCommits: 1Joined: 2011-08-09 - - *matt_51Commits: 1Joined: 2013-11-05 + + *Dag WieersCommits: 1Joined: 2016-03-13 @@ -4922,11 +4995,11 @@ *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 - - *Olivier PlotonCommits: 1Joined: 2012-12-12 + + *Stoyan DimitrovCommits: 1Joined: 2017-10-01 @@ -4936,11 +5009,11 @@ *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 - - *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 + + *Justn LavoieCommits: 1Joined: 2016-12-30 @@ -4950,11 +5023,11 @@ *James Michael DuPontCommits: 1Joined: 2013-08-30 - - *DiadloCommits: 1Joined: 2018-05-23 + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 @@ -4964,11 +5037,11 @@ *Sam TygierCommits: 1Joined: 2016-05-22 - - *DaveCommits: 1Joined: 2012-08-23 + + *Mihovil StanićCommits: 1Joined: 2015-11-11 @@ -4978,11 +5051,11 @@ *Dinh LeCommits: 1Joined: 2017-09-05 - - *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 + + *Daniel MihalyiCommits: 1Joined: 2012-02-06 @@ -4992,11 +5065,11 @@ *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 - - *Freek de KruijfCommits: 1Joined: 2010-12-19 + + *Slávek BankoCommits: 1Joined: 2015-10-10 @@ -5006,11 +5079,11 @@ *Ionut BiruCommits: 1Joined: 2012-05-14 - - *Chen ZuoJunCommits: 1Joined: 2012-10-08 + + *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 @@ -5020,11 +5093,11 @@ *sunwebCommits: 1Joined: 2016-04-08 - - *Joan ParaisoCommits: 1Joined: 2015-09-25 + + *Jiri BlechaCommits: 1Joined: 2013-03-02 @@ -5034,11 +5107,11 @@ *shubhamtibraCommits: 1Joined: 2016-01-16 - - *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 @@ -5048,11 +5121,11 @@ *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 - - *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 @@ -5062,11 +5135,11 @@ *Carsten NiehausCommits: 1Joined: 2012-02-09 - - *Tarun KumarCommits: 1Joined: 2014-03-07 + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 @@ -5076,11 +5149,11 @@ *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 - - *camilleCommits: 1Joined: 2010-12-13 + + *Denis LackovicCommits: 1Joined: 2010-10-05 @@ -5090,11 +5163,11 @@ *Peter TillemansCommits: 1Joined: 2012-06-26 - - *Andrey TurkinCommits: 1Joined: 2011-02-09 + + *Tomas TurekCommits: 1Joined: 2013-03-24 @@ -5104,11 +5177,11 @@ *Alexandru MoscuCommits: 1Joined: 2016-03-18 - - *Maxime CôtéCommits: 1Joined: 2011-04-19 + + *PrashantCommits: 1Joined: 2016-05-17 @@ -5118,11 +5191,11 @@ *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 - - *Peng GaoCommits: 1Joined: 2013-06-16 + + *robert BabiakCommits: 1Joined: 2015-03-25 @@ -5132,11 +5205,11 @@ *Laureano G. LindeCommits: 1Joined: 2012-04-15 - - *Rubén JáñezCommits: 1Joined: 2010-10-11 + + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 @@ -5146,11 +5219,11 @@ *GhasanCommits: 1Joined: 2015-11-09 - - *Johannes HaufCommits: 1Joined: 2015-12-31 + + *Jaime NavarroCommits: 1Joined: 2012-04-20 @@ -5160,11 +5233,11 @@ *vincentCommits: 1Joined: 2013-03-22 - - *Erik AuerswaldCommits: 1Joined: 2013-07-09 + + *Louis SautierCommits: 1Joined: 2018-06-10 @@ -5174,11 +5247,11 @@ *Henning DiedlerCommits: 1Joined: 2013-11-02 - - *Jun NOGATACommits: 1Joined: 2015-01-07 + + *Ota ChasákCommits: 1Joined: 2013-04-24 @@ -5188,11 +5261,11 @@ *Ashish BanerjeeCommits: 1Joined: 2013-04-04 - - *Don LewisCommits: 1Joined: 2018-08-22 + + *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -5202,11 +5275,11 @@ *Guillaume FillolCommits: 1Joined: 2011-01-29 - - *Andrew WestCommits: 1Joined: 2011-10-21 + + *Antoine CœurCommits: 1Joined: 2015-06-11 @@ -5216,11 +5289,11 @@ *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 - - *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 + + *Modestas RimkusCommits: 1Joined: 2011-11-21 @@ -5230,11 +5303,11 @@ *Milan ZelenkaCommits: 1Joined: 2014-03-26 - - *pkoroau pkoroauCommits: 1Joined: 2012-12-20 + + *Audrey TangCommits: 1Joined: 2014-08-05 @@ -5244,94 +5317,86 @@ *gdm.manmeetCommits: 1Joined: 2014-03-18 - - *Juergen SteinhilberCommits: 1Joined: 2012-03-05 - - *Mike SaundersCommits: 1Joined: 2016-06-20 - + + *Timothée IsnardCommits: 1Joined: 2015-10-11 *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 - - *Jordi MallachCommits: 1Joined: 2012-05-03 *Daniel NaberCommits: 1Joined: 2012-05-09 + + *Martin RichardCommits: 1Joined: 2012-01-31 *Dennis NielenCommits: 1Joined: 2017-03-21 - - *Neil StalkerCommits: 1Joined: 2010-10-02 *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 + + *emahaldar/emCommits: 1Joined: 2016-06-13 *William BonnetCommits: 1Joined: 2015-12-05 - - *Gordon LackCommits: 1Joined: 2012-05-09 *Sergey FukanchikCommits: 1Joined: 2015-09-17 + + *Andrew BranchCommits: 1Joined: 2013-02-20 *Honza MinarikCommits: 1Joined: 2013-04-03 - - *Moritz BechlerCommits: 1Joined: 2011-12-19 *Raymond WellsCommits: 1Joined: 2013-09-02 + + *JookiaCommits: 1Joined: 2016-10-08 *Matt PrattCommits: 1Joined: 2011-11-02 - - *Reto SchneiderCommits: 1Joined: 2015-11-20 *Hank LeiningerCommits: 1Joined: 2016-02-27 + + *Dave RichardsCommits: 1Joined: 2012-08-22 - *Denis ArnaudCommits: 1Joined: 2018-01-16 - - - - - *Alex GulyásCommits: 1Joined: 2014-04-27 + *Alex GulyásCommits: 1Joined: 2014-04-27 *Yurii KolesnykovCommits: 1Joined: 2015-05-10 @@ -5339,11 +5404,11 @@ *Nicola PovoleriCommits: 1Joined: 2015-11-28 + + *Tamás GulácsiCommits: 1Joined: 2016-11-11 - - *frederic vromanCommits: 1Joined: 2017-05-12 @@ -5353,11 +5418,11 @@ *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 + + *Kenneth AafløyCommits: 1Joined: 2012-01-11 - - *Colomban WendlingCommits: 1Joined: 2017-03-15 @@ -5367,11 +5432,11 @@ *scitoCommits: 1Joined: 2015-04-13 + + *Danny RobertsCommits: 1Joined: 2011-02-18 - - *LesterCommits: 1Joined: 2012-10-23 @@ -5381,11 +5446,11 @@ *Seyeong KimCommits: 1Joined: 2014-10-06 + + *Florian EffenbergerCommits: 1Joined: 2015-08-04 - - *Michal HorakCommits: 1Joined: 2014-04-21 @@ -5395,11 +5460,11 @@ *Owen GenatCommits: 1Joined: 2016-11-20 + + *DaeHyun SungCommits: 1Joined: 2018-05-19 - - *Yohei YukawaCommits: 1Joined: 2013-05-06 @@ -5409,11 +5474,11 @@ *Umang JainCommits: 1Joined: 2017-03-13 + + *PhyzerCommits: 1Joined: 2014-09-13 - - *Dolives BenoitCommits: 1Joined: 2011-07-04 @@ -5423,9 +5488,16 @@ *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + *galbarnissanCommits: 1Joined: 2014-12-03 + + + + + Contributors to bundled templates @@ -6042,7 +6114,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 @@ -6052,7 +6124,7 @@ 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 - 2444 individuals contributed: + 2451 individuals contributed: @@ -6060,21 +6132,21 @@ - K-j (8732) + K-j (8830) - Roczek, Dennis (8087) + Roczek, Dennis (8096) Goncharuk, Lera (5435) - Pierre-yves samyn (4887) + Pierre-yves samyn (5211) - Hrbrgr (4395) + Hrbrgr (4399) Uroveits (4368) @@ -6088,10 +6160,10 @@ - Gautier, Sophie (3229) + Gautier, Sophie (3239) - (3008) + (3026) Balland-Poirier, Laurent (2492) @@ -6105,46 +6177,46 @@ Bielefeld, Rainer (2077) - Filmsi (1709) + Filmsi (1935) - Effenberger, Florian (1705) + Effenberger, Florian (1706) - Michaelsen, Björn (1548) + Jayme Barrientos, Adolfo (1620) - Kompilainenn (1492) + Kompilainenn (1567) - Jayme Barrientos, Adolfo (1398) + Michaelsen, Björn (1549) Marcpare (1396) - GerryT (1213) + Hibagonsan (1354) - Adailton (1203) + GerryT (1222) - Hallot, Olivier (1180) + Adailton (1203) - Mirek2 (1162) + Hallot, Olivier (1192) - Hibagonsan (1150) + Buzzatti Pacheco, Gustavo (1177) - Buzzatti Pacheco, Gustavo (1148) + Mirek2 (1162) Haas, Uwe (1095) @@ -6153,46 +6225,46 @@ Ostrovsky, David (1010) - LibreOfficiant (992) + LibreOfficiant (1008) - Nouws, Cor (991) + Nouws, Cor (1002) - Naruoga (983) + Naruoga (989) Novak, Nino (976) - Enoki (963) + X1sc0 (969) - Clement21.philippe (931) + Enoki (968) - Tom (926) + Clement21.philippe (931) - Meeks, Michael (918) + Meeks, Michael (928) - X1sc0 (916) + Tom (926) - Beluga (750) + Beluga (794) - Teo91 (733) + H-k (739) - H-k (717) + Teo91 (733) Iversen, Jan (693) @@ -6203,7 +6275,7 @@ Drew (689) - Behrens, Thorsten (676) + Behrens, Thorsten (681) Hazel (639) @@ -6214,19 +6286,22 @@ + FuzzyBot (598) + + Jmadero (596) Raulpacheco (596) - Rathke, Eike (556) + Rathke, Eike (562) + + ChristophNoack (549) - - Paulo (546) @@ -6236,25 +6311,25 @@ Knorr, Stefan (521) + + Davidnelson (517) - - - Elianedomingos (508) + Vajna, Miklos (514) - Vajna, Miklos (508) + Elianedomingos (508) Foote, V Stuart (493) + + Reisinger, Florian (491) - - RobertG (486) @@ -6264,100 +6339,97 @@ Philips, Yousuf (462) - - Mladek, Petr (450) - - SteenRønnow (449) + Mladek, Petr (450) - Holešovský, Jan (448) + Elcico (449) - Elcico (445) + SteenRønnow (449) - Eskroni (437) + Holešovský, Jan (448) - Rmfaile (436) + Eskroni (437) - Mike.saunders (420) + Rmfaile (436) - Chris69 (419) + Mike.saunders (423) - Gecko (419) + Sam m (422) - Sam m (419) + Chris69 (419) - Manuelf (418) + Gecko (419) - Luz Coelho, Rogério (409) + Manuelf (418) - Henschel, Regina (404) + Luz Coelho, Rogério (409) - Veracape (402) + Henschel, Regina (406) - Yoshida, Kohei (394) + Veracape (402) - Alexander Wilms (392) + McNamara, Caolán (394) - Mohrhard, Markus (392) + Yoshida, Kohei (394) - McNamara, Caolán (391) + Alexander Wilms (392) - Tardon, David (387) + Mohrhard, Markus (392) - Foral (384) + Tardon, David (387) - StefanW (379) + Foral (384) - AndrasTimar (376) + AndrasTimar (380) - Emanuel Marcatinco (374) + StefanW (379) - Stahl, Michael (364) + Emanuel Marcatinco (374) - FuzzyBot (357) + Stahl, Michael (366) - Thiebaud, Norbert (341) + Tietze, Heiko (342) - Tietze, Heiko (334) + Thiebaud, Norbert (341) Vpanter (333) @@ -6402,14 +6474,17 @@ Helen russian (268) - Kaplan, Lior (267) + Lillqvist, Tor (268) - Lillqvist, Tor (266) + Kaplan, Lior (267) + Jlv (258) + + Remarques (252) @@ -6418,26 +6493,26 @@ Adrianoafonso (246) - - Loic (240) - - Jlv (238) + Loic (240) Steve (237) - Bosdonnat, Cédric (231) + Kara, Muhammet (234) - Schiavinatto (230) + Bosdonnat, Cédric (231) + Schiavinatto (230) + + Kevin, Suo (锁琨珑) (228) @@ -6446,11 +6521,11 @@ Almusaireae (219) + + Kerwyn (218) - - Kkwet38 (218) @@ -6460,19 +6535,16 @@ EricBright (216) - - Khirano (215) - - Jbfaure (212) + Khirano (215) - Kara, Muhammet (209) + Vignoli, Italo (212) - Vignoli, Italo (208) + Jbfaure (212) Andreschnabel (207) @@ -6489,7 +6561,7 @@ Wheatbix (198) - Kitaygrad (194) + Kitaygrad (196) @@ -6514,15 +6586,18 @@ Alkurtass, Issa (178) - Raw text (175) + Latini, Marina (176) - Madl, Tobias (175) + Kosiorek, Bartosz (175) - Latini, Marina (173) + Raw text (175) + + + Madl, Tobias (175) Fridrich (172) @@ -6530,11 +6605,11 @@ Luizheli (172) + + Furusho (170) - - Pitkänen, Harri (169) @@ -6544,11 +6619,11 @@ Matuaki (163) + + See (160) - - Snelders, Rob (159) @@ -6558,27 +6633,27 @@ Drodriguez (156) - - Xystina (154) - - Kosiorek, Bartosz (153) + Kaganski, Mike (156) - Pietro (150) + Xystina (154) - Herzog, Christoph (149) + Franklin (150) - Back69 (146) + Pietro (150) - Kaganski, Mike (146) + Herzog, Christoph (149) + + + Back69 (146) Mipmap (144) @@ -6586,39 +6661,39 @@ Lodahl (143) + + + + Junmeguro (141) + Michelr (141) - - Mamane, Lionel Elie (140) Lorenzo (140) + + Zolnai, Tamás (139) De Cuyper, Joren (138) - - Weissenbacher, Philipp (138) Heliojsf (137) - - Junmeguro (137) - + + P.guimberteau (137) - - Norah (135) @@ -6628,54 +6703,54 @@ Filhocf (132) + + Richteruwe (131) - - + + Abe, Takeshi (131) + Jucasaca (129) Michel, Mathias (129) + + Nik (127) Ikuya (126) - - - - Abe, Takeshi (125) - JARF (123) Krackedpress (123) - - RGB.ES (123) - - Trapezus (122) + Nemeth (123) - JohnSmith (120) + RGB.ES (123) - Nemeth (120) + Trapezus (122) - Liebel, Jennifer (119) + JohnSmith (120) + Liebel, Jennifer (119) + + Ki Drupadi (119) @@ -6684,11 +6759,11 @@ Chris-hoh (115) + + Spaeth, Sebastian (115) - - Ysabeau (115) @@ -6698,26 +6773,26 @@ Massimo.zaffaina (113) - - Vohe (113) - - Marcus Gama (112) + Slacka (113) - Dougvigliazzi (111) + Vohe (113) - Franklin (111) + Marcus Gama (112) - Medieval (111) + Dougvigliazzi (111) + Medieval (111) + + Monthoflibreoffice bot (110) @@ -6726,16 +6801,13 @@ Bachka (109) - - Nyucel (108) - - Salix (107) + Nyucel (108) - Slacka (105) + Salix (107) Bitsfritz (104) @@ -6777,32 +6849,32 @@ MagicFab (92) - Frombenny (90) + Nogajun (92) - MDDN (89) + Frombenny (90) - Zeki (89) + MDDN (89) - Catalin Festila (88) + Gathoye, William (89) - Dan (88) + Zeki (89) - Hertel, Jesper (88) + Catalin Festila (88) - Nogajun (88) + Dan (88) - Gathoye, William (88) + Hertel, Jesper (88) Kees538 (87) @@ -6819,16 +6891,19 @@ Nabet, Julien (87) + Baffclan (86) + + Omori (86) Steve- - (86) + + Horáček, Stanislav (85) - - Fišeras, Aurimas (84) @@ -6838,9 +6913,6 @@ KorrawitBot (84) - - Baffclan (82) - @@ -6864,14 +6936,17 @@ Xosé (78) - Albino (75) + Ponzo, Gabriele (76) - K.K.Ashisuto (75) + Albino (75) + K.K.Ashisuto (75) + + Emoreno (74) @@ -6880,13 +6955,13 @@ Castermans, Luc (72) - - Aury88 (71) - - Köse, Gülşah (71) + Köse, Gülşah (72) + + + Aury88 (71) RalfHB (71) @@ -6894,11 +6969,11 @@ Al-Harthi, Ahmad Hussein (70) + + Enio.gemmo (70) - - Jo7ueb (70) @@ -6908,11 +6983,11 @@ Malhassoun (69) + + Freetank (68) - - Fábio Farias (68) @@ -6920,41 +6995,41 @@ Gghh (68) + Raal (68) + + + + Ptux (67) Karbasion, Bersam (65) - - Bmcs (65) - Raal (65) + StanG (65) + + - StanG (65) + Timur LOL (65) Oipila (64) - - Kudelis, Rimas (63) Sikeler (63) - - Timur LOL (63) - + + Popa, Adrian Marius (62) - - Denco (61) @@ -6962,9 +7037,6 @@ Frieder (61) - Ponzo, Gabriele (61) - - Arnaudlecam (60) @@ -7155,142 +7227,145 @@ Bluedwarf (42) + Fkara (42) + + KAMI (42) Another sam (41) + + Arjunaraoc (41) - - + + GerhardW (41) + Joey (41) Pedlino (41) + + Uwealtmann (41) Afaccioli74 (40) - - AnXh3L0 (40) - GerhardW (40) - - Kraucer (40) + + Daveb (39) - - + + Jstnlth (39) + Enervation (38) Pje335 (38) + + Alex Thurgood (37) Cjenkins (37) - - Ivanslf (37) Aragunde Pérez, Jacobo (37) + + Kano (37) Kinshuksunil (37) - - Castle, John LeMoyne (37) RaducuG (37) + + Enger, Terrence (37) Valdirbarbosa (37) - - Caco13 (36) Danishka (36) + + Patheticcockroach (36) Sci citation (36) - - Yan Pashkovsky (36) - Jstnlth (35) + Grandin, Noel (35) + + Liongold (35) Nora (35) - - Pingping111 (35) Stalker08 (35) + + Subramanian, Muthu (35) Bormant (33) - - Davidlamhauge (33) - Grandin, Noel (33) - - Corrius, Jesús (33) + + Lmartinezh (33) - - Mars (33) @@ -7300,11 +7375,11 @@ Pereriksson (33) + + Rafi (33) - - Shirahara (33) @@ -7314,53 +7389,53 @@ Clio (32) + + Daud (32) - - + + Kelemeng (32) + Lenochod (32) Dryomov, Artur (32) + + Monocat (32) Vulcain (32) - - Xuacu (32) Alexanderwerner (31) + + Fábio Coelho (31) H (31) - - Jingtao, Yan (31) IvanM (31) - - Kelemeng (31) - + + Kant, Pranav (31) - - Arnaud versini (30) @@ -7370,11 +7445,11 @@ Ptoye (30) + + Speck (30) - - Tclovis (30) @@ -7382,55 +7457,55 @@ Thardeck (30) + Andreas ka (29) + + + + Cida.Coltro (29) Darbe (29) - - EdvaldoSCruz (29) Haaninjo (29) + + RodolfoRG (29) Серж (29) - - Ace-dent (28) Elmau (28) + + Riemer, Philipp (28) المسيكين (28) - - Acbaird (27) - Andreas ka (27) - - Marcofilippozzi (27) + + Marcos Paulo de Souza (27) - - Micm (27) @@ -7440,11 +7515,11 @@ Sarojdhakal (27) + + Thuswaldner, Albert (27) - - Alayaran (26) @@ -7454,11 +7529,11 @@ Ezeperez26 (26) + + Fanch (26) - - Hogue (26) @@ -7468,11 +7543,11 @@ Linuxman (26) + + Lutch (26) - - Hawkins, Nigel (26) @@ -7482,11 +7557,11 @@ Vaslav (26) + + Aidsoid (25) - - Ailion (25) @@ -7496,140 +7571,148 @@ Kłos, Szymon (25) + + Freddyrh (25) - - Sullivan, Gatlin (25) + Glogowski, Jan-Marek (25) + + Lboccia (25) + + Manuel De Franceschi (25) Noelson (25) - - Freund, Matthias (25) Schröder, Sophia (25) + + Winniemiel05 (25) Elpapki (24) - - Gaianer (24) Gérard24 (24) + + Ksoviero (24) Nik vr (24) - - Olivier (24) PaoloPelloni (24) + + + + Guilhem (23) + Hamurcu (23) Montané, Joan (23) - - - - Glogowski, Jan-Marek (23) - Olorin (23) + + Rizmut (23) TaeWong (23) - - Team One (23) Thumperward (23) + + Tommy27 (23) Youngman, Anthony W. (23) - - Aphaia (22) Bellerophon (22) + + Bjoern (22) HenryGR (22) - - JChimene (22) Toxitom (22) + + Webmink (22) Jeppebundsgaard (21) - - Johannes (21) Kabe (21) + + + + Keymap19 (21) + Liusiqi43 (21) Necdetyucel (21) - - Puster (21) + + WalterPape (21) @@ -7639,11 +7722,11 @@ Bugmenot (20) - - Grasip (20) + + HeinF (20) @@ -7651,52 +7734,44 @@ Icobgr (20) - Keymap19 (20) - - - - LLyaudet (20) Mattsturgeon (20) + + Vdragon (20) Vmalep (20) - - XMatence (20) Yorick (20) + + Zapata (20) Clarice Vigliazzi (19) - - Guateconexion (19) - Guilhem (19) - - Houbsi (19) + + JaronBaron (19) - - Jem (19) @@ -7706,11 +7781,11 @@ Kentarch (19) + + Ionita, Teodor-Mircea (19) - - Magee, Timothy (18) @@ -7720,11 +7795,11 @@ Foolfitz (18) + + Jstaerk (18) - - Narayan (18) @@ -7734,11 +7809,11 @@ Richard (18) + + Sooth (18) - - UriHerrera (18) @@ -7748,11 +7823,11 @@ 林漢昌 (18) + + Akerbeltz (17) - - Chd (17) @@ -7762,11 +7837,11 @@ Dlmoretz (17) + + Ertsey, Andor (17) - - Guilherme.vanz (17) @@ -7776,11 +7851,11 @@ Monastirsky, Maxim (17) + + Rubembarreto (17) - - Taken (17) @@ -7790,11 +7865,11 @@ Yumakino (17) + + Беломир (17) - - Airon90 (16) @@ -7804,11 +7879,11 @@ Budea, Áron (16) + + Dhersh (16) - - HanV (16) @@ -7818,11 +7893,11 @@ MoIshihara (16) + + Oweng (16) - - P.Guimberteau (16) @@ -7832,11 +7907,11 @@ Ristoi (16) + + Smarquespt (16) - - Smrabelo (16) @@ -7846,11 +7921,11 @@ Valtermura (16) + + APerson (15) - - Akki95 (15) @@ -7860,11 +7935,11 @@ Bertob (15) + + Irmhild (15) - - Khlood Elsayed (15) @@ -7874,11 +7949,11 @@ Luctur (15) + + Pinto, Marco A.G. (15) - - Miko (15) @@ -7888,11 +7963,11 @@ Dominguez, Rafael (15) + + Patriciasc (15) - - Raul.malea (15) @@ -7902,11 +7977,11 @@ Thorogood, Tom (15) + + Ulf hamburg (15) - - 暗影遺言 (15) @@ -7916,11 +7991,11 @@ Darkcircle (14) + + Elrath (14) - - Fina (14) @@ -7930,98 +8005,106 @@ Halencarjunior (14) + + + + Tomoyuki, Kubota (14) + Lfernandocarvalho (14) - - Librosaurus (14) Marklh9 (14) + + Mderoucy (14) Mihkel (14) - - Rania (14) Reinsle (14) + + RiderExMachina (14) Susobhang70 (14) - - Tamiliam (14) Testnoda (14) + + Thangamani-arun (14) Akoscomp (13) - - Alrt84 (13) Alyssonware (13) + + Beuss (13) Cedric31 (13) - - Gallaecio (13) Grzesiek a (13) + + Jobo (13) Kadekilo (13) - - Leomota (13) Ljelly (13) + + + + Lothar.becker (13) + Luc (13) Luked (13) - - Mabbb (13) + + Weghorn, Michael (13) @@ -8031,11 +8114,11 @@ Odd123 (13) - - Pete Boyd (13) + + S.Gecko (13) @@ -8045,11 +8128,11 @@ Sanyii (13) - - Simplicity Instinct (13) + + ThierryM (13) @@ -8059,11 +8142,11 @@ Vivaelcelta (13) - - Vkkodali (13) + + A8 (12) @@ -8073,11 +8156,11 @@ Alg (12) - - And471 (12) + + AustinW (12) @@ -8087,11 +8170,11 @@ Cralin (12) - - Al-Otaibi, Faisal M. (12) + + Halan (12) @@ -8101,11 +8184,11 @@ Ledure, Jean-Pierre (12) - - Krabina (12) + + Šebetić, Krunoslav (12) @@ -8115,11 +8198,11 @@ Marcio Oliveira (12) - - Pcapeluto (12) + + Gupta, Rachit (12) @@ -8129,11 +8212,11 @@ Möller, Sören — spelled Soeren Moeller in some patches (12) - - Staticsafe (12) + + Veerh01 (12) @@ -8143,11 +8226,11 @@ AndikaTriwidada (11) - - Bryanquigley (11) + + Cdan (11) @@ -8157,11 +8240,11 @@ Dajare (11) - - Dennisfrancis (11) + + Ebraminio (11) @@ -8171,11 +8254,11 @@ Gokul, S (11) - - Johnny M (11) + + Kallecarl (11) @@ -8185,11 +8268,11 @@ Luiz Henrique Natalino (11) - - MNeto (11) + + Pearson, Timothy (11) @@ -8199,11 +8282,11 @@ NON (11) - - Johansson, Niklas (11) + + Nuernbergerj (11) @@ -8213,11 +8296,11 @@ Rogeniobelem (11) - - Salmaan (11) + + Sunk8 (11) @@ -8227,11 +8310,11 @@ Vrlivre (11) - - Yaron (11) + + Zero0w (11) @@ -8241,11 +8324,11 @@ Algotruneman (10) - - Castagno, Giuseppe (10) + + Blargh (10) @@ -8255,11 +8338,11 @@ Diginin (10) - - Eagles051387 (10) + + Eduardogula (10) @@ -8269,81 +8352,81 @@ El7r (10) - - - - Tomoyuki, Kubota (10) - J.baer (10) + + Jdittrich (10) Kadertarlan (10) - - Kirill NN (10) Linuxuser330250 (10) + + Lionlinux (10) Marco c (10) - - Chung, Elton (10) Mikalai (10) + + Mikeyy (10) Morvan (10) - - Nateyee (10) Otto (10) + + RegisPerdreau (10) Revol (10) - - Ronja (10) Serge Krot (10) + + + + Syntaxerrormmm (10) + Tatat (10) Tomg (10) - - Ttocsmij (10) + + Twstdude0to1 (10) @@ -8353,11 +8436,11 @@ Wlenon (10) - - Al-Abdulrazzaq, Abdulmajeed (9) + + Agger (9) @@ -8367,11 +8450,11 @@ AtkinsSJ (9) - - Camargo (9) + + Cnuss (9) @@ -8381,96 +8464,96 @@ Dupreyb (9) - - Fatdf (9) - - Fkara (9) - + + Gibi (9) GisbertFriege (9) - - Goranrakic (9) Jim-BobHarris (9) + + Jopsen (9) Jowyta (9) - - Kscanne (9) Lapetec (9) + + Lexeii (9) Mapper (9) - - Marco (9) Meo (9) + + Msaffron (9) Ohnemax (9) - - Onting (9) Oprea.luci (9) + + Foley, Peter (9) Pixpray (9) - - Dricot, Lionel (9) Rantaro (9) + + Rogawa (9) Rpr (9) - - Spacebat (9) + Svante (9) + + + + Therabi (9) @@ -8479,11 +8562,11 @@ Zhangxiaofei (9) - - ميدو (9) + + Alexxed (8) @@ -8493,11 +8576,11 @@ Ausserirdischegesund (8) - - Cocofan (8) + + Cusiri (8) @@ -8507,11 +8590,11 @@ DrDub (8) - - Ed Eyles (8) + + Elacheche (8) @@ -8521,15 +8604,18 @@ Israel Chaves (8) - - JR (8) + + Jiero (8) + Jonatoni (8) + + Jrsiqueira (8) @@ -8566,9 +8652,6 @@ - Lothar.becker (8) - - Manj k (8) @@ -8577,11 +8660,11 @@ Rimkus, Modestas (8) - - Mrmox2 (8) + + NightMonkey (8) @@ -8591,11 +8674,11 @@ Osnola (8) - - Paulo.tavares (8) + + Peterpall (8) @@ -8605,11 +8688,11 @@ Thejack (8) - - Tibbylickle (8) + + Troumad (8) @@ -8619,11 +8702,11 @@ VlhOwn (8) - - Tamás, Bunth (8) + + Yakusha (8) @@ -8633,6 +8716,9 @@ Kabatsayev, Ruslan (7) + + Andrea Gelmini (7) + @@ -8692,9 +8778,6 @@ - Jonatoni (7) - - Levith (7) @@ -8703,11 +8786,11 @@ M1cky (7) - - Mariosv (7) + + Mbayer (7) @@ -8717,11 +8800,11 @@ Francis, Matthew (7) - - Nathanjh13 (7) + + Ndduong (7) @@ -8731,11 +8814,11 @@ Olivier DDB (7) - - Opensas (7) + + Polte (7) @@ -8745,246 +8828,239 @@ Rodo (7) - - Shady (7) + + Simosx (7) - Svante (7) - - Tonnysmile (7) - - Toxicbits (7) Wabuo (7) + + Woordje (7) صفا الفليج (7) - - Alexandrorodrigez (6) Armin Dänzer (6) + + Asian flower (6) Higginson, Andrew (6) - - Barend (6) Bobe (6) + + Bruno (6) Cccfr (6) - - ClausKofoed (6) Coypu (6) + + Dag (6) BEN MANSOUR, Mohamed-Ali (6) - - Ddxavier (6) Dfriedman (6) + + DotnetCarpenter (6) Mencken, Douglas (6) - - Dr.Faust (6) Druzhshchienschkyj (6) + + Edmond ciorba (6) Edmund.laugasson (6) - - Equis (6) FPhoenix (6) + + Fdekruijf (6) Gallaire, Florent (6) - - Fisiu (6) Florian heckl (6) + + Ghune (6) Googly Googly (6) - - HdV (6) Hmoi (6) + + Hramrach (6) Infoprof (6) - - Iplaw67 (6) Timofeev, Ivan (6) + + James 00cat (6) Jeffersonx (6) - - Kawichi (6) Levlazinskiy (6) + + Link Mauve (6) MaggieT (6) - - Manas (6) Manop (6) + + Mas (6) Mgommel (6) - - Mmetz (6) Ndlsas (6) + + + Öttl, Gerhard (6) Only you (6) - - Os cib (6) PLNET (6) + + Paour (6) Pescetti (6) - - - + Peter Chastain (6) Peterhuang1kimo (6) + + Puggan (6) Rotaj (6) - - Sn!py (6) Sukit (6) - - Syntaxerrormmm (6) - + + Heidenreich, Josh (6) - - Thorwil (6) @@ -8994,11 +9070,11 @@ Tyree (6) + + VACHER (6) - - Vgezer (6) @@ -9008,11 +9084,11 @@ Wagner Augusto Silva Rodrigo (6) + + Wasserthal (6) - - Wigglejimmy (6) @@ -9022,11 +9098,11 @@ Xhi2018 (6) + + 3blz (5) - - Adam Co (5) @@ -9036,16 +9112,13 @@ AleXanDeR G (5) - - Alfalb (5) - - Alvarez, Octavio (5) + Alfalb (5) - Andrea Gelmini (5) + Alvarez, Octavio (5) Anousak (5) @@ -9126,6 +9199,9 @@ + Hidayet (5) + + HubPfalz (5) @@ -9134,11 +9210,11 @@ HwangTW (5) + + Icyitscold (5) - - Jaysponsored (5) @@ -9148,11 +9224,11 @@ John.pratt (5) + + KadlecOn (5) - - Kamataki (5) @@ -9162,11 +9238,11 @@ Koji Annoura (5) + + LibreOfficeUser1 (5) - - Mak (5) @@ -9176,11 +9252,11 @@ Midimarcus (5) + + Laplante, Chris (5) - - Mtg (5) @@ -9190,12 +9266,11 @@ Namikawa (5) + + OSVALDO LINS VIANA (5) - - - Orcmid (5) @@ -9205,11 +9280,11 @@ Pepe (5) + + Pkoroau (5) - - Poeml (5) @@ -9219,11 +9294,11 @@ Rajesh (5) + + Raknor (5) - - Raulpaes (5) @@ -9231,310 +9306,318 @@ Rautamiekka (5) + Raykowj (5) + + + + ReneEngelhard (5) Rhoslyn (5) - - Rogerio DA (5) SabinGC (5) + + Salavine1 (5) Samson (5) - - Chvátal, Tomáš (5) Sergej (5) + + So solid moo (5) Srividya (5) - - Starseeker (5) Taylorh140 (5) + + Terentev.mn (5) Timotheonb (5) - - Tranzistors (5) Wasdin (5) + + Wt (5) Yury Tarasievich (5) - - AHi (4) Aaronkyle (4) + + Aas (4) Adderbox76 (4) - - Agron (4) Albertoeda (4) + + Nureña, Aldo Román (4) Alex1 (4) - - AliKhP (4) Alvarenga (4) + + Alzoo (4) Amire80 (4) - - Andréb (4) Archlid (4) + + Arhitectul (4) Axel (4) - - Ayhanyalcinsoy (4) Azorpid (4) + + Bardo (4) Widl, Bernhard (4) - - Bigbek (4) Blender3dartist (4) + + Bntser (4) Cam AW (4) - - ConquerorsHaki (4) Crankybot (4) + + CyrilBeaussier (4) Deivan (4) - - Dmerker (4) DmitryRamones (4) + + Doubi (4) Dragon (4) - - Robertson, Daniel (4) Eisaks (4) + + Erx700 (4) Fmolinero (4) - - Ftigeot (4) GKFX (4) + + Garrowolf (4) Gmjs (4) - - Hdu (4) Hossein (4) + + ImperfectlyInformed (4) Jamesleader (4) - - Jessefrgsmith (4) Jiehong (4) + + Jjmeric (4) JnRouvignac (4) - - Jonata (4) Jones (4) + + Jooste (4) Joriki (4) - - Le Bigot, Jean-Tiare (4) Lethargilistic (4) + + Loren.rogers (4) Haggag, Muhammad (4) - - MPascual (4) Rumianowski, Maciej (4) + + Marinela (4) Mhonline (4) - - Mikedoherty ca (4) Morgan greywolf (4) + + Mortgage01 (4) NGHLibreOffice (4) - - O.villani (4) Offidocs (4) + + Orson69 (4) Oscar90210 (4) - - + + PRosmaninho (4) + Paolopoz (4) + + Paranemertes (4) @@ -9544,11 +9627,11 @@ Pegasus (4) - - Pgassmann (4) + + Phillip.davis (4) @@ -9558,15 +9641,18 @@ Prolog.guy (4) - - Psao (4) + + Qubit-test (4) + Raniaamina (4) + + Reyn100 (4) @@ -10107,9 +10193,6 @@ - Raykowj (3) - - Bevilacqua, Jean-Sébastien (3) @@ -10118,11 +10201,11 @@ Rick (3) - - Robert.E.A.Harvey (3) + + Rosemary (3) @@ -10132,11 +10215,11 @@ Sander Klootwijk (3) - - Sangeeta (3) + + Saper (3) @@ -10146,11 +10229,11 @@ Sayt (3) - - Schroed(ing)er (3) + + Sebby (3) @@ -10160,11 +10243,11 @@ Shelandy (3) - - Skinnerbird (3) + + Smile4ever (3) @@ -10174,11 +10257,11 @@ Songchuan (3) - - Soued031 (3) + + StefanRing (3) @@ -10188,11 +10271,11 @@ Strugee (3) - - Suren (3) + + Sushils (3) @@ -10202,11 +10285,11 @@ TheWebalyst (3) - - Tiagosilva.anps (3) + + Timsamoff (3) @@ -10216,11 +10299,11 @@ Kumar, Tarun (3) - - Toki (3) + + Tomi Toivio (3) @@ -10230,11 +10313,11 @@ TrnsltLife (3) - - Tushantin (3) + + Ubap (3) @@ -10244,11 +10327,11 @@ Underdog (3) - - Vinctor (3) + + Vljubovic (3) @@ -10258,11 +10341,11 @@ Khoo, Wei Ming (3) - - WesPeacock (3) + + Xaker1 (3) @@ -10272,11 +10355,11 @@ Kolesnykov, Yurii (3) - - Yvon Henel (3) + + Zaxebo1 (3) @@ -10286,11 +10369,11 @@ ترجمان05 (3) - - さかみのかさね (3) + + AbbeyI19jfjc (2) @@ -10300,11 +10383,11 @@ AdrianValdez4 (2) - - Adsha (2) + + Agarciamog (2) @@ -10314,11 +10397,11 @@ Akurery (2) - - Alan (2) + + Ale2017 (2) @@ -10328,11 +10411,11 @@ Alina12345 (2) - - Alisha (2) + + AlmedaFrancis (2) @@ -10342,11 +10425,11 @@ Amunizp (2) - - AmyCarney5 (2) + + Anasiic (2) @@ -10356,10 +10439,13 @@ AndrewKuhn7 (2) + + AndrewUlrich (2) + - AndrewUlrich (2) + Andthebrain (2) Anipeter (2) @@ -10995,14 +11081,17 @@ Imagin8or (2) - InezFinney8 (2) + Imanuelr10 (2) - IraLane4 (2) + InezFinney8 (2) + IraLane4 (2) + + IrinaMccormack (2) @@ -11011,11 +11100,11 @@ IsadoraFoster (2) + + IsaiahBuck5 (2) - - IsiahLackey2 (2) @@ -11025,11 +11114,11 @@ Burant, Jiri (2) + + JOIMER REYES (2) - - JacintaGibson (2) @@ -11039,11 +11128,11 @@ C., James (2) + + JanuariusStringer (2) - - Jasmins (2) @@ -11053,11 +11142,11 @@ JavierFernandez (2) + + JayStafford3 (2) - - Jcarl (2) @@ -11067,11 +11156,11 @@ Jcubic (2) + + Jeraldinesewell (2) - - JesseBHXEmrh (2) @@ -11081,11 +11170,11 @@ Jgpestana (2) + + Lingard, J. Graeme (2) - - Jnicolas (2) @@ -11095,11 +11184,11 @@ Jonathanacohen (2) + + JonesRichter8 (2) - - Jowenshaw (2) @@ -11109,11 +11198,11 @@ Jstaniek (2) + + JudasPeoples9 (2) - - JudasPritchard (2) @@ -11123,11 +11212,11 @@ Jumoun (2) + + JustinaEldridge (2) - - K.euser (2) @@ -11137,11 +11226,11 @@ Karakartala (2) + + KarkGunn4 (2) - - Karolus (2) @@ -11151,11 +11240,11 @@ Kazuyuki Yoshimura (2) + + Keepiledar (2) - - KeithC (2) @@ -11165,11 +11254,11 @@ KittyBauer5 (2) + + KlementynaMckinney (2) - - Kmr (2) @@ -11179,11 +11268,11 @@ Kolorguild (2) + + Krauss (2) - - keshav, krishna (2) @@ -11193,11 +11282,11 @@ KrystalMinchin (2) + + KsaweryDempsey (2) - - Kwilliams (2) @@ -11207,11 +11296,11 @@ LariaJohn3 (2) + + LeanaParks2 (2) - - LemuelHo1 (2) @@ -11221,11 +11310,11 @@ Lhcezar (2) + + LidaMasters1 (2) - - Lino (2) @@ -11235,11 +11324,11 @@ Lliehu (2) + + Scheidt, Heiko (2) - - LovisaKessler (2) @@ -11249,11 +11338,11 @@ LubomyrWalden (2) + + LucretiLlb (2) - - Lukasjelinek (2) @@ -11263,11 +11352,11 @@ Casalin, Matteo (2) + + Mărăşoiu, Mariana (2) - - MZNBelendndq (2) @@ -11277,11 +11366,11 @@ MabelleStanley (2) + + MadisonDarnell (2) - - MagdaleneOneal (2) @@ -11291,11 +11380,11 @@ MagnoliaParsons (2) + + Mangat veer sagar (2) - - Manu.unni (2) @@ -11305,11 +11394,11 @@ MarchCourtney (2) + + Marcinz (2) - - Marco74 (2) @@ -11319,11 +11408,11 @@ MarillaMarsh7 (2) + + Marius (2) - - Marric (2) @@ -11333,11 +11422,11 @@ MarthaBright4 (2) + + MartinPC (2) - - MateuszDominguez (2) @@ -11347,11 +11436,11 @@ Mazuritz (2) + + Mbemidio (2) - - MercedesDelatorre (2) @@ -11361,11 +11450,11 @@ Kepplinger, Martin (2) + + MerleGlass6 (2) - - Mesutkullar (2) @@ -11375,11 +11464,11 @@ Michaelx (2) + + Michel Gagnon (2) - - Michiel (2) @@ -11389,11 +11478,11 @@ MinaHuggins7 (2) + + Mind4z (2) - - MinervaLuna8 (2) @@ -11403,11 +11492,11 @@ Mjkopp (2) + + Mklever (2) - - Lechner, Marco (2) @@ -11417,11 +11506,11 @@ Mnalima (2) + + Mnsoto (2) - - Mordocai (2) @@ -11431,11 +11520,11 @@ Rugiero, Mario (2) + + Mst0 (2) - - Mttza1 (2) @@ -11445,11 +11534,11 @@ Mustafa22 (2) + + Nathansen, Martin (2) - - Mzalewski (2) @@ -11459,11 +11548,11 @@ Narcisgarcia (2) + + NealEspinoza6 (2) - - Nestor (2) @@ -11473,11 +11562,11 @@ NettieParra1 (2) + + NewtonZuniga9 (2) - - Nishino, Daisuke (2) @@ -11487,11 +11576,11 @@ Nickk (2) + + Christener, Nicolas (2) - - Nicolas PAOUR (2) @@ -11501,11 +11590,11 @@ Noirin (2) + + NoricumArthur (2) - - NorrisAndersen (2) @@ -11515,11 +11604,11 @@ Nsharifi (2) + + Nuclearbob (2) - - Naeil, Zoueidi (2) @@ -11529,11 +11618,11 @@ Oashnic (2) + + Odalcet (2) - - Oiaohm (2) @@ -11543,11 +11632,11 @@ OlieBooth3 (2) + + OlivierC (2) - - OnopriyBrandon (2) @@ -11557,11 +11646,11 @@ OscarMeredith (2) + + Paolettopn (2) - - Paolobenve (2) @@ -11571,11 +11660,11 @@ Paultrojahn (2) + + Percherie (2) - - PercherskySanford (2) @@ -11585,11 +11674,11 @@ Pgraber (2) + + Phil.davis (2) - - Szelat, Phillip (2) @@ -11599,11 +11688,11 @@ Piotrdrag (2) + + Pitonyak (2) - - Pkst (2) @@ -11613,11 +11702,11 @@ Posterboy (2) + + PragueBergman (2) - - Pulsifer (2) @@ -11627,11 +11716,11 @@ Rahul050 (2) + + Rbecke (2) - - ReeseShepherd (2) @@ -11641,11 +11730,11 @@ RenniePrescott (2) + + RetaStern5 (2) - - RhodaMackey3 (2) @@ -11655,11 +11744,11 @@ Ritlay (2) + + Rmarquardt (2) - - Roadrunner (2) @@ -11669,11 +11758,11 @@ RosaliaFair4 (2) + + RosannaPaul7 (2) - - RosariaLampungm (2) @@ -11683,11 +11772,11 @@ RoyShelton7 (2) + + Ryan (2) - - Sagar.libo (2) @@ -11697,11 +11786,11 @@ Sam888 (2) + + SamBenavides5 (2) - - Sankarshan (2) @@ -11711,11 +11800,11 @@ Bosio, Santiago (2) + + Seanyoung (2) - - SebastianNorth (2) @@ -11725,11 +11814,11 @@ Sergwish (2) + + Sfeuser (2) - - Sgrotz (2) @@ -11739,11 +11828,11 @@ Shankar (2) + + Shaun.schutte (2) - - SidneyArredondo (2) @@ -11753,11 +11842,11 @@ Simplecontrast (2) + + SlavicNapier8 (2) - - Kasztenny, Adam (2) @@ -11767,11 +11856,11 @@ Sotrud nik (2) + + Spledger (2) - - Spyros (2) @@ -11781,11 +11870,11 @@ Ssorgatem (2) + + StaciBorthwick (2) - - Stappers (2) @@ -11795,11 +11884,11 @@ Stephan66 (2) + + Stuarta0 (2) - - Sturm (2) @@ -11809,11 +11898,11 @@ Superurbi (2) + + SusanSwain3 (2) - - Sven.fischer.de (2) @@ -11823,11 +11912,11 @@ Synanceia (Pierre) (2) + + Tauon (2) - - Techal (2) @@ -11837,11 +11926,11 @@ TeresaMacias3 (2) + + Teresavillegas1 (2) - - TheaGallardo8 (2) @@ -11851,11 +11940,11 @@ TheophilusHess (2) + + Thomase (2) - - Thomeck (2) @@ -11865,11 +11954,11 @@ Tim1075 (2) + + Timeshifter (2) - - Timj (2) @@ -11879,11 +11968,11 @@ TomaMora8 (2) + + Tomkeb (2) - - Tomrobert87 (2) @@ -11893,11 +11982,11 @@ Tsimonq2 (2) + + TuMadre (2) - - Isnard, Timothée (2) @@ -11907,11 +11996,11 @@ Unknown 32 (2) + + Usik64 (2) - - ValessioBrito (2) @@ -11921,11 +12010,11 @@ Dhall, Varun (2) + + VasylynaKendall (2) - - VerneDodd5 (2) @@ -11935,11 +12024,11 @@ VeronicaGrimes (2) + + Viper550 (2) - - VirginArredondo (2) @@ -11949,11 +12038,11 @@ VladimirPrince (2) + + VladislavA (2) - - Volker (2) @@ -11963,11 +12052,11 @@ Vossman (2) + + WaclawaSavage (2) - - WalentynaPatrick (2) @@ -11977,11 +12066,11 @@ WarrenChristian (2) + + WashingtonOakley (2) - - Watermelons (2) @@ -11991,11 +12080,11 @@ WikiImporter (2) + + WilhelminaEaton (2) - - WincentyMorrison (2) @@ -12005,11 +12094,11 @@ Wkn (2) + + Wulei (2) - - Xoristzatziki (2) @@ -12019,11 +12108,11 @@ ZiriaKo (2) + + ZoraWinkler1 (2) - - 流星依旧 (2) @@ -12033,11 +12122,11 @@ A H (1) + + AaronPeterson (1) - - Abdulaziz A Alayed (1) @@ -12047,11 +12136,11 @@ Acagastya (1) + + Kepenek, Ahmet Can (1) - - AdalberDesailll (1) @@ -12061,11 +12150,11 @@ Aevora (1) + + Agradecido (1) - - AhmadHaris (1) @@ -12075,11 +12164,11 @@ Ajaxfiore (1) + + Alagris (1) - - Albrechtloh (1) @@ -12089,11 +12178,11 @@ Aleksio Kverka (1) + + Henrie, Alex (1) - - Alex38-68 (1) @@ -12103,11 +12192,11 @@ AlexF (1) + + AlexP111223 (1) - - AlexPS (1) @@ -12117,11 +12206,11 @@ Alexandri (1) + + Chemichev, Alexey (1) - - Alexis 0071 (1) @@ -12131,11 +12220,11 @@ Alexnivan (1) + + Alexsandro Matias (1) - - Ali (1) @@ -12145,11 +12234,11 @@ Alvaropg (1) + + Alverne (1) - - Amacater (1) @@ -12159,11 +12248,11 @@ Anderius (1) + + AndreasEk (1) - - AndreasK (1) @@ -12173,11 +12262,11 @@ Andrey.turkin (1) + + Andriazdk2177 (1) - - AniVar (1) @@ -12187,11 +12276,11 @@ AntoineVe (1) + + Antonello Lobianco (1) - - AntoniePonder (1) @@ -12201,11 +12290,11 @@ Apfelsaft (1) + + Priyadarshi, Apurva (1) - - Arekm (1) @@ -12215,11 +12304,11 @@ ArielleWx (1) + + Arkonide (1) - - Armandos (1) @@ -12229,11 +12318,11 @@ Arnoldu (1) + + Teigseth, Arno (1) - - Artintal (1) @@ -12243,11 +12332,11 @@ Asiersar (1) + + Asselbornmauro (1) - - Astalaseven (1) @@ -12257,11 +12346,11 @@ AundreaPqf (1) + + Averell7 (1) - - Ayoooub (1) @@ -12271,11 +12360,11 @@ Bailiwick (1) + + Bailly02 (1) - - Bami (1) @@ -12285,11 +12374,11 @@ Le Garrec, Vincent (1) + + BarryLovegrove (1) - - Vincent, Babu (1) @@ -12299,11 +12388,11 @@ BernardHannafor (1) + + Bestdating (1) - - Beyoken (1) @@ -12313,11 +12402,11 @@ Bezzy (1) + + Bgloberman (1) - - Bgranados (1) @@ -12327,11 +12416,11 @@ Biofool (1) + + Bjossir (1) - - Bkg2018 (1) @@ -12341,11 +12430,11 @@ BlancheBelstead (1) + + BlancheClopton (1) - - Blandyna (1) @@ -12355,11 +12444,11 @@ Bolo (1) + + Borowcm (1) - - Bortis (1) @@ -12369,11 +12458,11 @@ BrentHawthorne (1) + + BridgettC (1) - - Brinzing, Oliver (1) @@ -12383,11 +12472,11 @@ BryceBrassell (1) + + BryceMoorhouse (1) - - Budo (1) @@ -12397,11 +12486,11 @@ Bureken (1) + + Burger.ga (1) - - Bzsolt (1) @@ -12411,11 +12500,11 @@ CalebSommer (1) + + CalebWgypcu (1) - - Paul, Cameron (1) @@ -12425,11 +12514,11 @@ CarloASilva (1) + + Carlos (1) - - Carlos.gilaranz (1) @@ -12439,11 +12528,11 @@ Cathy (1) + + CedricQ73ktehvp (1) - - Cesera (1) @@ -12453,11 +12542,11 @@ CharlesJenkins (1) + + Chatjoe (1) - - Chmilblick (1) @@ -12467,11 +12556,11 @@ ChrPr (1) + + Christoph.herzog (1) - - Chrlutz (1) @@ -12481,11 +12570,11 @@ CiaraLockie (1) + + Ciriaco (1) - - Classieur (1) @@ -12495,11 +12584,11 @@ Cleitongalvao (1) + + Clem (1) - - CletaValentino (1) @@ -12509,11 +12598,11 @@ Company (1) + + Conrado (1) - - Cora17 (1) @@ -12523,11 +12612,11 @@ Cosmopolitan (1) + + Cpatrick08 (1) - - Cpinedar (1) @@ -12537,11 +12626,11 @@ Craigsbookclub (1) + + Csanyipal (1) - - Csongorhalmai (1) @@ -12551,11 +12640,11 @@ Ctfranz (1) + + DaisieDavison (1) - - Danichocolate (1) @@ -12565,11 +12654,11 @@ Dar18proore (1) + + DarylAlcantar (1) - - DarylBoot (1) @@ -12579,11 +12668,11 @@ Davidmichel (1) + + DawnOgles (1) - - Dbojan (1) @@ -12593,11 +12682,11 @@ DeShark (1) + + DeannaQuaife (1) - - Ray, Debarshi (1) @@ -12607,11 +12696,11 @@ Decs75 (1) + + Dennisroczek's Test Account (1) - - Deragon (1) @@ -12621,11 +12710,11 @@ Kis-Ádám, László (1) + + Herde, Daniel (1) - - Dhiren (1) @@ -12635,11 +12724,11 @@ Kettner, Valentin (1) + + Do Nhu Vy (1) - - DocuFree (1) @@ -12649,11 +12738,11 @@ Dominuk (1) + + Donadel (1) - - DoreenDuell (1) @@ -12663,11 +12752,11 @@ Drizamanuber (1) + + Drlandi (1) - - Drtimwright (1) @@ -12677,11 +12766,11 @@ Dxider (1) + + EarnestLamaro (1) - - Echada (1) @@ -12691,11 +12780,11 @@ Edsonlead (1) + + Edz (1) - - Efcis (1) @@ -12705,11 +12794,11 @@ Brill, Christoph (1) + + Ehenryb (1) - - Ekuiitr (1) @@ -12719,11 +12808,11 @@ Elliot1415 (1) + + ElmaWalcott (1) - - Elshize (1) @@ -12733,11 +12822,11 @@ Emyr (1) + + Enesates (1) - - Ennael (1) @@ -12747,11 +12836,11 @@ Erdemdemirkapi (1) + + Eric (1) - - ErickRijoJr (1) @@ -12761,11 +12850,11 @@ Roux, Elie (1) + + Esben aaberg (1) - - EstelaAWTxiu (1) @@ -12775,11 +12864,11 @@ Evfool (1) + + EyalRozenberg (1) - - FMA (1) @@ -12789,11 +12878,11 @@ Falatooni (1) + + Falcao (1) - - Farhaf (1) @@ -12803,11 +12892,11 @@ Farlfr (1) + + FarzanehSarafraz (1) - - Faseeh1218 (1) @@ -12817,11 +12906,11 @@ FerminAndrade (1) + + Feyza (1) - - Fgland (1) @@ -12831,11 +12920,11 @@ Foadv (1) + + Foobar (1) - - Fourdollars (1) @@ -12845,11 +12934,11 @@ Fred.th (1) + + Funnym0nk3y (1) - - Manas Joshi (1) @@ -12859,11 +12948,11 @@ Gabrielezorzi (1) + + Bilotta, Giuseppe (1) - - Gcoelho (1) @@ -12873,11 +12962,11 @@ Gekacheka (1) + + Geoff newson (1) - - Gerard (1) @@ -12887,11 +12976,11 @@ van Valkenhoef, Gert (1) + + Houston, Gary (1) - - Giancav (1) @@ -12901,11 +12990,11 @@ Gmeijssen (1) + + Goldensgui (1) - - Gpmanrpi (1) @@ -12915,11 +13004,11 @@ GrantCelley (1) + + Grass-tree (1) - - Hernandez, Gregg (1) @@ -12929,11 +13018,11 @@ Gstein (1) + + Guhde (1) - - Guillaume (1) @@ -12943,11 +13032,11 @@ Gwidion (1) + + Gxyd (1) - - H Wettlaufer (1) @@ -12957,11 +13046,11 @@ HKagerer (1) + + HLGZorawdi (1) - - Haggai (1) @@ -12971,11 +13060,11 @@ Hamati (1) + + Hamkins (1) - - Hasinasi (1) @@ -12985,11 +13074,11 @@ Rui Wang (1) + + Hermeli2856 (1) - - HessnovTHR44 (1) @@ -12999,11 +13088,11 @@ Heyheyitshay (1) + + Hfischer (1) - - Hillrich (1) @@ -13013,11 +13102,11 @@ Hitomi t (1) + + Hkdocholid (1) - - Hlavaty, Tomas (1) @@ -13027,11 +13116,11 @@ Honza.havlicek (1) + + Hopman (1) - - HoracioRydge (1) @@ -13041,11 +13130,11 @@ Hosiryuhosi (1) + + Hriostat (1) - - HumbertGno (1) @@ -13055,11 +13144,11 @@ Ialbors (1) + + Ian (1) - - Iandol (1) @@ -13069,11 +13158,11 @@ IbraM (1) + + IceBlur (1) - - Ida (1) @@ -13083,11 +13172,11 @@ Igorizyumin (1) + + Imypsychconsult (1) - - Şendur, İrem (1) @@ -13097,995 +13186,1003 @@ IrrevdJohn (1) + + IrvinFunkw (1) - - IvanP (1) + Izabela (1) + + JDługosz (1) + + JK2308 (1) Jab (1) - - Jailletc36 (1) JaimeS (1) + + Jamil (1) JanEnEm (1) - - Janani (1) Jani (1) + + Janvlug (1) Jayppc (1) - - Jazzon (1) Jcdericco (1) + + Chaffraix, Julien (1) Jcrben (1) - - Jean.fr (1) JeanAmessdvaei (1) + + JeanMcPhillamy (1) JefferyMackenna (1) - - Jentron256 (1) Jeongkyu (1) + + Bicha, Jeremy (1) JerryShi (1) - - JessicaParker (1) Gao, Qiwen (1) + + JestineNww (1) Lazar, Timotej (1) - - Jflory7 (1) Bruhn, Jan-Henrik (1) + + Jinocvla (1) JiroMatsuzawa (1) - - Jj151515 (1) Jmarchn (1) + + Joachim (1) Joanluc (1) - - Joaofernando (1) JoelH (1) + + Johnplay2 (1) JomarSilva (1) - - Jonatanpc8 (1) JonelleFritz (1) + + Wu, Haidong (1) JordanS (1) - - Jorge Rodríguez Fonseca (1) Jorgemendes (1) + + JoseGatica (1) Joselaurian (1) - - Joshun (1) José Eduardo (1) + + Jp.santi (1) Jpl (1) - - Clarke, James (1) Jsbueno (1) + + JudeMcCafferty (1) Juergen (1) - - JuliannSnider (1) Picca, Juan (1) + + Jwcampbell (1) Dubrulle, Kevin (1) - - Kader (1) Kapoorsahab (1) + + KatjaG (1) Bhat, Kishor (1) - - Keith Long (1) Kenneth.venken (1) + + Kenton3255 (1) Kiyotaka Nishibori (1) - - Kasper, Kacper (1) Kkremitzki (1) + + Knobo (1) Koeleman (1) - - Kosmous (1) KourtneNester (1) + + Kr1shna (1) Krotow (1) - - Kumar, Thangavel (1) Kying (1) + + LKPSharylptwsdo (1) LMKemm (1) - - LOFF (1) LaPingvino (1) + + Laskov (1) LatoshaZnu (1) - - LaverneNavarret (1) LavinaVandermar (1) + + Learner (1) Libo02 (1) - - Librestez54 (1) Likoski (1) + + LillieNlowccx (1) Lineinthesand (1) - - Literacyglenys (1) Litishia (1) + + Liturgist (1) Llalllal1 (1) - - Lobillo (1) Lopp Rs (1) + + Lorne (1) Lplatypus (1) - - Luca (1) Lucas Filho (1) + + LudieNutter (1) Luiz Cláudio (1) - - Luiz Rezende (1) Luke (1) + + M.sacharewicz (1) M1ndfr3ak (1) - - MJW (1) Maahicool (1) + + Mabel7997eelu (1) Maemst (1) - - Magicienap (1) Magmag (1) + + Mahdiekrani (1) Mahmudul (1) - - Maliuta (1) Manveru1986 (1) + + MarcelProut (1) MarcoZ (1) - - Biscaro, Marco (1) Marcosalex (1) + + Marcosps (1) MargoBergman (1) - - MarianaConnell (1) Mariano Gaudix (1) + + MarkWielaaard (1) Markcoomes (1) - - Markzog21 (1) MarthaWaterman (1) + + Marwan (1) Maryanndefo91 (1) - - Masaki tamakoshi (1) Massao (1) + + Mastizada (1) Matsuura (1) - - MattTheGeek (1) Campanelli, Matteo (1) + + Matěj (1) Mau (1) - - Maxjf1 (1) Bechler, Moritz (1) + + Mblume3 (1) Doležel, Marek (1) - - Megan44Dgxg (1) Melikeyurtoglu (1) + + Menturi (1) MeskoBalazs (1) - - Mete0r (1) Mhaehnel (1) + + Mhcrnl (1) Mhenriday (1) - - Mibm123 (1) Michaelwood (1) + + Michka B (1) Midomidi2013 (1) - - MiguelKastner (1) Miguelverdu (1) + + Mikolg (1) MilagroWilkerso (1) - - Milanbv (1) Miles (1) + + Minarja4 (1) Mirsad (1) - - Miurahr (1) Mixer (1) + + Mixstah (1) Mlager (1) - - Mmeof (1) Moberg (1) + + Mohammedzalta (1) Momo50 (1) - - Monikayadav (1) Soini, Mox (1) + + Mrund (1) Muhammadsufyanzainalabidin (1) - - Mw (1) Myan (1) + + MyraBlacklow (1) N3rd4i (1) - - NEOhidra (1) NNe8Lx2gc (1) + + Nanotron (1) Nattu (1) - - Ncaio (1) Nedrichards (1) + + NellieSMWX (1) Neteler (1) - - Nevanos (1) Ngoswami (1) + + Nickko (1) Nilss (1) - - Nithin.padavu (1) Ngo, Minh (1) + + Nnino2 (1) Norty (1) - - Notafish (1) NotesTracker (1) + + Nouiurm (1) Norbert X (1) - - Nurohman (1) Oclei (1) + + Oig (1) Oiouitt (1) - - Okusi (1) Olea (1) + + Omansmith (1) Omerta (1) - - Onurkucuk67 (1) Oosterkamp (1) + + Opestawon (1) Sezen, Hunter (1) - - Orrd (1) Osoitz (1) + + Oui (1) Anderson, Owen (1) - - Esen, Özcan (1) Ozpoz (1) + + Öztürk, Emre (1) PBsoft (1) - - Pal, Pawan (1) Padenton (1) + + PamalaDorsch (1) Pankaj (1) - - Papesky (1) Passerpunt (1) + + Pastim (1) Paulmenzel (1) - - Paulolima (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) - - Phomes (1) Paraiso, Joan (1) + + Pi (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) + + PopularOutcast (1) Por (1) - - Carter, Travis (1) Prosper (1) + + Psauthor (1) Psmits (1) - - Psychicread531 (1) Vidhey Pv (1) + + Illarionov, Arkadiy (1) Qiguo (1) - - Qtwallaert (1) Quick8130 (1) + + Quickbooktech (1) Qwe (1) - - Rahuldeshmukh101 (1) Rainy (1) + + Ramonturner (1) Ratias (1) - - Rcampbelllaos (1) RebeccaToscano (1) + + Rettichschnidi (1) RexRTEJnlzus (1) - - Rholler (1) Richardprins (1) + + RickieHpejt (1) Riessmi (1) - - Rif (1) + Rifkiaz (1) + + + + Ringlerloje (1) @@ -14094,11 +14191,11 @@ Ritzema, Brent (1) - - Rizobix (1) + + Kondratenko, Rostislav (1) @@ -14108,11 +14205,11 @@ Robineh (1) - - Robustchao (1) + + Rockers (1) @@ -14122,11 +14219,11 @@ Deshmukh, Rohit (1) - - Rombert (1) + + Ron1 (1) @@ -14136,11 +14233,11 @@ Roscoe5731 (1) - - Rosemarie (1) + + Rpott (1) @@ -14150,11 +14247,11 @@ RuleAndLine (1) - - Rvr (1) + + Ryho (1) @@ -14164,11 +14261,11 @@ SallyMorales (1) - - Samanicute (1) + + Sambhav2612 (1) @@ -14178,11 +14275,11 @@ Sandeeps (1) - - Sanipache (1) + + Saracans (1) @@ -14192,11 +14289,11 @@ Sautier, Louis (1) - - Schrillesbunteshamburg (1) + + Scito (1) @@ -14206,11 +14303,11 @@ Sctenebro (1) - - Ak, Sedat (1) + + Senopen (1) @@ -14220,11 +14317,11 @@ Shay030 (1) - - ShaynaMan (1) + + SherylMillingto (1) @@ -14234,11 +14331,11 @@ Shin en (1) - - Shortblack (1) + + Siegi (1) @@ -14248,11 +14345,11 @@ Silvia (1) - - Simonbr (1) + + SimsimiUy (1) @@ -14262,11 +14359,11 @@ Smalalur (1) - - Socialmitchell (1) + + Son Sonson (1) @@ -14276,11 +14373,11 @@ Sovichet (1) - - SpeedyGonsales (1) + + Sphericalhorse (1) @@ -14290,11 +14387,11 @@ Srijanani (1) - - Stewart75H (1) + + Stonehubmn (1) @@ -14304,11 +14401,11 @@ Supportex (1) - - SusieVeasley (1) + + Svalo (1) @@ -14318,11 +14415,11 @@ Svend-ev (1) - - Sviola (1) + + Svtlichnijj (1) @@ -14332,11 +14429,11 @@ TAQSamueld (1) - - Talueses (1) + + Tanguy k (1) @@ -14346,11 +14443,11 @@ TaylorSlemp (1) - - Techsquirrel (1) + + TeganCreswick (1) @@ -14360,11 +14457,11 @@ Terber (1) - - Testsflirt (1) + + The Magpie (1) @@ -14374,11 +14471,11 @@ Thephilosoft (1) - - Thom (1) + + Thor574 (1) @@ -14388,11 +14485,11 @@ Tifroumi (1) - - Tigerbeard (1) + + Tilt (1) @@ -14402,11 +14499,11 @@ Tomasdd (1) - - Viehmann, Thomas (1) + + Tpokorra (1) @@ -14416,11 +14513,11 @@ TrevorPfe (1) - - Trondtr (1) + + Ttv20 (1) @@ -14430,11 +14527,11 @@ Tuping (1) - - Thibault, Vallois (1) + + Jain, Umang (1) @@ -14444,11 +14541,11 @@ Shahid, Umair (1) - - Vincent, Brennan (1) + + Unho (1) @@ -14458,11 +14555,11 @@ UrsulaHorrell (1) - - Ushabtay (1) + + VIPSylar (1) @@ -14472,11 +14569,11 @@ Vandenoever (1) - - Veeven (1) + + Vera Cavalcante (1) @@ -14486,11 +14583,11 @@ Vincentvikram (1) - - Vinkas (1) + + Virus009 (1) @@ -14500,11 +14597,11 @@ Wadrian (1) - - WandaSingletary (1) + + Wastl (1) @@ -14514,11 +14611,11 @@ Webistrator (1) - - Wes (1) + + Westantenna (1) @@ -14528,11 +14625,11 @@ Wilhelm (1) - - William Avery (1) + + Williewortel (1) @@ -14542,11 +14639,11 @@ Woulouf (1) - - XSXKristin (1) + + Baudin, Lucas (1) @@ -14556,11 +14653,11 @@ Suhail Alkowaileet (1) - - XtinaS (1) + + Xtrusia (1) @@ -14570,11 +14667,11 @@ YaroslavRutledge (1) - - Yazu (1) + + Yeliztaneroglu (1) @@ -14584,11 +14681,11 @@ Yoshiharu Kawai (1) - - Yowbooks (1) + + YvanM (1) @@ -14598,11 +14695,11 @@ Bölöny, Zsolt (1) - - ZBMCallumbwire (1) + + Zangune (1) @@ -14612,6 +14709,9 @@ 鄒延 (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-6.1.4/RepositoryExternal.mk libreoffice-l10n-6.1.5~rc2/RepositoryExternal.mk --- libreoffice-l10n-6.1.4/RepositoryExternal.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/RepositoryExternal.mk 2019-01-30 17:56:45.000000000 +0000 @@ -1534,6 +1534,7 @@ $$(INCLUDE) \ ) $(call gb_LinkTarget_add_libs,$(1),$(HARFBUZZ_LIBS)) +$(call gb_LinkTarget_use_external,$(1),icuuc) $(call gb_LinkTarget_use_external_project,$(1),harfbuzz) endef diff -Nru libreoffice-l10n-6.1.4/sc/inc/dpglobal.hxx libreoffice-l10n-6.1.5~rc2/sc/inc/dpglobal.hxx --- libreoffice-l10n-6.1.4/sc/inc/dpglobal.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/inc/dpglobal.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -39,7 +39,7 @@ Auto = 0x1000 }; namespace o3tl { - template<> struct typed_flags : is_typed_flags {}; + template<> struct typed_flags : is_typed_flags {}; } struct ScDPValue Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sc/qa/unit/data/ods/tdf121612.ods and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sc/qa/unit/data/ods/tdf121612.ods differ diff -Nru libreoffice-l10n-6.1.4/sc/qa/unit/subsequent_export-test.cxx libreoffice-l10n-6.1.5~rc2/sc/qa/unit/subsequent_export-test.cxx --- libreoffice-l10n-6.1.4/sc/qa/unit/subsequent_export-test.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/qa/unit/subsequent_export-test.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -43,6 +43,7 @@ #include #include #include +#include #include #include @@ -209,6 +210,7 @@ void testKeepSettingsOfBlankRows(); void testTdf118990(); + void testTdf121612(); CPPUNIT_TEST_SUITE(ScExportTest); CPPUNIT_TEST(test); @@ -319,6 +321,7 @@ CPPUNIT_TEST(testKeepSettingsOfBlankRows); CPPUNIT_TEST(testTdf118990); + CPPUNIT_TEST(testTdf121612); CPPUNIT_TEST_SUITE_END(); @@ -4068,6 +4071,23 @@ xDocSh->DoClose(); } +void ScExportTest::testTdf121612() +{ + ScDocShellRef xDocSh = loadDoc("tdf121612.", FORMAT_ODS); + CPPUNIT_ASSERT(xDocSh.is()); + xDocSh = saveAndReload(xDocSh.get(), FORMAT_XLSX); + + ScDocument& rDoc = xDocSh->GetDocument(); + + // There should be a pivot table + CPPUNIT_ASSERT(rDoc.HasPivotTable()); + + // DP collection is not lost after export and has one entry + ScDPCollection* pDPColl = rDoc.GetDPCollection(); + CPPUNIT_ASSERT(pDPColl); + CPPUNIT_ASSERT_EQUAL(size_t(1), pDPColl->GetCount()); +} + CPPUNIT_TEST_SUITE_REGISTRATION(ScExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-6.1.4/sc/source/core/data/dpgroup.cxx libreoffice-l10n-6.1.5~rc2/sc/source/core/data/dpgroup.cxx --- libreoffice-l10n-6.1.4/sc/source/core/data/dpgroup.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/core/data/dpgroup.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1030,7 +1030,11 @@ { if ( getIsDataLayoutDimension(nDim) ) return 0; - return ScDPItemData::Compare( *GetMemberById(nDim, nDataId1),*GetMemberById(nDim, nDataId2) ); + const ScDPItemData* rItem1 = GetMemberById(nDim, nDataId1); + const ScDPItemData* rItem2 = GetMemberById(nDim, nDataId2); + if (rItem1 == nullptr || rItem2 == nullptr) + return 0; + return ScDPItemData::Compare( *rItem1,*rItem2); } #if DUMP_PIVOT_TABLE diff -Nru libreoffice-l10n-6.1.4/sc/source/filter/excel/xepivotxml.cxx libreoffice-l10n-6.1.5~rc2/sc/source/filter/excel/xepivotxml.cxx --- libreoffice-l10n-6.1.4/sc/source/filter/excel/xepivotxml.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/filter/excel/xepivotxml.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -419,15 +419,22 @@ void XclExpXmlPivotTableManager::Initialize() { - const ScDocument& rDoc = GetDoc(); + ScDocument& rDoc = GetDoc(); if (!rDoc.HasPivotTable()) // No pivot table to export. return; - const ScDPCollection* pDPColl = rDoc.GetDPCollection(); + ScDPCollection* pDPColl = rDoc.GetDPCollection(); if (!pDPColl) return; + // Update caches from DPObject + for (size_t i = 0; i < pDPColl->GetCount(); ++i) + { + ScDPObject& rDPObj = (*pDPColl)[i]; + rDPObj.SyncAllDimensionMembers(); + } + // Go through the caches first. std::vector aCaches; diff -Nru libreoffice-l10n-6.1.4/sc/source/filter/xml/XMLExportDataPilot.cxx libreoffice-l10n-6.1.5~rc2/sc/source/filter/xml/XMLExportDataPilot.cxx --- libreoffice-l10n-6.1.4/sc/source/filter/xml/XMLExportDataPilot.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/filter/xml/XMLExportDataPilot.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -492,6 +492,7 @@ ::sax::Converter::convertBool(sBuffer, pDim->GetShowEmpty()); rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_SHOW_EMPTY, sBuffer.makeStringAndClear()); } + if (rExport.getDefaultVersion() > SvtSaveOptions::ODFVER_012) { OUStringBuffer sBuffer; ::sax::Converter::convertBool(sBuffer, pDim->GetRepeatItemLabels()); diff -Nru libreoffice-l10n-6.1.4/sc/source/filter/xml/xmlexprt.cxx libreoffice-l10n-6.1.5~rc2/sc/source/filter/xml/xmlexprt.cxx --- libreoffice-l10n-6.1.4/sc/source/filter/xml/xmlexprt.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/filter/xml/xmlexprt.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -3245,7 +3245,7 @@ { GetNumberFormatAttributesExportHelper()->SetNumberFormatAttributes( aCell.nNumberFormat, pDoc->GetValue(aCell.maCellAddress)); - if( getDefaultVersion() >= SvtSaveOptions::ODFVER_012 ) + if( getDefaultVersion() > SvtSaveOptions::ODFVER_012 ) { GetNumberFormatAttributesExportHelper()->SetNumberFormatAttributes( aCell.nNumberFormat, pDoc->GetValue(aCell.maCellAddress), false, XML_NAMESPACE_CALC_EXT, false ); diff -Nru libreoffice-l10n-6.1.4/sc/source/ui/condformat/condformatdlg.cxx libreoffice-l10n-6.1.5~rc2/sc/source/ui/condformat/condformatdlg.cxx --- libreoffice-l10n-6.1.4/sc/source/ui/condformat/condformatdlg.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/ui/condformat/condformatdlg.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -655,7 +655,13 @@ OUString aRefStr(rRef.Format(nFlags, mpViewData->GetDocument(), ScAddress::Details(mpViewData->GetDocument()->GetAddressConvention(), 0, 0))); if (pEdit != mpEdRange) + { + Selection sel = pEdit->GetSelection(); + sel.Justify(); // in case of RtL selection + sel.Max() = sel.Min() + aRefStr.getLength(); pEdit->ReplaceSelected(aRefStr); + pEdit->SetSelection(sel); // to replace it again with next drag event + } else pEdit->SetRefString( aRefStr ); updateTitle(); diff -Nru libreoffice-l10n-6.1.4/sc/source/ui/pagedlg/scuitphfedit.cxx libreoffice-l10n-6.1.5~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx --- libreoffice-l10n-6.1.4/sc/source/ui/pagedlg/scuitphfedit.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/ui/pagedlg/scuitphfedit.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -64,6 +64,10 @@ m_pWndRight->SetLocation(Right); get(m_pLbDefined,"comboLB_DEFINED"); + // tdf#114695 override natural size with a small value + // we expect this to get stretched to some larger but + // limited size based on surrounding widgets + m_pLbDefined->set_width_request(m_pLbDefined->approximate_digit_width() * 20); get(m_pBtnText,"buttonBTN_TEXT"); get(m_pBtnTable,"buttonBTN_TABLE"); diff -Nru libreoffice-l10n-6.1.4/sc/source/ui/unoobj/chart2uno.cxx libreoffice-l10n-6.1.5~rc2/sc/source/ui/unoobj/chart2uno.cxx --- libreoffice-l10n-6.1.4/sc/source/ui/unoobj/chart2uno.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/source/ui/unoobj/chart2uno.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -3161,7 +3161,7 @@ for (const Item& rItem : m_aDataArray) { ScRefCellValue aCell(*m_pDocument, rItem.mAddress); - if (!aCell.isEmpty()) + if (!aCell.isEmpty() && aCell.hasNumeric()) { return static_cast(getDisplayNumberFormat(m_pDocument, rItem.mAddress)); } diff -Nru libreoffice-l10n-6.1.4/sc/uiconfig/scalc/ui/textimportcsv.ui libreoffice-l10n-6.1.5~rc2/sc/uiconfig/scalc/ui/textimportcsv.ui --- libreoffice-l10n-6.1.4/sc/uiconfig/scalc/ui/textimportcsv.ui 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sc/uiconfig/scalc/ui/textimportcsv.ui 2019-01-30 17:56:45.000000000 +0000 @@ -1,5 +1,5 @@ - + @@ -311,7 +311,7 @@ 0 1 - 4 + 2 @@ -329,7 +329,7 @@ 2 1 - 4 + 2 diff -Nru libreoffice-l10n-6.1.4/scp2/source/ooo/ucrt.scp libreoffice-l10n-6.1.5~rc2/scp2/source/ooo/ucrt.scp --- libreoffice-l10n-6.1.4/scp2/source/ooo/ucrt.scp 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/scp2/source/ooo/ucrt.scp 2019-01-30 17:56:45.000000000 +0000 @@ -111,7 +111,7 @@ Source = "InstMSUBinary"; Target = "Windows81-KB2999226-x64msu"; Inbinarytable = 0; - Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And VersionNT64", "check_win8x64_ucrt"); + Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And (Not WINMAJORVER Or WINMAJORVER = \"#6\") And VersionNT64", "check_win8x64_ucrt"); Styles = "NO_FILE"; End @@ -147,7 +147,7 @@ Source = "InstMSUBinary"; Target = "Windows81-KB2999226-x86msu"; Inbinarytable = 0; - Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And Not VersionNT64", "check_win8x32_ucrt"); + Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And (Not WINMAJORVER Or WINMAJORVER = \"#6\") And Not VersionNT64", "check_win8x32_ucrt"); Styles = "NO_FILE"; End Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sd/qa/unit/data/pptx/smartart-accent-process.pptx and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sd/qa/unit/data/pptx/smartart-accent-process.pptx differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sd/qa/unit/data/pptx/smartart-continuous-block-process.pptx and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sd/qa/unit/data/pptx/smartart-continuous-block-process.pptx differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sd/qa/unit/data/tdf120527.jpg and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sd/qa/unit/data/tdf120527.jpg differ diff -Nru libreoffice-l10n-6.1.4/sd/qa/unit/import-tests-smartart.cxx libreoffice-l10n-6.1.5~rc2/sd/qa/unit/import-tests-smartart.cxx --- libreoffice-l10n-6.1.4/sd/qa/unit/import-tests-smartart.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sd/qa/unit/import-tests-smartart.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -14,6 +14,8 @@ #include #include +#include + using namespace ::com::sun::star; class SdImportTestSmartArt : public SdModelTestBase @@ -29,6 +31,8 @@ void testVertialBoxList(); void testVertialBracketList(); void testTableList(); + void testAccentProcess(); + void testContinuousBlockProcess(); CPPUNIT_TEST_SUITE(SdImportTestSmartArt); @@ -42,6 +46,8 @@ CPPUNIT_TEST(testVertialBoxList); CPPUNIT_TEST(testVertialBracketList); CPPUNIT_TEST(testTableList); + CPPUNIT_TEST(testAccentProcess); + CPPUNIT_TEST(testContinuousBlockProcess); CPPUNIT_TEST_SUITE_END(); }; @@ -275,6 +281,126 @@ xDocShRef->DoClose(); } + +void SdImportTestSmartArt::testAccentProcess() +{ + sd::DrawDocShellRef xDocShRef = loadURL( + m_directories.getURLFromSrc("/sd/qa/unit/data/pptx/smartart-accent-process.pptx"), PPTX); + uno::Reference xGroup(getShapeFromPage(0, 0, xDocShRef), uno::UNO_QUERY); + CPPUNIT_ASSERT(xGroup.is()); + // 3 children: first pair, connector, second pair. + CPPUNIT_ASSERT_EQUAL(static_cast(3), xGroup->getCount()); + uno::Reference xGroupShape(xGroup, uno::UNO_QUERY); + CPPUNIT_ASSERT(xGroupShape.is()); + + // The pair is a parent (shape + text) and a child, so 3 shapes in total. + // The order is importent, first is at the back, last is at the front. + uno::Reference xFirstPair(xGroup->getByIndex(0), uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstPair.is()); + CPPUNIT_ASSERT_EQUAL(static_cast(3), xFirstPair->getCount()); + + uno::Reference xFirstParentText(xFirstPair->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstParentText.is()); + CPPUNIT_ASSERT_EQUAL(OUString("a"), xFirstParentText->getString()); + uno::Reference xFirstParent(xFirstParentText, uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstParent.is()); + int nFirstParentTop = xFirstParent->getPosition().Y; + + uno::Reference xFirstChildText(xFirstPair->getByIndex(2), uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstChildText.is()); + CPPUNIT_ASSERT_EQUAL(OUString("b"), xFirstChildText->getString()); + uno::Reference xFirstChild(xFirstChildText, uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstChildText.is()); + + { + uno::Reference xParasAccess(xFirstChildText, uno::UNO_QUERY); + uno::Reference xParas = xParasAccess->createEnumeration(); + uno::Reference xPara(xParas->nextElement(), uno::UNO_QUERY); + // Without the accompanying fix in place, this test would have failed + // with 'Expected: 0; Actual : 1270', i.e. there was a large + // unexpected left margin. + CPPUNIT_ASSERT_EQUAL(static_cast(0), + xPara->getPropertyValue("ParaLeftMargin").get()); + + uno::Reference xRules(xPara->getPropertyValue("NumberingRules"), + uno::UNO_QUERY); + comphelper::SequenceAsHashMap aRule(xRules->getByIndex(1)); + CPPUNIT_ASSERT_EQUAL(OUString::fromUtf8(u8"•"), aRule["BulletChar"].get()); + } + + int nFirstChildTop = xFirstChild->getPosition().Y; + int nFirstChildRight = xFirstChild->getPosition().X + xFirstChild->getSize().Width; + + // First child is below the first parent. + // Without the accompanying fix in place, this test would have failed with + // 'Expected less than: 3881, Actual : 3881', i.e. xFirstChild was not + // below xFirstParent (a good position is 9081). + CPPUNIT_ASSERT_LESS(nFirstChildTop, nFirstParentTop); + + // Make sure that we have an arrow shape between the two pairs. + uno::Reference xArrow(xGroup->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT(xArrow.is()); + comphelper::SequenceAsHashMap aCustomShapeGeometry( + xArrow->getPropertyValue("CustomShapeGeometry")); + // Without the accompanying fix in place, this test would have failed, i.e. + // the custom shape lacked a type -> arrow was not visible. + CPPUNIT_ASSERT(aCustomShapeGeometry["Type"].has()); + OUString aType = aCustomShapeGeometry["Type"].get(); + CPPUNIT_ASSERT_EQUAL(OUString("ooxml-rightArrow"), aType); + + // Make sure that height of the arrow is less than its width. + uno::Reference xArrowShape(xArrow, uno::UNO_QUERY); + CPPUNIT_ASSERT(xArrowShape.is()); + awt::Size aArrowSize = xArrowShape->getSize(); + CPPUNIT_ASSERT_LESS(aArrowSize.Width, aArrowSize.Height); + + uno::Reference xSecondPair(xGroup->getByIndex(2), uno::UNO_QUERY); + CPPUNIT_ASSERT(xSecondPair.is()); + CPPUNIT_ASSERT_EQUAL(static_cast(3), xSecondPair->getCount()); + uno::Reference xSecondParentText(xSecondPair->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT(xFirstParentText.is()); + // Without the accompanying fix in place, this test would have failed with + // 'Expected: cc; Actual : c', i.e. non-first runs on data points were ignored. + CPPUNIT_ASSERT_EQUAL(OUString("cc"), xSecondParentText->getString()); + uno::Reference xSecondParent(xSecondParentText, uno::UNO_QUERY); + CPPUNIT_ASSERT(xSecondParent.is()); + int nSecondParentLeft = xSecondParent->getPosition().X; + // Without the accompanying fix in place, this test would have failed with + // 'Expected less than: 12700; Actual : 18540', i.e. the "b" and "c" + // shapes overlapped. + CPPUNIT_ASSERT_LESS(nSecondParentLeft, nFirstChildRight); + + xDocShRef->DoClose(); +} + +void SdImportTestSmartArt::testContinuousBlockProcess() +{ + sd::DrawDocShellRef xDocShRef = loadURL( + m_directories.getURLFromSrc("/sd/qa/unit/data/pptx/smartart-continuous-block-process.pptx"), + PPTX); + uno::Reference xGroup(getShapeFromPage(0, 0, xDocShRef), uno::UNO_QUERY); + CPPUNIT_ASSERT(xGroup.is()); + // 2 children: background, foreground. + CPPUNIT_ASSERT_EQUAL(static_cast(2), xGroup->getCount()); + + uno::Reference xLinear(xGroup->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT(xLinear.is()); + // 3 children: A, B and C. + CPPUNIT_ASSERT_EQUAL(static_cast(3), xLinear->getCount()); + + uno::Reference xA(xLinear->getByIndex(0), uno::UNO_QUERY); + CPPUNIT_ASSERT(xA.is()); + CPPUNIT_ASSERT_EQUAL(OUString("A"), xA->getString()); + uno::Reference xAShape(xA, uno::UNO_QUERY); + CPPUNIT_ASSERT(xAShape.is()); + // Without the accompanying fix in place, this test would have failed: the + // theoretically correct value is 5462 mm100 (16933 is the total width, and + // need to divide that to 1, 0.5, 1, 0.5 and 1 units), while the old value + // was 4703 and the new one is 5461. + CPPUNIT_ASSERT_GREATER(static_cast(5000), xAShape->getSize().Width); + + xDocShRef->DoClose(); +} CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTestSmartArt); diff -Nru libreoffice-l10n-6.1.4/sd/qa/unit/misc-tests.cxx libreoffice-l10n-6.1.5~rc2/sd/qa/unit/misc-tests.cxx --- libreoffice-l10n-6.1.4/sd/qa/unit/misc-tests.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sd/qa/unit/misc-tests.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -62,6 +62,7 @@ void testFillGradient(); void testTdf44774(); void testTdf38225(); + void testTdf120527(); CPPUNIT_TEST_SUITE(SdMiscTest); CPPUNIT_TEST(testTdf96206); @@ -71,6 +72,7 @@ CPPUNIT_TEST(testFillGradient); CPPUNIT_TEST(testTdf44774); CPPUNIT_TEST(testTdf38225); + CPPUNIT_TEST(testTdf120527); CPPUNIT_TEST_SUITE_END(); private: @@ -361,6 +363,48 @@ CPPUNIT_ASSERT(pStyle); } +void SdMiscTest::testTdf120527() +{ + sd::DrawDocShellRef xDocShRef + = new sd::DrawDocShell(SfxObjectCreateMode::EMBEDDED, false, DocumentType::Draw); + uno::Reference xLoadable(xDocShRef->GetModel(), uno::UNO_QUERY); + CPPUNIT_ASSERT(xLoadable.is()); + xLoadable->initNew(); + + // Load a bitmap into the bitmap table. + uno::Reference xFactory(xDocShRef->GetModel(), uno::UNO_QUERY); + CPPUNIT_ASSERT(xFactory.is()); + uno::Reference xBitmaps( + xFactory->createInstance("com.sun.star.drawing.BitmapTable"), uno::UNO_QUERY); + CPPUNIT_ASSERT(xBitmaps.is()); + OUString aGraphicURL = m_directories.getURLFromSrc("/sd/qa/unit/data/tdf120527.jpg"); + xBitmaps->insertByName("test", uno::makeAny(aGraphicURL)); + + // Create a graphic. + uno::Reference xShape( + xFactory->createInstance("com.sun.star.drawing.GraphicObjectShape"), uno::UNO_QUERY); + CPPUNIT_ASSERT(xShape.is()); + uno::Reference xShapeProperySet(xShape, uno::UNO_QUERY); + CPPUNIT_ASSERT(xShapeProperySet.is()); + xShapeProperySet->setPropertyValue("GraphicURL", xBitmaps->getByName("test")); + + // Insert it. + uno::Reference xDrawPagesSupplier(xDocShRef->GetModel(), + uno::UNO_QUERY); + CPPUNIT_ASSERT(xDrawPagesSupplier.is()); + uno::Reference xDrawPages = xDrawPagesSupplier->getDrawPages(); + CPPUNIT_ASSERT(xDrawPages.is()); + uno::Reference xDrawPage(xDrawPages->getByIndex(0), uno::UNO_QUERY); + CPPUNIT_ASSERT(xDrawPage.is()); + // This failed with a lang.IllegalArgumentException. + xDrawPage->add(xShape); + + // Verify that the graphic was actually consumed. + uno::Reference xGraphic; + xShapeProperySet->getPropertyValue("Graphic") >>= xGraphic; + CPPUNIT_ASSERT(xGraphic.is()); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdMiscTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-6.1.4/sd/uiconfig/simpress/menubar/menubar.xml libreoffice-l10n-6.1.5~rc2/sd/uiconfig/simpress/menubar/menubar.xml --- libreoffice-l10n-6.1.4/sd/uiconfig/simpress/menubar/menubar.xml 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sd/uiconfig/simpress/menubar/menubar.xml 2019-01-30 17:56:45.000000000 +0000 @@ -189,7 +189,6 @@ - diff -Nru libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx --- libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -298,7 +298,7 @@ o_rOutputBuf.resize(header_size); // initialize stream - Guchar *p; + unsigned char *p; GfxRGB rgb; std::unique_ptr imgStr( new ImageStream(str, @@ -401,7 +401,7 @@ oneColor = { byteToCol( 0xff ), byteToCol( 0xff ), byteToCol( 0xff ) }; if( colorMap->getColorSpace()->getMode() == csIndexed || colorMap->getColorSpace()->getMode() == csDeviceGray ) { - Guchar nIndex = 0; + unsigned char nIndex = 0; colorMap->getRGB( &nIndex, &zeroColor ); nIndex = 1; colorMap->getRGB( &nIndex, &oneColor ); @@ -514,7 +514,7 @@ PDFOutDev::PDFOutDev( PDFDoc* pDoc ) : m_pDoc( pDoc ), m_aFontMap(), - m_pUtf8Map( new UnicodeMap("UTF-8", gTrue, &mapUTF8) ), + m_pUtf8Map( new UnicodeMap("UTF-8", true, &mapUTF8) ), m_bSkipImages(false) { } @@ -555,7 +555,11 @@ LinkAction* pAction = link->getAction(); if (pAction && pAction->getKind() == actionURI) { +#if POPPLER_CHECK_VERSION(0, 72, 0) + const char* pURI = static_cast(pAction)->getURI()->c_str(); +#else const char* pURI = static_cast(pAction)->getURI()->getCString(); +#endif std::vector aEsc( lcl_escapeLineFeeds(pURI) ); @@ -578,7 +582,11 @@ printf( "restoreState\n" ); } +#if POPPLER_CHECK_VERSION(0, 71, 0) +void PDFOutDev::setDefaultCTM(const double *pMat) +#else void PDFOutDev::setDefaultCTM(double *pMat) +#endif { assert(pMat); @@ -753,7 +761,11 @@ aFont = it->second; +#if POPPLER_CHECK_VERSION(0, 72, 0) + std::vector aEsc( lcl_escapeLineFeeds(aFont.familyName.c_str()) ); +#else std::vector aEsc( lcl_escapeLineFeeds(aFont.familyName.getCString()) ); +#endif printf( " %d %d %d %d %f %d %s", aFont.isEmbedded, aFont.isBold, @@ -939,11 +951,11 @@ } void PDFOutDev::drawImageMask(GfxState* pState, Object*, Stream* str, - int width, int height, GBool invert, + int width, int height, poppler_bool invert, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool /*interpolate*/, + poppler_bool /*interpolate*/, #endif - GBool /*inlineImg*/ ) + poppler_bool /*inlineImg*/ ) { if (m_bSkipImages) return; @@ -972,9 +984,9 @@ void PDFOutDev::drawImage(GfxState*, Object*, Stream* str, int width, int height, GfxImageColorMap* colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool /*interpolate*/, + poppler_bool /*interpolate*/, #endif - int* maskColors, GBool /*inlineImg*/ ) + int* maskColors, poppler_bool /*inlineImg*/ ) { if (m_bSkipImages) return; @@ -1023,13 +1035,13 @@ int width, int height, GfxImageColorMap* colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool /*interpolate*/, + poppler_bool /*interpolate*/, #endif Stream* maskStr, int maskWidth, int maskHeight, - GBool maskInvert + poppler_bool maskInvert #if POPPLER_CHECK_VERSION(0, 12, 0) - , GBool /*maskInterpolate*/ + , poppler_bool /*maskInterpolate*/ #endif ) { @@ -1045,13 +1057,13 @@ int width, int height, GfxImageColorMap* colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool /*interpolate*/, + poppler_bool /*interpolate*/, #endif Stream* maskStr, int maskWidth, int maskHeight, GfxImageColorMap* maskColorMap #if POPPLER_CHECK_VERSION(0, 12, 0) - , GBool /*maskInterpolate*/ + , poppler_bool /*maskInterpolate*/ #endif ) { diff -Nru libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx --- libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -30,6 +30,7 @@ #elif defined _MSC_VER #pragma warning(push) #pragma warning(disable : 4100) // unreferenced formal parameter +#pragma warning(disable : 4310) // cast truncates constant value #endif #include @@ -130,6 +131,13 @@ { return const_cast(familyName); } }; + // Versions before 0.15 defined GBool as int; 0.15 redefined it as bool; 0.71 dropped GBool +#if POPPLER_VERSION_MAJOR == 0 && POPPLER_VERSION_MINOR < 71 + typedef GBool poppler_bool; +#else + typedef bool poppler_bool; +#endif + class PDFOutDev : public OutputDev { // not owned by this class @@ -151,22 +159,26 @@ // Does this device use upside-down coordinates? // (Upside-down means (0,0) is the top left corner of the page.) - virtual GBool upsideDown() override { return gTrue; } + virtual poppler_bool upsideDown() override { return true; } // Does this device use drawChar() or drawString()? - virtual GBool useDrawChar() override { return gTrue; } + virtual poppler_bool useDrawChar() override { return true; } // Does this device use beginType3Char/endType3Char? Otherwise, // text in Type 3 fonts will be drawn with drawChar/drawString. - virtual GBool interpretType3Chars() override { return gFalse; } + virtual poppler_bool interpretType3Chars() override { return false; } // Does this device need non-text content? - virtual GBool needNonText() override { return gTrue; } + virtual poppler_bool needNonText() override { return true; } //----- initialization and control // Set default transform matrix. +#if POPPLER_CHECK_VERSION(0, 71, 0) + virtual void setDefaultCTM(const double *ctm) override; +#else virtual void setDefaultCTM(double *ctm) override; +#endif // Start a page. virtual void startPage(int pageNum, GfxState *state @@ -233,40 +245,40 @@ //----- image drawing virtual void drawImageMask(GfxState *state, Object *ref, Stream *str, - int width, int height, GBool invert, + int width, int height, poppler_bool invert, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool interpolate, + poppler_bool interpolate, #endif - GBool inlineImg) override; + poppler_bool inlineImg) override; virtual void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool interpolate, + poppler_bool interpolate, #endif - int *maskColors, GBool inlineImg) override; + int *maskColors, poppler_bool inlineImg) override; virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool interpolate, + poppler_bool interpolate, #endif Stream *maskStr, int maskWidth, int maskHeight, - GBool maskInvert + poppler_bool maskInvert #if POPPLER_CHECK_VERSION(0, 12, 0) - , GBool maskInterpolate + , poppler_bool maskInterpolate #endif ) override; virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, #if POPPLER_CHECK_VERSION(0, 12, 0) - GBool interpolate, + poppler_bool interpolate, #endif Stream *maskStr, int maskWidth, int maskHeight, GfxImageColorMap *maskColorMap #if POPPLER_CHECK_VERSION(0, 12, 0) - , GBool maskInterpolate + , poppler_bool maskInterpolate #endif ) override; @@ -279,9 +291,13 @@ // note: if you ever change Output_t, please keep in mind that the current code // relies on it being of 8 bit size -typedef Guchar Output_t; +typedef unsigned char Output_t; typedef std::vector< Output_t > OutputBuffer; +#if !POPPLER_CHECK_VERSION(0, 73, 0) +static_assert(std::is_same::value, "unexpected typedef"); +#endif + #endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_XPDFWRAPPER_PDFIOUTDEV_GPL_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pnghelper.cxx libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pnghelper.cxx --- libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/pnghelper.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/pnghelper.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -242,7 +242,7 @@ appendIHDR( o_rOutputBuf, width, height, 8, 6 ); // RGBA image // initialize stream - Guchar *p, *pm; + unsigned char *p, *pm; GfxRGB rgb; GfxGray alpha; ImageStream* imgStr = @@ -328,7 +328,7 @@ appendIHDR( o_rOutputBuf, width, height, 8, 6 ); // RGBA image // initialize stream - Guchar *p; + unsigned char *p; GfxRGB rgb; ImageStream* imgStr = new ImageStream(str, @@ -374,7 +374,7 @@ { for( int x = 0; x < maskWidth; ++x ) { - Guchar aPixel = 0; + unsigned char aPixel = 0; imgStrMask->getPixel( &aPixel ); int nIndex = (y*height/maskHeight) * (width*4+1) + // mapped line (x*width/maskWidth)*4 + 1 + 3 // mapped column diff -Nru libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx --- libreoffice-l10n-6.1.4/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -69,7 +69,7 @@ // read config file globalParams = new GlobalParams(); - globalParams->setErrQuiet(gTrue); + globalParams->setErrQuiet(true); #if defined(_MSC_VER) globalParams->setupBaseFonts(nullptr); #endif @@ -101,9 +101,11 @@ : (ownerPassword[0] != '\001' ? new GooString(ownerPassword) : nullptr ) ); - GooString* pUserPasswordStr( userPassword[0] != '\001' + GooString* pUserPasswordStr( aPwBuf[0] != 0 + ? new GooString( aPwBuf ) + : (userPassword[0] != '\001' ? new GooString(userPassword) - : nullptr ); + : nullptr ) ); if( outputFile[0] != '\001' ) g_binary_out = fopen(outputFile,"wb"); @@ -143,7 +145,7 @@ i, PDFI_OUTDEV_RESOLUTION, PDFI_OUTDEV_RESOLUTION, - 0, gTrue, gTrue, gTrue); + 0, true, true, true); rDoc.processLinks(&aOutDev, i); } diff -Nru libreoffice-l10n-6.1.4/sfx2/source/appl/sfxhelp.cxx libreoffice-l10n-6.1.5~rc2/sfx2/source/appl/sfxhelp.cxx --- libreoffice-l10n-6.1.4/sfx2/source/appl/sfxhelp.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sfx2/source/appl/sfxhelp.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -55,6 +55,7 @@ #include #include #include +#include #include #include #include @@ -843,6 +844,9 @@ if ( !impl_hasHelpInstalled() ) { + TopLevelWindowLocker aBusy; + + aBusy.incBusy(pWindow); std::unique_ptr xBuilder(Application::CreateBuilder(pWindow ? pWindow->GetFrameWeld() : nullptr, "sfx/ui/helpmanual.ui")); std::unique_ptr xQueryBox(xBuilder->weld_message_dialog("onlinehelpmanual")); @@ -851,15 +855,19 @@ OUString sPrimText = xQueryBox->get_primary_text(); xQueryBox->set_primary_text(sPrimText.replaceAll("$UILOCALE", sLocaleString)); short OnlineHelpBox = xQueryBox->run(); + xQueryBox.reset(); + aBusy.decBusy(); - if(OnlineHelpBox == RET_OK) + if (OnlineHelpBox == RET_OK) { if ( impl_showOnlineHelp( aHelpURL ) ) return true; else { + aBusy.incBusy(pWindow); NoHelpErrorBox aErrBox(pWindow ? pWindow->GetFrameWeld() : nullptr); aErrBox.run(); + aBusy.decBusy(); return false; } } diff -Nru libreoffice-l10n-6.1.4/sfx2/source/dialog/dinfdlg.cxx libreoffice-l10n-6.1.5~rc2/sfx2/source/dialog/dinfdlg.cxx --- libreoffice-l10n-6.1.4/sfx2/source/dialog/dinfdlg.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sfx2/source/dialog/dinfdlg.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1511,7 +1511,14 @@ { m_aEditLoseFocusIdle.Stop(); m_aBoxLoseFocusIdle.Stop(); - ClearAllLines(); + + for (CustomPropertyLine* pLine : m_aCustomPropertiesLines) + { + delete pLine; + } + m_pCurrentLine = nullptr; + m_aCustomPropertiesLines.clear(); + m_pHeaderBar.clear(); m_pScrollBar.clear(); m_pHeaderAccName.clear(); @@ -1746,16 +1753,12 @@ void CustomPropertiesWindow::ClearAllLines() { - std::vector< CustomPropertyLine* >::iterator pIter; - for ( pIter = m_aCustomPropertiesLines.begin(); - pIter != m_aCustomPropertiesLines.end(); ++pIter ) + for (CustomPropertyLine* pLine : m_aCustomPropertiesLines) { - CustomPropertyLine* pLine = *pIter; - delete pLine; + pLine->Clear(); } m_pCurrentLine = nullptr; m_aCustomProperties.clear(); - m_aCustomPropertiesLines.clear(); m_nScrollPos = 0; } diff -Nru libreoffice-l10n-6.1.4/sfx2/source/doc/guisaveas.cxx libreoffice-l10n-6.1.5~rc2/sfx2/source/doc/guisaveas.cxx --- libreoffice-l10n-6.1.4/sfx2/source/doc/guisaveas.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sfx2/source/doc/guisaveas.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1399,7 +1399,8 @@ || SignatureState::NOTVALIDATED == nDocumentSignatureState || SignatureState::PARTIAL_OK == nDocumentSignatureState) { - std::unique_ptr xMessageBox(Application::CreateMessageDialog(nullptr, + vcl::Window* pWin = SfxStoringHelper::GetModelWindow( xModel ); + std::unique_ptr xMessageBox(Application::CreateMessageDialog(pWin ? pWin->GetFrameWeld() : nullptr, VclMessageType::Question, VclButtonsType::YesNo, SfxResId(RID_SVXSTR_XMLSEC_QUERY_LOSINGSIGNATURE))); if (xMessageBox->run() != RET_YES) { diff -Nru libreoffice-l10n-6.1.4/sfx2/source/doc/objserv.cxx libreoffice-l10n-6.1.5~rc2/sfx2/source/doc/objserv.cxx --- libreoffice-l10n-6.1.4/sfx2/source/doc/objserv.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sfx2/source/doc/objserv.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -391,13 +391,22 @@ void SfxObjectShell::ExecFile_Impl(SfxRequest &rReq) { + weld::Window* pDialogParent = rReq.GetFrameWeld(); + if (!pDialogParent) + { + SfxViewFrame* pFrame = GetFrame(); + if (!pFrame) + pFrame = SfxViewFrame::GetFirst(this); + if (pFrame) + pDialogParent = pFrame->GetWindow().GetFrameWeld(); + } sal_uInt16 nId = rReq.GetSlot(); if( SID_SIGNATURE == nId || SID_MACRO_SIGNATURE == nId ) { if ( QueryHiddenInformation( HiddenWarningFact::WhenSigning, nullptr ) == RET_YES ) - ( SID_SIGNATURE == nId ) ? SignDocumentContent(rReq.GetFrameWeld()) : SignScriptingContent(rReq.GetFrameWeld()); + ( SID_SIGNATURE == nId ) ? SignDocumentContent(pDialogParent) : SignScriptingContent(pDialogParent); return; } @@ -712,7 +721,7 @@ if ( lErr != ERRCODE_IO_ABORT ) { SfxErrorContext aEc(ERRCTX_SFX_SAVEASDOC,GetTitle()); - ErrorHandler::HandleError(lErr, rReq.GetFrameWeld()); + ErrorHandler::HandleError(lErr, pDialogParent); } if ( nId == SID_EXPORTDOCASPDF ) @@ -801,7 +810,7 @@ SetModified( false ); ErrCode lErr = GetErrorCode(); - ErrorHandler::HandleError(lErr, rReq.GetFrameWeld()); + ErrorHandler::HandleError(lErr, pDialogParent); rReq.SetReturnValue( SfxBoolItem(0, true) ); rReq.Done(); @@ -814,7 +823,7 @@ case SID_DOCTEMPLATE: { // save as document templates - SfxSaveAsTemplateDialog aDlg(rReq.GetFrameWeld(), GetModel()); + SfxSaveAsTemplateDialog aDlg(pDialogParent, GetModel()); (void)aDlg.run(); break; } diff -Nru libreoffice-l10n-6.1.4/sfx2/source/view/viewfrm.cxx libreoffice-l10n-6.1.5~rc2/sfx2/source/view/viewfrm.cxx --- libreoffice-l10n-6.1.4/sfx2/source/view/viewfrm.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sfx2/source/view/viewfrm.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1218,32 +1218,13 @@ rBind.Invalidate( SID_RELOAD ); rBind.Invalidate( SID_EDITDOC ); - // inform about the community involvement - const sal_Int64 nLastShown = officecfg::Setup::Product::LastTimeGetInvolvedShown::get(); - const sal_Int64 nNow = std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); - const sal_Int64 nPeriodSec(60 * 60 * 24 * 30); // 30 days in seconds - bool bUpdateLastTimeGetInvolvedShown = false; - - if (nLastShown == 0) - bUpdateLastTimeGetInvolvedShown = true; - else if (nPeriodSec < nNow && nLastShown < nNow - nPeriodSec) - { - bUpdateLastTimeGetInvolvedShown = true; - - VclPtr pInfoBar = AppendInfoBar("getinvolved", SfxResId(STR_GET_INVOLVED_TEXT), InfoBarType::Info); - - VclPtrInstance xGetInvolvedButton(&GetWindow()); - xGetInvolvedButton->SetText(SfxResId(STR_GET_INVOLVED_BUTTON)); - xGetInvolvedButton->SetSizePixel(xGetInvolvedButton->GetOptimalSize()); - xGetInvolvedButton->SetClickHdl(LINK(this, SfxViewFrame, GetInvolvedHandler)); - pInfoBar->addButton(xGetInvolvedButton); - } - - if (bUpdateLastTimeGetInvolvedShown - && !officecfg::Setup::Product::LastTimeGetInvolvedShown::isReadOnly()) + // Inform about the community involvement (disabled for 6.1 stable as per ESC decision). + // Reset the timers so that both "get involved" and "donate" don't pop up simultaneously + // when the feature is re-activated by 6.2. + if (!officecfg::Setup::Product::LastTimeGetInvolvedShown::isReadOnly()) { std::shared_ptr batch(comphelper::ConfigurationChanges::create()); - officecfg::Setup::Product::LastTimeGetInvolvedShown::set(nNow, batch); + officecfg::Setup::Product::LastTimeGetInvolvedShown::set(0, batch); batch->commit(); } diff -Nru libreoffice-l10n-6.1.4/solenv/flatpak-manifest.in libreoffice-l10n-6.1.5~rc2/solenv/flatpak-manifest.in --- libreoffice-l10n-6.1.4/solenv/flatpak-manifest.in 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/solenv/flatpak-manifest.in 2019-01-30 17:56:45.000000000 +0000 @@ -405,10 +405,10 @@ "dest-filename": "external/tarballs/liborcus-0.13.4.tar.gz" }, { - "url": "https://dev-www.libreoffice.org/src/poppler-0.66.0.tar.xz", - "sha256": "2c096431adfb74bc2f53be466889b7646e1b599f28fa036094f3f7235cc9eae7", + "url": "https://dev-www.libreoffice.org/src/poppler-0.73.0.tar.xz", + "sha256": "e44b5543903128884ba4538c2a97d3bcc8889e97ffacc4636112101f0238db03", "type": "file", - "dest-filename": "external/tarballs/poppler-0.66.0.tar.xz" + "dest-filename": "external/tarballs/poppler-0.73.0.tar.xz" }, { "url": "https://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2", diff -Nru libreoffice-l10n-6.1.4/svl/source/items/itempool.cxx libreoffice-l10n-6.1.5~rc2/svl/source/items/itempool.cxx --- libreoffice-l10n-6.1.4/svl/source/items/itempool.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/svl/source/items/itempool.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -765,9 +765,16 @@ SfxPoolItem*& p = (*pItemArr)[nIdx]; assert(p == &rItem); - assert(p->GetRefCount() && "removing Item without ref"); + if ( p->GetRefCount() ) //! + ReleaseRef( *p ); + else + { + assert(false && "removing Item without ref"); + } - if (0 == ReleaseRef(*p)) + // FIXME: Hack, for as long as we have problems with the Outliner + // See other MI-REF + if ( 0 == p->GetRefCount() && nWhich < 4000 ) { DELETEZ(p); diff -Nru libreoffice-l10n-6.1.4/svtools/source/dialogs/restartdialog.cxx libreoffice-l10n-6.1.5~rc2/svtools/source/dialogs/restartdialog.cxx --- libreoffice-l10n-6.1.4/svtools/source/dialogs/restartdialog.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/svtools/source/dialogs/restartdialog.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -94,9 +94,12 @@ css::uno::Reference< css::uno::XComponentContext > const & context, weld::Window* parent, RestartReason reason) { + auto xRestartManager = css::task::OfficeRestartManager::get(context); + if (xRestartManager->isRestartRequested(false)) + return; // don't try to show another dialog when restart is already in progress RestartDialog aDlg(parent, reason); if (aDlg.run()) { - css::task::OfficeRestartManager::get(context)->requestRestart( + xRestartManager->requestRestart( css::uno::Reference< css::task::XInteractionHandler >()); } } diff -Nru libreoffice-l10n-6.1.4/svtools/uiconfig/ui/inputbox.ui libreoffice-l10n-6.1.5~rc2/svtools/uiconfig/ui/inputbox.ui --- libreoffice-l10n-6.1.4/svtools/uiconfig/ui/inputbox.ui 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/svtools/uiconfig/ui/inputbox.ui 2019-01-30 17:56:45.000000000 +0000 @@ -88,8 +88,8 @@ 65 - 1 - 0 + 0 + 1 diff -Nru libreoffice-l10n-6.1.4/svx/source/tbxctrls/tbcontrl.cxx libreoffice-l10n-6.1.5~rc2/svx/source/tbxctrls/tbcontrl.cxx --- libreoffice-l10n-6.1.4/svx/source/tbxctrls/tbcontrl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/svx/source/tbxctrls/tbcontrl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -177,6 +177,7 @@ static bool AdjustFontForItemHeight(OutputDevice* pDevice, tools::Rectangle const & rTextRect, long nHeight); void SetOptimalSize(); DECL_LINK( MenuSelectHdl, Menu *, bool ); + DECL_STATIC_LINK(SvxStyleBox_Impl, ShowMoreHdl, void*, void); }; class SvxFontNameBox_Impl : public FontNameBox @@ -429,6 +430,16 @@ return false; } +IMPL_STATIC_LINK_NOARG(SvxStyleBox_Impl, ShowMoreHdl, void*, void) +{ + SfxViewFrame* pViewFrm = SfxViewFrame::Current(); + DBG_ASSERT( pViewFrm, "SvxStyleBox_Impl::Select(): no viewframe" ); + if (!pViewFrm) + return; + pViewFrm->ShowChildWindow(SID_SIDEBAR); + ::sfx2::sidebar::Sidebar::ShowPanel("StyleListPanel", pViewFrm->GetFrame().GetFrameInterface()); +} + void SvxStyleBox_Impl::Select() { // Tell base class about selection so that AT get informed about it. @@ -452,11 +463,7 @@ } else if( aSearchEntry == aMoreKey && GetSelectedEntryPos() == ( GetEntryCount() - 1 ) ) { - SfxViewFrame* pViewFrm = SfxViewFrame::Current(); - DBG_ASSERT( pViewFrm, "SvxStyleBox_Impl::Select(): no viewframe" ); - pViewFrm->ShowChildWindow( SID_SIDEBAR ); - ::sfx2::sidebar::Sidebar::ShowPanel("StyleListPanel", - pViewFrm->GetFrame().GetFrameInterface()); + Application::PostUserEvent(LINK(nullptr, SvxStyleBox_Impl, ShowMoreHdl)); //tdf#113214 change text back to previous entry SetText(GetSavedValue()); bDoIt = false; diff -Nru libreoffice-l10n-6.1.4/svx/source/unodraw/unoshap2.cxx libreoffice-l10n-6.1.5~rc2/svx/source/unodraw/unoshap2.cxx --- libreoffice-l10n-6.1.4/svx/source/unodraw/unoshap2.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/svx/source/unodraw/unoshap2.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1367,6 +1367,7 @@ case OWN_ATTR_GRAPHIC_URL: { OUString aURL; + uno::Reference xBitmap; if (rValue >>= aURL) { Graphic aGraphic = vcl::graphic::loadFromURL(aURL); @@ -1376,6 +1377,19 @@ bOk = true; } } + else if (rValue >>= xBitmap) + { + uno::Reference xGraphic(xBitmap, uno::UNO_QUERY); + if (xGraphic.is()) + { + Graphic aGraphic = xGraphic; + if (aGraphic) + { + static_cast(GetSdrObject())->SetGraphic(aGraphic); + bOk = true; + } + } + } break; } diff -Nru libreoffice-l10n-6.1.4/sw/inc/doc.hxx libreoffice-l10n-6.1.5~rc2/sw/inc/doc.hxx --- libreoffice-l10n-6.1.4/sw/inc/doc.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/inc/doc.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -911,6 +911,10 @@ const SwTOXBase& rTOX, const SfxItemSet* pSet = nullptr, bool bExpand = false ); + SwTOXBaseSection* InsertTableOf( const SwPaM& aPam, + const SwTOXBase& rTOX, + const SfxItemSet* pSet = nullptr, + bool bExpand = false ); void InsertTableOf( sal_uLong nSttNd, sal_uLong nEndNd, const SwTOXBase& rTOX, const SfxItemSet* pSet ); diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/layout/data/forcepoint76-1.rtf libreoffice-l10n-6.1.5~rc2/sw/qa/extras/layout/data/forcepoint76-1.rtf --- libreoffice-l10n-6.1.4/sw/qa/extras/layout/data/forcepoint76-1.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/layout/data/forcepoint76-1.rtf 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,3388 @@ +{\rtf1\a|eflang1037\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;} +{\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f4\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Helvetica;} +{\f5\fmodern\fcharset0\fprq1{\*\panose 02060409020205020404}Courier;}{\f6\froman\fcharset0\fprq2{\*\panose 02020603040505020304}Tms Rmn;}{\f7\fswiss\fcharset0\fprq2{\*\panose 020b0604020202030204}Helv;} +{\f8\froman\fcharset0\fprq2{\*\panose 02040503060506020304}New York;}{\f9\fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}System;}{\f10\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}Wingdings;} +{\f11\froman\fcharset128\fprq1{\*\panose 02020609040205080304}MS Mincho{\*\falt ?l?r ??\'81\'66c};}{\f12\fnil\fcharset129\fprq1{\*\panose 02030600000101010101}Batang{\*\falt \'a2\'ae\'a1\'d7IoUAA};} +{\f13\fnil\fcharset134\fprq2{\*\panose 02010600030101010101}SimSun{\*\falt ????\'a8\'ac??};}{\f14\fnil\fcharset136\fprq2{\*\panose 02010601000101010101}PMingLiU{\*\falt !Ps2OcuAe};} +{\f15\fmodern\fcharset128\fprq1{\*\panose 020b0609070205080204}MS Gothic{\*\falt ?l?r ?S?V?b?N};} +{\f16\fmodern\fcharset129\fprq1{\*\panose 020b0600000101010101}Dotum{\*\falt \'a1\'cb\'a2\'e7Ii\'a1\'cb\'a2\'e7e\'a1\'cb\'a2\'e7\'a8\'cf\'a1\'a9\'a1\'cb\'a2\'e7e?o};} +{\f17\fmodern\fcharset134\fprq1{\*\panose 02010600030101010101}SimHei{\*\falt o??\'a8\'ac2??\'a8\'ac??};}{\f0\fmodern\fcharset136\fprq1{\*\panose 02010609000101010101}MingLiU{\*\falt 2OcuAe};} +{\f19\froman\fcharset128\fprq1{\*\panose 7202762996549695502}Mincho{\*\falt ??\'81\'66c};} +{\f20\froman\fcharset129\fprq1{\*\panose 020b0600000101010101}Gulim{\*\falt \'a2\'aee\'a1\'cbc\'a2\'ae\'a1\'d7u\'a1\'cb\'a2\'e7\'a2\'ae\'a1\'bfu\'a1\'cb\'a2\'e7e\'a1\'cb\'a2\'e7\'a8\'cf\'a1\'a9\'a2\'ae\'a1\'d7I\'a1\'cb\'a2\'e7a};} +{\f21\froman\fcharset0\fprq2{\*\panose 02040603050705020303}Century;}{\f22\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Angsana New;}{\f23\fswiss\fcharset0\fprq2{\*\panose 020b0304020202020204}Cordia New;} +{\f24\fnil\fcharset1\fprq2{\*\panose 00000400000000000000}Mangal;}{\f25\fnil\fcharset1\fprq2{\*\panose 02000400000000000000}Latha;}{\f26\froman\fcharset0\fprq2{\*\panose 010a0502050306030303}Sylfaen;} +{\f27\froman\fcharset1\fprq2{\*\panose 00000400000000000000}Vrinda;}{\f28\fnil\fcharset1\fprq2{\*\panose 02000500000000000000}Raavi;}{\f29\fnil\fcharset1\fprq2{\*\panose 02000500000000000000}Shruti;} +{\f30\froman\fcharset1\fprq2{\*\panose 00000400000000000000}Sendnya;}{\f31\fnil\fcharset1\fprq2{\*\panose 02000500000000000000}Gautami;}{\f32\fnil\fcharset1\fprq2{\*\panose 00000400000000000000}Tunga;} +{\f33\fscript\fcharset1\fprq2{\*\panose 03080600000000000000}Estrangelo Edessa;}{\f34\froman\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial Unicode MS;}{\f35\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Tahoma;} +{\f36\fnil\fcharset134\fprq2{\*\panose 00000000000000000000}@SimSun;}{\f37\froman\fcharset0\fprq2 Times New Roman CE;}{\f38\froman\fcharset0\fprq2 Times New Roman CYR;}{\f39\froman\fcharset0\fprq2 Times New Roman Greek;} +{\f40\froman\fcharset0\fprq2 Times New Roman TUR;}{\f41\froman\fcharset0\fprq2 Times New Roman Baltic;}{\f42\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Verdana;}{\f43\fswiss\fcharset0\fprq2{\*\panose 020b0603020202020204}Trebuchet MS;} +{\f44\fswiss\fcharset0\fprq2{\*\panose 020e0802040304020204}Albertus Extra Bold;}{\f45\fswiss\fcharset0\fprq2{\*\panose 020e0602030304020304}Albertus Medium;}{\f46\fswiss\fcharset0\fprq2{\*\panose 020b0603020204030204}Antique Olive;} +{\f47\fswiss\fcharset0\fprq2{\*\panose 020b0502050508020304}CG Omega;}{\f48\froman\fcharset0\fprq2{\*\panose 02020603050405020304}CG Times;}{\f49\froman\fcharset0\fprq2{\*\panose 02040706040705040204}Clarendon Condensed;} +{\f50\fscript\fcharset0\fprq2{\*\panose 03030502040406070605}Coronet;}{\f51\fmodern\fcharset0\fprq1{\*\panose 02060409020205020404}CourierPS;}{\f52\froman\fcharset0\fprq2{\*\panose 02020404030301010803}Garamond;} +{\f53\fswiss\fcharset0\fprq2{\*\panose 020b0506020203020204}Helvetica Narrow;}{\f54\fswiss\fcharset0\fprq2{\*\panose 020b0402020203020304}ITC Avant Garde Gothic;}{\f55\froman\fcharset0\fprq2{\*\panose 02050504040505020204}ITC Bookman;} +{\f56\fscript\fcharset0\fprq2{\*\panose 03010101010201010101}ITC Zapf Chancery;}{\f57\fnil\fcharset2\fprq2{\*\panose 01010601010101010101}ITC Zapf Dingbats;}{\f58\fmodern\fcharset0\fprq1{\*\panose 020b0409020202030204}Letter Gothic;} +{\f59\fmodern\fcharset0\fprq1{\*\panose 00000000000000000000}LinePrinterBM;}{\f60\fscript\fcharset0\fprq2{\*\panose 03020702040402020504}Marigold;}{\f61\froman\fcharset0\fprq2{\*\panose 02040603050505020303}New Century Schoolbook;} +{\f62\froman\fcharset0\fprq2{\*\panose 02040602050305020304}Palatino;}{\f63\froman\fcharset2\fprq2{\*\panose 05050102010706020507}SymbolPS;}{\f64\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times;} +{\f65\fswiss\fcharset0\fprq2{\*\panose 020b0603020202030204}Univers;}{\f66\fswiss\fcharset0\fprq2{\*\panose 020b0606020202060204}Univers Condensed;}{\f67\fmodern\fcharset0\fprq1{\*\panose 00000000000000000000}PRESCRIBE;} +{\f68\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}Marlett;}{\f69\fmodern\fcharset0\fprq1{\*\panose 020b0609040504020204}Lucida Console;}{\f70\fswiss\fcharset0\fprq2{\*\panose 020b0602030504020204}Lucida Sans Unicode;} +{\f0\fswiss\fcharset0\fprq2{\*\panose 020b0a04020102020204}Arial Black;}{\f72\fscript\fcharset0\fprq2{\*\panose 030f0702030302020204}Comic Sans MS;}{\f73\fswiss\fcharset0\fprq2{\*\panose 020b0806030902050204}Impact;} +{\f74\froman\fcharset0\fprq2{\*\panose 02040502050405020303}Georgia;}{\f75\fswiss\fcharset0\fprq2{\*\panose 020b0603020102020204}Franklin Gothic Medium;}{\f76\froman\fcharset0\fprq2{\*\panose 02040502050505030304}Palatino Linotype;} +{\f77\froman\fcharset2\fprq2{\*\panose 05030102010509060703}Webdings;}{\f78\fnil\fcharset1\fprq2{\*\panose 02000500030200090000}MV Boli;}{\f79\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Microsoft Sans Serif;} +{\f80\froman\fcharset2\fprq2{\*\panose 02020604050505020304}WP MultinationalA Roman;}{\f81\fmodern\fcharset2\fprq1{\*\panose 02060409020205020404}WP MultinationalB Courier;} +{\f82\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP MultinationalB Helve;}{\f83\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP MultinationalB Roman;}{\f84\fswiss\fcharset2\fprq2{\*\panose 050b0604020202030204}WP Phonetic;} +{\f85\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP Arabic Sihafa;}{\f86\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP MathA;}{\f87\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP MathB;} +{\f88\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP MathExtendedA;}{\f89\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP MathExtendedB;}{\f90\fmodern\fcharset2\fprq1{\*\panose 05000009000000000000}WP MultinationalA Courier;} +{\f91\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP MultinationalA Helve;}{\f92\fmodern\fcharset2\fprq1{\*\panose 00p00009000000000000}WP Greek Courier;}{\f93\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP Greek Helve;} +{\f94\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}WP Hebrew David;}{\f95\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP IconicSymbolsA;}{\f96\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP IconicSymbolsB;} +{\f97\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP Japanese;}{\f98\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}WP TypographicSymbols;}{\f99\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}WP ArabicScript Sihafa;} +{\f100\fmodern\fcharset0\fprq1{\*\panose 010b0409020201010101}WP BoxDrawing;}{\f101\froman\fcharset2\fprq2{\*\panose 05020604050505020304}WP CyrillicA;}{\f102\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}WP CyrillicB;} +{\f103\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}WP Greek Century;}{\f104\froman\fcharset0\fprq2{\*\panose 02090504030505020304}AmerType Md BT;}{\f105\fswiss\fcharset0\fprq2{\*\panose 00b0602020202020204}AvantGarde Md BT;} +{\f106\fsjs\fcharset0\fprq2{\*\panose 020b0402020202020204}AvantGarde Bk BT;}{\f107\froman\fcharset0\fprq2{\*\panose 02030904050306020704}Benguiat Bk BT;}{\f108\fdecor\fcharset0\fprq2{\*\panose 04030205020b02020502}BernhardFashion BT;} +{\f109\froman\fcharset0\fprq2{\*\panose 0207060307050a020302}BernhardMod BT;}{\f110\fswiss\fcharset0\fprq2{\*\panose 020b0807020203060204}BankGothic Md BT;}{\f111\fdecor\fcharset0\fprq2{\*\panose 04040807060d02020704}Bremen bd BT;} +{\f112\fdecor\fcharset0\fprq2{\*\panose 04060705040702020204}Charlesworth;}{\f113\fswiss\fcharset2\fprq2{\*\panose 020b0603050302020204}CommonBullets;}{\f114\fswiss\fcharset0\fprq2{\*\panose 020e0705020203020404}CopprplGoth bd BT;} +{\f115\froman\fcharset0\fprq2{\*\panose 0204050203030b020204}Dauphin;}{\f116\fswiss\fcharset0\fprq2{\*\panose 020b0802020204020204}Futura Md BT;}{\f117\fdecor\fcharset0\fprq2{\*\panose 040409050d0b02020403}FuturaBlack BT;} +{\f118\fswiss\fcharset0\fprq2{\*\panose 020b0402020204020303}Futura Lt BT;}{\f119\fswiss\fcharset0\fprq2{\*\panose 020b0903020204020204}Futura XBlk BT;}{\f120\fdecor\fcharset0\fprq2{\*\panose 04020604050203030203}GoudyHandtooled BT;} +{\f121\froman\fcharset0\fprq2{\*\panose 02020502050305020303}GoudyOlSt BT;}{\f122\fswiss\fcharset0\fprq2{\*\panose 020b0602020204020204}Humanst521 BT;}{\f123\fswiss\fcharset0\fprq2{\*\panose 020d0402020204020904}Kabel Bk BT;} +{\f124\fswiss\fcharset0\fprq2{\*\panose 020d0902020204020204}Kabel Ult BT;}{\f125\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}Lithograph;}{\f126\fdecor\fcharset0\fprq2{\*\panose 040b0500000000000000}LithographLight;} +{\f127\fscript\fcharset0\fprq2{\*\panose 03080702020302020206}OzHandicraft BT;}{\f128\froman\fcharset0\fprq2{\*\panose 02070a02080905020204}PosterBodoni BT;}{\f129\froman\fcharset0\fprq2{\*\panose 02060503030505020204}Serifa BT;} +{\f130\froman\fcharset0\fprq2{\*\panose 02060303030505020204}Serifa Th BT;}{\f131\fscript\fcharset0\fprq2{\*\panose 03030702030607090b03}English111 Vivace BT;}{\f132\froman\fcharset0\fprq2{\*\panose 02080503040505020303}Souvenir Lt BT;} +{\f133\fscript\fcharset0\fprq2{\*\panose 03090702030407020403}Staccato222 BT;}{\f134\fswiss\fcharset0\fprq2{\*\panose 020b0708030702060204}Swiss911 XCm BT;}{\f135\fscript\fcharset0\fprq2{\*\panose 03020702030807050705}TypoUpright BT;} +{\f136\froman\fcharset0\fprq2{\*\panose 02040503050506040803}ZapfEllipt BT;}{\f137\fswiss\fcharset0\fprq2{\*\panose 020b0505020202020204}Zurich Ex BT;}{\f138\fswiss\fcharset0\fprq2{\*\panose 020b0807040502030204}Zurich BlkEx BT;} +{\f139\froman\fcharset2\fprq2{\*\panose 05050102010205020202}MT Extra;}{\f140\froman\fcharset222\fprq2{\*\panose 02020603050405020304}AngsanaUPC;}{\f141gfswiss#tchaYset222\fprq2{\*\panose 020b0604020202020204}BrowalliaUPC;} +{\f142\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Browallia New;}{\f143\fswiss\fcharset222\fprq2{\*\panose 020b0304020202020204}CordiaUPC;}{\f144\froman\fcharset222\fprq2{\*\panose 02020603050405020304}DilleniaUPC;} +{\f145\froman\fcharset222\fprq2{\*\panose 02020603050405020304}EucrosiaUPC;}{\f146\fswiss\fcharset222\fprq2{\*\panose 020b0604020202020204}FreesiaUPC;}{\f147\fswiss\fcharset222\fprq2{\*\panose 020b0604020202020204}IrisUPC;} +{\f148\froman\fcharset-2680832846622911521\fprq2{\*\panose 02020603050405020304}JasmineUPC;}{\f149\froman\fcharset222\fprq2{\*\panose 02020603050405020304}KodchiangUPC;}{\f150\fswiss\fcharset222\fprq2{\*\panose 020b0604020202020204}LilyUPC;} +{\f151\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}Aharoni;}{\f152\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}David;}{\f153\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}David Transparent;} +{\f154\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}FrankRuehl;}{\f155\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}Levenim MT;}{\f156\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}Miriam;} +{\f157\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}Miriam Transparent;}{\f158\fbidi \fmodern\fcharset177\fprq1{\*\panose 00000009000000000000}Miriam Fixed;} +{\f159\fbidi \fmodern\fcharset177\fprq1{\*\panose 00000009000000000000}Fixed Miriam Transparent;}{\f160\fbidi \fnil\fcharset177\fprq2{\*\panose 00000000000000000000}Narkisim;}{\f161\fbidi \fmodern\fcharset177\fprq1{\*\panose 00000009000000000000}Rod;} +{\f162\fbidi \fmodern\fcharset177\fprq1{\*\panose 00000009000000000000}Rod Transparent;}{\f163\fbidi \fnil\fcharset178\fprq2{\*\panose 02010000000000000000}Traditional Arabic;} +{\f164\fbidi \fnil\fcharset178\fprq2{\*\panose 02010000000000000000}Arabic Transparent;}{\f165\fbidi \fnil\fcharset178\fprq2{\*\panose 02010000000000000000}Andalus;}{\f166\fbidi \fnil\fcharset178\fprq2{\*\panose 02010000000000000000}Simplified Arabic;} +{\f167\fbidi \fmodern\fcharset178\fprq1{\*\panose 02010009000000000000}Simplified Arabic Fixed;}{\f168\fswiss\fcharset0\fprq2{\*\panose 020b0506030403020204}Myriad Condensed Web;}{\f169\fswiss\fcharset0\fprq2{\*\panose 020b0503030403020204}Myriad Web;} +{\f170\groman\fcharset0\fprq2{\*\panose 02020603050405020304}TITUS Cyberbit Basic;}{\f171\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}Digiface;}{\f172\fdecor\fcharset0\fprq2{\*\panose 040409040d0702020402}Allegro BT;} +{\f173\fswiss\fcharset0\fprq2{\*\panose 020b0506020202030204}Arial Narrow;}{\f174\froman\fcharset0\fprq2{\*\panose 02040602050305030304}Book Antiqua;}{\f175\froman\fcharset0\fprq2{\*\panose 02050604050505020204}Bookman Old Style;} +{\f176\fswiss\fcharset0\fprq2{\*\panose 020b0502020202020204}Century Gothic;}{\f177\fswiss\fcharset0\fprq2{\*\panose 020b0706040902060204}Haettenschweiler;}{\f178\fnil\fcharset2\fprq2{\*\panose 05010100010000000000}MS Outlook;} +{\f179\fscript\fcharset0\fprq2{\*\panose 03010101010201010101}Monotype Corsiva;}{\f180\froman\fcharset2\fprq2{\*\panose 05020102010507070707}Wingdings 2;}{\f181\froman\fcharset2\fprq2{\*\panose 05040102010807070707}Wingdings 3;} +{\f182\fnil\fcharset2\fprq2{\*\panose 05010101010101010101}Bookshelf Symbol 7;}{\f183\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}MS Reference Sans Serif;}{\f184\fnil\fcharset2\fprq2{\*\panose 05000500000000000000}MS Reference Specialty;} +{\f185\fmodern\fcharset0\fprq1{\*\panose 020b0609030804020204}Bitstream Vera Sans Mono;}{\f186\fswiss\fcharset0\fprq2{\*\panose 020b0603030804020204}Bitstream Vera Sans;}{\f187\froman\fcharset0\fprq2{\*\panose 02060603050605020204}Bitstream Vera Serif;} +{\f188\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}OpenSymbol;}{\f189\fnil\fcharset0\fprq2{\*\panose 00000700000000000000}Davka Siddur;}{\f190\fnil\fcharset0\fprq2{\*\panose 02000508000000020004}Davka Aharony;} +{\f191\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Chayim;}{\f192\fnil\fcharset0\fprq2{\*\panose 02000506000000020004}Davka David;}{\f193\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka DavidFix;} +{\f194\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka Drogolin;}{\f195\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka FrankRuhl;}{\f196\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka FrankRuhlLight;} +{\f197\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Gefen;}{\f198\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Gonen;}{\f199\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka Hadasah;} +{\f200\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Kastel;}{\f201\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka KsavYad;}{\f202\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka Meir;} +{\f203\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Miriam;}{\f204\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka Rashi;}{\f205\fnil\fcharset0\fprq2{\*\panose 00000400000000000000}Davka Stam;} +{\f206\fnil\fcharset0\fprq2{\*\panose 02000400000000000000}Davka Yerushalmy;}{\f207\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Venice;}{\f208\fnil\fcharset0\fprq2{\*\panose 02000000000000000000}GuttmanD Adii;} +{\f209\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Ashknaz;}{\f210\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Calligraphic;}{\f211\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Hadar;} +{\f212\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Keren;}{\f213\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Mantova-Deco;}{\f214\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Hatzvi;} +{\f215\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Vilna;}{\f216\fnil\fcharset0\fprq2{\*\panose 00000000000000000000}GuttmanD Yad;}{\f217\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}YerushalmyD;} +{\f218\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}AharonyD;}{\f219\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}ChayimD;}{\f220\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}DavidD;} +{\f221\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}DavidFixD;}{\f222\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}FrankRuhlD;}{\f223\fnil\fcharset2\fprq2{\*\panose 00000300000000000000}FrankRuhlLightD;} +{\f224\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}GefenD;}{\f225\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}GonenD;}{\f226\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}HadasahD;} +{\f227\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}KastelD;}{\f228\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}KsavYadD;}{\f229\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}MeirD;} +{\f230\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}MiriamD;}{\f231\fnil\fcharset2\fprq50472{\*\panose 00000400000000000000}RashiD;}{\f232\fnil\fcharset2\fprq2{\*\panose 00000700000000000000}SiddurD;} +{\f233\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}StamD;}{\f234\fnil\fcharset2\fprq2{\*\panose 00000400000000000000}VilnaD;}{\f235\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}CalligraphicG;} +{\f236\fnil\fcharset2\fprq2{\*\panose 02000000000000000000}AdiiG;}{\f237\fnil\fcharset2\fprq2{\*\panose 02000000000000000000}AshknazG;}{\f238\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}HadarG;} +{\f239\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}KerenG;}{\f240\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}Mantova-DecoG;}{\f241\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}HatzviG;} +{\f242\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}VeniceG;}{\f243\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}VilnaG;}{\f244\fnil\fcharset2\fprq2{\*\panose 00000000000000000000}YadG;} +{\f245\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}HebEmail;}{\f246\froman\fcharset0\fprq2{\*\panose 02070300020205020404}HebEmailFix;}{\f247\fswiss\fcharset0\fprq2 Arial CE;}{\f248\fswiss\fcharset0\fprq2 Arial CYR;} +{\f249\fswiss\fcharset0\fprq2 Arial Greek;}{\f250\fswiss\fcharset0\fprq2 Arial TUR;}{\f251\fswiss\fcharset0\fprq2 Arial Baltic;}{\f252\fmodern\fcharset0\fprq1 Courier New CE;}{\f253\fmodern\fcharset0\fprq1 Courier New CYR;} +{\f254\fmodern\fcharset0\fprq1 Courier New Greek;}{\f255\fmodern\fcharset0\fprq1 Courier New TUR;}{\f256\fmodern\fcharset0\fprq1 Courier New Baltic;}{\f257\froman\fcharset238\fprq2 Times New Roman CE;}{\f258\froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f260\froman\fcharset161\fprq2 Times New Roman Greek;}{\f261\froman\fcharset162\fprq2 Times New Roman Tur;}{\f262\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f263\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\f264\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f265\froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f267\fswiss\fcharset238\fprq2 Arial CE;}{\f268\fswiss\fcharset204\fprq2 Arial Cyr;}{\f270\fswiss\fcharset161\fprq2 Arial Greek;} +{\f271\fswiss\fcharset162\fprq2 Arial Tur;}{\f272\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f273\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);}{\f274\fswiss\fcharset186\fprq2 Arial Baltic;}{\f275\fswiss\fcharset163\fprq2 Arial (Vietnamese);} +{\f277\fmodern\fcharset238\fprq1 Courier New CE;}{\f278\fmodern\fcharset204\fprq1 Courier New Cyr;}{\f280\fmodern\fcharset161\fprq1 Courier New Greek;}{\f281\fmodern\fcharset162\fprq1 Courier New Tur;} +{\f282\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f283\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f284\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f285\fmodern\fcharset163\fprq1 Courier New (Vietnamese);} +{\f297\fswiss\fcharset238\fprq2 Helvetica CE;}{\f298\fswiss\fcharset204\fprq2 Helvetica Cyr;}{\f300\fswiss\fcharset161\fprq2 Helvetica Greek;}{\f301\fswiss\fcharset162\fprq2 Helvetica Tur;}{\f302\fbidi \fswiss\fcharset177\fprq2 Helvetica (Hebrew);} +{\f303\fbidi \fswiss\fcharset178\fprq2 Helvetica (Arabic);}{\f304\fswiss\fcharset186\fprq2 Helvetica Baltic;}{\f305\fswiss\fcharset163\fprq2 Helvetica (Vietnamese);}{\f486\froman\fcharset222\fprq2 Angsana New (Thai);} +{\f496\fswiss\fcharset222\fprq2 Cordia New (Thai);}{\f517\froman\fcharset238\fprq2 Sylfaen CE;}{\f518\froman\fcharset204\fprq2 Sylfaen Cyr;}{\f520\froman\fcharset161\fprq2 Sylfaen Greek;}{\f521\froman\fcharset162\fprq2 Sylfaen Tur;} +{\f524\froman\fcharset186\fprq2 Sylfaen Baltic;}{\f607\fswiss\fcharset238\fprq2 Tahoma CE;}{\f608\fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f610\fswiss\fcharset161\fprq2 Tahoma Greek;}{\f611\fswiss\fcharset162\fprq2 Tahoma Tur;} +{\f612\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f613\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f614\fswiss\fcharset186\fprq2 Tahoma Baltic;}{\f615\fswiss\fcharset163\fprq2 Tahoma (Vietnamese);} +{\f616\fswiss\fcharset222\fprq2 Tahoma (Thai);}{\f627\froman\fcharset238\fprq2 Times New Roman ce CE;}{\f628\froman\fcharset204\fprq2 Times New Roman ce Cyr;}{\f630\froman\fcharset161\fprq2 Times New Roman ce Greek;} +{\f631\froman\fcharset162\fprq2 Times New Roman ce Tur;}{\f632\fbidi \froman\fcharset177\fprq2 Times New Roman ce (Hebrew);}{\f633\fbidi \froman\fcharset178\fprq2 Times New Roman ce (Arabic);}{\f634\froman\fcharset186\fprq2 Times New Roman ce Baltic;} +{\f635\froman\fcharset163\fprq2 Times New Roman ce (Vietnamese);}{\f637\froman\fcharset238\fprq2 Times New Roman CYR CE;}{\f638\froman\fcharset204\fprq2 Times New Roman CYR Cyr;}{\f640\froman\fcharset161\fprq2 Times New Roman CYR Greek;} +{\f641\froman\fcharset162\fprq2 Times New Roman CYR Tur;}{\f642\fbidi \froman\fcharset177\fprq2 Times New Eoman CYR (Hebrew);}{\f643\fbidi \froman\fcharset178\fprq2 Times New Roman CYR (Arabic);}{\f644\froman\fcharset186\fprq2 Times New Roman CYR Baltic;} +{\f645\froman\fcharset163\fprq2 Times New Roman CYR (Vietnamese);}{\f647\froman\fcharset238\fprq2 Times New Roman Greek CE;}{\f648\froman\fcharset204\fprq2 Times New Roman Greek Cyr;}{\f650\froman\fcharset161\fprq2 Times New Roman Greek Greek;} +{\f651\froman\fcharset162\fprq2 Times New Roman Greek Tur;}{\f652\fbidi \froman\fcharset177\fprq2 Times New Roman Greek (Hebrew);}{\f653\fbidi \froman\fcharset178\fprq2 Times New Roman Greek (Arabic);} +{\f654\froman\fcharset186\fprq2 Times New Roman Greek Baltic;}{\f655\froman\fcharset163\fprq2 Times New Roman Greek (Vietnamese);}{\f657\froman\fcharset238\fprq2 Times New Roman TUR CE;}{\f658\froman\fcharset204\fprq2 Times New Roman TUR Cyr;} +{\f660\froman\fcharset161\fprq2 Times New Roman TUR Greek;}{\f661\froman\fcharset162\fprq2 Times New Roman TUR Tur;}{\f662\fbidi \froman\fcharset177\fprq2 Times New Roman TUR (Hebrew);}{\f663\fbidi \froman\fcharset178\fprq2 Times New Roman TUR (Arabic);} +{\f664\froman\fcharset186\fprq2 Times New Roman TUR Baltic;}{\f665\froman\fcharset163\fprq2 Times New Roman TUR (Vietnamese);}{\f667\froman\fcharset238\fprq2 Times New Roman Baltic CE;}{\f668\froman\fcharset204\fprq2 Times New Roman Baltic Cyr;} +{\f670\froman\fcharset161\fprq2 Times New Roman Baltic Greek;}{\f671\froman\fcharset162\fprq2 Times New Roman Baltic Tur;}{\f672\fbidi \froman\fcharset177\fprq2 Times New Roman Baltic (Hebrew);} +{\f673\fbidi \froman\fcharset178\fprq2 Times New Roman Baltic (Arabic);}{\f674\froman\fcharset186\fprq2 Times New Roman Baltic Baltic;}{\f675\froman\fcharset163\fprq2 Times New Roman Baltic (Vietnamese);}{\f677\fswiss\fcharset238\fprq2 Verdana CE;} +{\f678\fswiss\fcharset204\fprq2 Verdana Cyr;}{\f680\fswiss\fcharset161\fprq2 Verdana Greek;}{\f681\fswiss\fcharset162\fprq2 Verdana Tur;}{\f684\fswiss\fcharset186\fprq2 Verdana Baltic;}{\f685\fswiss\fcharset163\fprq2 Verdana (Vietnamese);} +{\f687\fswiss\fcharset238\fprq2 Trebuchet MS CE;}{\f688\fswiss\fcharset204\fprq2 Trebuchet MS Cyr;}{\f690\fswiss\fcharset161\grq2 Trebuchet MS Greek;}{\f691\fswiss\fcharset162\fprq2 Trebuchet MS Tur;}{\f694\fswiss\fcharset186\fprq2 Trebuchet MS Baltic;} +{\f777\froman\fcharset238\fprq2 Garamond CE;}{\f778\froman\fcharset204\fprq2 Garamond Cyr;}{\f780\froman\fcharset161\fprq2 Garamond Greek;}{\f781\froman\fcharset162\fprq2 Garamond Tur;}{\f784\froman\fcharset186\fprq2 Garamond Baltic;} +{\f897\froman\fcharset238\fprq2 Times CE;}{\f898\froman\fcharset204\fprq2 Times Cyr;}{\f900\froman\fcharset161\fprq2 Times Greek;}{\f901\froman\fcharset162\fprq2 Times Tur;}{\f902\fbidi \froman\fcharset177\fprq2 Times (Hebrew);} +{\f903\fbidi \froman\fcharset178\fprq2 Times (Arabic);}{\f904\froman\fcharset186\fprq2 Times Baltic;}{\f905\froman\fcharset163\fprq2 Times (Vietnamese);}{\f947\fmodern\fcharset238\fprq1 Lucida Console CE;} +{\f948\fmodern\fcharset204\fprq1 Lucida Console Cyr;}{\f950\fmodern\fcharset161\fprq1 Lucida Console Greek;}{\f951\fmodern\fcharset162\fprq0 Lucida Console Tur;}{\f957\fswiss\fcharset238\fprq2 Lucida Sans Unicode CE;} +{\f958\fswiss\fcharset204\fprq2 Lucida Sans Unicode Cyr;}{\f960\fswiss\fcharset161\fprq2 Lucida Sans Unicode Greek;}{\f961\fswiss\fcharset162\fprq2 Lucida Sans Unicode Tur;}{\f962\fbidi \fswiss\fcharset177\fprq2 Lucida Sans Unicode (Hebrew);} +{\f967\fswiss\fcharset238\fprq2 Arial Black CE;}{\f968\fswiss\fcharset204\fprq2 Arial Black Cyr;}{\f970\fswiss\fcharset161\fprq2 Arial Black Greek;}{\f971\fswiss\fcharset162\fprq2 Arial Black Tur;}{\f974\fswiss\fcharset186\fprq2 Arial Black Baltic;} +{\f977\fscript\fcharset238\fprq2 Comic Sans MS CE;}{\f978\fscript\fcharset204\fprq2 Comic Sans MS Cyr;}{\f980\fscript\fcharset161\fprq2 Comic Sans MS Greek;}{\f981\fscript\fcharset162\fprq2 Comic Sans MS Tur;} +{\f984\fscript\fcharset186\fprq2 Comic Sans MS Baltic;}{\f987\fswiss\fcharset238\fprq2 Impact CE;}{\f988\fswiss\fcharset204\fprq2 Impact Cyr;}{\f990\fswiss\fcharset161\fprq2 Impact Greek;}{\f991\fswiss\fcharset162\fprq2 Impact Tur;} +{\f994\fswiss\fcharset186\fprq2 Impact Baltic;}{\f997\froman\fcharset238\fprq2 Georgia CE;}{\f998\froman\fcharset204\fprq2 Georgia Cyr;}{\f1000\froman\fcharset161\fprq2 Georgia Greek;}{\f1001\froman\fcharset162\fprq2 Georgia Tur;} +{\f1004\froman\fcharset186\fprq2 Georgia Baltic;}{\f1007\fswiss\fcharset238\fprq2 Franklin Gothic Medium CE;}{\f1008\fswiss\fcharset204\fprq2 Franklin Gothic Medium Cyr;}{\f1010\fswiss\fcharset161\fprq2 Franklin Gothic Medium Greek;} +{\f1011\fswiss\fcharset162\fprq2 Franklin Gothic Medium Tur;}{\f1014\fswiss\fcharset186\fprq2 Franklin Gothic Medium Baltic;}{\f1017\froman\fcharset238\fprq2 Palatino Linotype CE;}{\f1018\froman\fcharset204\fprq2 Palatino Linotype Cyr;} +{\f1020\froman\fcharset161\fprq2 Palatino Linotype Greek;}{\f1021\froman\fcharset162\fprq2 Palatino Linotype Tur;}{\f1024\froman\fcharset186\fprq2 Palatino Linotype Baltic;}{\f1025\froman\fcharset163\fprq2 Palatino Linotype (Vietnamese);} +{\f1047\fswiss\fcharset238\fprq2 Microsoft Sans Serif CE;}{\f1048\fswiss\fcharset204\fprq2 Microsoft Sans Serif Cyr;}{\f1050\fswiss\fcharset161\fprq2 Microsoft Sans Serif Greek;}{\f1051\fswiss\fcharset162\fprq2 Microsoft Sans Serif Tur;} +{\f1052\fbidi \fswiss\fcharset177\fprq2 Microsoft Sans Serif (Hebrew);}{\f1053\fbidi \fswiss\fcharset178\fprq2 Microsoft Sans Serif (Arabic);}{\f1054\fswiss\fcharset186\fprq2 Microsoft Sans Serif Baltic;} +{\f1055\fswiss\fcharset163\fprq2 Microsoft Sans Serif (Vietnamese);}{\f1056\fswiss\fcharset222\fprq2 Microsoft Sans Serif (Thai);}{\f1297\froman\fcharset238\fprq2 AmerType Md BT CE;}{\f1300\froman\fcharset161\fprq2 AmerType Md BT Greek;} +{\f1301\froman\fcharset162\fprq2 AmerType Md BT Tur;}{\f1307\fswiss\fcharset238\fprq2 AvantGarde Md BT CE;}{\f1310\fswiss\fcharset161\fprq2 AvantGarde Md BT Greek;}{\f1311\fswiss\fcharset162\fprq2 AvantGarde Md BT Tur;} +{\f1317\fswiss\fcharset238\fprq2 AvantGarde Bk BT CE;}{\f1320\fswiss\fcharset161\fprq2 AvantGarde Bk BT Greek;}{\f1321\fswiss\fcharset162\fprq2 AvantGarde Bk BT Tur;}{\f1327\froman\fcharset238\fprq2 Benguiat Bk BT CE;} +{\f1330\froman\fcharset161\fprq2 Benguiat Bk BT Greek;}{\f1331\froman\fcharset162\fprq2 Benguiat Bk BT Tur;}{\f1337\fdecor\fcharset238\fprq2 BernhardFashion BT CE;}{\f1340\fdecor\fcharset161\fprq2 BernhardFashion BT Greek;} +{\f1341\fdecor\fcharset162\fprq2 BernhardFashion BT Tur;}{\f1347\froman\fcharset238\fprq2 BernhardMod BT CE;}{\f1350\froman\fcharset161\fprq2 BernhardMod BT Greek;}{\f1351\froman\fcharset162\fprq2 BernhardMod BT Tur;} +{\f1357\fswiss\fcharset238\fprq2 BankGothic Md BT CE;}{\f1360\fswiss\fcharset161\fprq2 BankGothic Md BT Greek;}{\f1361\fswiss\fcharset162\fprq2 BankGothic Md BT Tur;}{\f1367\fdecor\fcharset238\fprq2 Bremen bd BT CE;} +{\f1370\fdecor\fcharset161\fprq2 Bremen bd BT Greek;}{\f1371\fdecor\fcharset162\fprq2 Bremen bd BT Tur;}{\f1397\fswiss\fcharset238\fprq2 CopprplGoth bd BT CE;}{\f1400\fswiss\fcharset161\fprq2 CopprplGoth bd BT Greek;} +{\f1401\fswiss\fcharset162\fprq2 CopprplGoth bd BT Tur;}{\f1417\fswiss\fcharset238\fprq2 Futura Md BT CE;}{\f1420\fswiss\fcharset161\fprq2 Futura Md BT Greek;}{\f1421\fswiss\fcharset162\fprq2 Futura Md BT Tur;} +{\f1427\fdecor\fcharset238\fprq2 FuturaBlack BT CE;}{\f1430\fdecor\fcharset161\fprq2 FuturaBlack BT Greek;}{\f1431\fdecor\fcharset162\fprq2 FuturaBlack BT Tur;}{\f1437\fswiss\fcharset238\fprq2 Futura Lt BT CE;} +{\f1440\fswiss\fcharset161\fprq2 Futura Lt BT Greek;}{\f1441\fswiss\fcharset162\fprq2 Futura Lt BT Tur;}{\f1447\fswiss\fcharset238\fprq2 Futura XBlk BT CE;}{\f1450\fswiss\fcharset161\fprq2 Futura XBlk BT Greek;} +{\f1451\fswiss\fcharset162\fprq2 Futura XBlk BT Tur;}{\f1457\fdecor\fcharset238\fprq2 GoudyHandtooled BT CE;}{\f1460\fdecor\fcharset161\fprq2 GoudyHandtooled BT Greek;}{\f1461\fdecor\fcharset162\fprq2 GoudyHandtooled BT Tur;} +{\f1467\froman\fcharset238\fprq2 GoudyOlSt BT CE;}{\f1470\froman\fcharset161\fprq2 GoudyOlSt BT Greek;}{\f1471\froman\fcharset162\fprq2 GoudyOlSt BT Tur;}{\f1477\fswiss\fcharset238\fprq2 Humanst521 BT CE;} +{\f1480\fswiss\fcharset161\fprq2 Humanst521 BT Greek;}{\f1481\fswiss\fcharset162\fprq2 Humanst521 BT Tur;}{\f1487\fswiss\fcharset238\fprq2 Kabel Bk BT CE;}{\f1490\fswiss\fcharset161\fprq2 Kabel Bk BT Greek;} +{\f1491\fswiss\fcharset162\fprq2 Kabel Bk BT Tur;}{\f1497\fswiss\fcharset238\fprq2 Kabel Ult BT CE;}{\f1500\fswiss\fcharset161\fprq2 Kabel Ult BT Greek;}{\f1501\fswiss\fcharset162\fprq2 Kabel Ult BT Tur;} +{\f1527\fscript\fcharset238\fprq2 OzHandicraft BT CE;}{\f1530\fscript\fcharset161\fprq2 OzHandicraft BT Greek;}{\f1531\fscript\fcharset162\fprq2 OzHandicraft BT Tur;}{\f1537\froman\fcharset238\fprq2 PosterBodoni BT CE;} +{\f1540\froman\fcharset161\fprq2 PosterBodoni BT Greek;}{\f1541\froman\fcharset162\fprq2 PosterBodoni BT Tur;}{\f1547\froman\fcharset238\fprq2 Serifa BT CE;}{\f1550\froman\fcharset161\fprq2 Serifa BT Greek;}{\f1551\froman\fcharset162\fprq2 Serifa BT Tur;} +{\f1557\froman\fcharset238\fprq2 Serifa Th BT CE;}{\f1560\froman\fcharset161\fprq2 Serifa Th BT Greek;}{\f1561\froman\fcharset162\fprq2 Serifa Th BT Tur;}{\f1567\fscript\fcharset238\fprq2 English111 Vivace BT CE;} +{\f1570\fscript\fcharset161\fprq2 English111 Vivace BT Greek;}{\f1571\fscript\fcharset162\fprq2 English111 Vivace BT Tur;}{\f1577\froman\fcharset238\fprq2 Souvenir Lt BT CE;}{\f1580\froman\fcharset161\fprq2 Souvenir Lt BT Greek;} +{\f1581\froman\fcharset162\fprq2 Souvenir Lt BT Tur;}{\f1587\fscript\fcharset238\fprq2 Staccato222 BT CE;}{\f1590\fscript\fcharset161\fprq2 Staccato222 BT Greek;}{\f1591\fscript\fcharset162\fprq2 Staccato222 BT Tur;} +{\f1597\fswiss\fcharset238\fprq2 Swiss911 XCm BT CE;}{\f1600\fswiss\fcharset161\fprq2 Swiss911 XCm BT Greek;}{\f1601\fswiss\fcharset162\fprq2 Swiss911 XCm BT Tur;}{\f1607\fscript\fcharset238\fprq2 TypoUpright BT CE;} +{\f1610\fscript\fcharset161\fprq2 TypoUpright BT Greek;}{\f1611\fscript\fcharset162\fprq2 TypoUpright BT Tur;}{\f1617\froman\fcharset238\fprq2 ZapfEllipt BT CE;}{\f1620\froman\fcharset161\fprq2 ZapfEllipt BT Greek;} +{\f1621\froman\fcharset162\fprq2 ZapfEllipt BT Tur;}{\f1627\fswiss\fcharset238\fprq2 Zurich Ex BT CE;}{\f1630\fswiss\fcharset161\fprq2 Zurich Ex BT Greek;}{\f1631\fswiss\fcharset162\fprq2 Zurich Ex BT Tur;} +{\f1637\fswiss\fcharset238\fprq2 Zurich BlkEx BT CE;}{\f1640\fswiss\fcharset161\fprq2 Zurich BlkEx BT Greek;}{\f1641\fswiss\fcharset162\fprq2 Zurich BlkEx BT Tur;}{\f1686\fswiss\fcharset222\fprq2 Browallia New (Thai);} +{\f1937\fswiss\fcharset238\fprq2 Myriad Condensed Web CE;}{\f1941\fswiss\fcharset162\fprq2 Myriad Condensed Web Tur;}{\f1944\fswiss\fcharset186\fprq2 Myriad Condensed Web Baltic;}{\f1947\fswiss\fcharset238\fprq2 Myriad Web CE;} +{\f1951\fswiss\fcharset162\fprq2 Myriad Web Tur;}{\f1954\fswiss\fcharset186\fprq2 Myriad Web Baltic;}{\f1957\froman\fcharset238\fprq2 TITUS Cyberbit Basic CE;}{\f1958\froman\fcharset204\fprq2 TITUS Cyberbit Basic Cyr;} +{\f1960\froman\fcharset161\fprq2 TITUS Cyberbit Basic Greek;}{\f1961\froman\fcharset162\fprq2 TITUS Cyberbit Basic Tur;}{\f1962\fbidi \froman\fcharset177\fprq2 TITUS Cyberbit Basic (Hebrew);} +{\f1963\fbidi \froman\fcharset178\fprq2 TITUS Cyberbit Basic (Arabic);}{\f1964\froman\fcharset186\fprq2 TITUS Cyberbit Basic Baltic;}{\f1965\froman\fcharset163\fprq2 TITUS Cyberbit Basic (Vietnamese);} +{\f1966\froman\fcharset222\fprq2 TITUS Cyberbit Basic (Thai);}{\f1981\fdecor\fcharset162\fprq2 Allegro BT Tur;}{\f1987\fswiss\fcharset238\fprq2 Arial Narrow CE;}{\f1988\fswiss\fcharset204\fprq2 Arial Narrow Cyr;} +{\f1990\fswiss\fcharset161\fprq2 Arial Narrow Greek;}{\f1991\fswiss\fcharset162\fprq2 Arial Narrow Tur;}{\f1994\fswiss\fcharset186\fprq2 Arial Narrow Baltic;}{\f1997\froman\fcharset238\fprq2 Book Antiqua CE;} +{\f1998\froman\fcharset204\fprq2 Book Antiqua Cyr;}{\f0\froman\fcharset161\fprq2 Book Antiqua Greek;}{\f2001\froman\fcharset162\fprq2 Book Antiqua Tur;}{\f2004\froman\fcharset186\fprq2 Book Antiqua Baltic;} +{\f2007\froman\fcharset238\fprq2 Bookman Old Style CE;}{\f2008\froman\fcharset204\fprq2 Bookman Old Style Cyr;}{\f2010\froman\fcharset161\fprq2 Bookman Old Style Greek;}{\f2011\froman\fcharset162\fprq2 Bookman Old Style Tur;} +{\f2014\froman\fcharset186\fprq2 Bookman Old Style Baltic;}{\f2017\fswiss\fcharset238\fprq2 Century Gothic CE;}{\f2018\fswiss\fcharset204\fprq2 Century Gothic Cyr;}{\f2020\fswiss\fcharset161\fprq2 Century Gothic Greek;} +{\f2021\fswiss\fcharset162\fprq2 Century Gothic Tur;}{\f2024\fswiss\fcharset186\fprq2 Century Gothic Baltic;}{\f2027\fswiss\fcharset238\fprq2 Haettenschweiler CE;}{\f2028\fswiss\fcharset204\fprq2 Haettenschweiler Cyr;} +{\f2030\fswiss\fcharset161\fprq2 Haettenschweiler Greek;}{\f2031\fswiss\fcharset162\fprq2 Haettenschweiler Tur;}{\f2034\fswiss\fcharset156\fprq2 Haettenschweiler Baltic;}{\f2047\fscript\fcharset238\fprq2 Monotype Corsiva CE;} +{\f2048\fscript\fcharset204\fprq2 Monotype Corsiva Cyr;}{\f2050\fscript\fcharset161\fprq2 Monotype Corsiva Greek;}{\f2051\fscript\fcharset162\fprq2 Monotype c2\fprq2 Monotype Corsiva Tur;}{\f2054\fscript\fcharset186\fprq2 Monotype Corsiva Baltic;} +{\f2087\fswiss\fcharset238\fprq2 MS Reference Sans Serif CE;}{\f2088\fswiss\fcharset204\fprq2 MSReference Sans Serif Cyr;}{\f2090\fswiss\fcharset161\fprq2 MS Reference Sans Serif Greek;}{\f2091\fswiss\fcharset162\fprq2 MS Reference Sans Serif Tur;} +{\f2094\fswiss\fcharset186\fprq2 MS Reference Sans Serif Baltic;}{\f2095\fswiss\fcharset163\fprq2 MS Reference Sans Serif (Vietnamese);}{\f2727\fswiss\fcharset238\fprq2 Arial ce CE;}{\f2728\fswiss\fcharset204\fprq2 Arial ce Cyr;} +{\f2730\fswiss\fcharset161\fprq2 Arial ce Greek;}{\f2731\fswiss\fcharset162\fprq2 Arial ce Tur;}{\f2732\fbidi \fswiss\fcharset177\fprq2 Arial ce (Hebrew);}{\f2733\fbidi \fswiss\fcharset178\fprq2 Arial ce (Arabic);} +{\f2734\fswiss\fcharset186\fprq2 Arial ce Baltic;}{\f2735\fswiss\fcharset163\fprq2 Arial ce (Vietnamese);}{\f2737\fswiss\fcharset238\fprq2 Arial CYR CE;}{\f2738\fswiss\fcharset204\fprq2 Arial CYR Cyr;}{\f2740\fswiss\fcharset161\fprq2 Arial CYR Greek;} +{\f2741\fswiss\fcharset162\fprq2 Arial CYR Tur;}{\f2742\fbidi \fswiss\fcharset177\fprq2 Arial CYR (Hebrew);}{\f2743\fbidi \fswiss\fcharset178\fprq2 Arial CYR (Arabic);}{\f2744\fswiss\fcharset186\fprq2 Arial CYR Baltic;} +{\f2745\fswiss\fcharset163\fprq2 Arial CYR (Vietnamese);}{\f2747\fswiss\fcharset238\fprq2 Arial Greek CE;}{\f2748\fswiss\fcharset204\fprq2 Arial Greek Cyr;}{\f2750\fswiss\fcharset161\fprq2 Arial Greek Greek;} +{\f2751\fswiss\fcharset162\fprq2 Arial Greek Tur;}{\f2752\fbidi \fswiss\fcharset177\fprq2 Arial Greek (Hebrew);}{\f2753\fbidi \fswiss\fcharset178\fprq2 Arial Greek (Arabic);}{\f2754\fswiss\fcharset186\fprq2 Arial Greek Baltic;} +{\f2755\fswiss\fcharset163\fprq2 Arial Greek (Vietnamese);}{\f2757\fswiss\fcharset238\fprq2 Arial TUR CE;}{\f2758\fswiss\fcharset204\fprq2 Arial TUR Cyr;}{\f2760\fswiss\fcharset161\fprq2 Arial TUR Greek;}{\f2761\fswiss\fcharset162\fprq2 Arial TUR Tur;} +{\f2762\fbidi \fswiss\fcharset177\fprq2 Arial TUR (Hebrew);}{\f2763\fbidi \fswiss\fcharset178\fprq2 Arial TUR (Arabic);}{\f2764\fswiss\fcharset186\fprq2 Arial TUR Baltic;}{\f2765\fswiss\fcharset163\fprq2 Arial TUR (Vietnamese);} +{\f2767\fswiss\fcharset238\fprq2 Arial Baltic CE;}{\f2768\fswiss\fcharset204\fprq2 Arial Baltic Cyr;}{\f2770\fswiss\fcharset161\fprq2 Arial Baltic Greek;}{\f2771\fswiss\fcharset162\fprq2 Arial Baltic Tur;} +{\f2772\fbidi \fswiss\fcharset177\fprq2 Arial Baltic (Hebrew);}{\f2773\fbidi \fswiss\fcharset178\fprq2 Arial Baltic (Arabic);}{\f2774\fswiss\fcharset186\fprq2 Arial Baltic Baltic;}{\f2775\fswiss\fcharset163\fprq2 Arial Baltic (Vietnamese);} +{\f2777\fmodern\fcharset238\fprq1 Courier New ce CE;}{\f2778\fmodern\fcharset204\fprq1 Courier New ce Cyr;}{\f2780\fmodern\fcharset161\fprq1 Courier New ce Greek;}{\f2781\fmodern\fcharset162\fprq1 Courier New ce Tur;} +{\f2782\fbidi \fmodern\fcharset177\fprq1 Courier New ce (Hebrew);}{\f2783\fbidi \fmodern\fcharset178\fprq1 Courier New ce (Arabic);}{\f2784\fmodern\fcharset186\fprq1 Courier New ce Baltic;}{\f2785\fmodern\fcharset163\fprq1 Courier New ce (Vietnamese);} +{\f2787\fmodern\fcharset238\fprq1 Courier New CYR CE;}{\f2788\fmodern\fcharset204\fprq1 Courier New CYR Cyr;}{\f2790\fmodern\fcharset161\fprq1 Courier New CYR Greek;}{\f2791\fmodern\fcharset162\fprq1 Courier New CYR Tur;} +{\f2792\fbidi \fmodern\fcharset177\fprq1 Courier New CYR (Hebrew);}{\f2793\fbidi \fmodern\fcharset178\fprq1 Courier New CYR (Arabic);}{\f2794\fmodern\fcharset186\fprq1 Courier New CYR Baltic;} +{\f2795\fmodern\fcharset163\fprq1 Courier New CYR (Vietnamese);}{\f2797\fmodern\fcharset238\fprq1 Courier New Greek CE;}{\f2798\fmodern\fcharset204\fprq1 Courier New Greek Cyr;}{\f2800\fmodern\fcharset161\fprq1 Courier New Greek Greek;} +{\f2801\fmodern\fcharset162\fprq1 Courier New Greek Tur;}{\f2802\fbidi \fmodern\fcharset177\fprq1 Courier New Greek (Hebrew);}{\f2803\fbidi \fmodern\fcharset178\fprq1 Courier New Greek (Arabic);}{\f2804\fmodern\fcharset186\fprq1 Courier New Greek Baltic;} +{\f2805\fmodern\fcharset163\fprq1 Courier New Greek (Vietnamese);}{\f2807\fmodern\fcharset238\fprq1 Courier New TUR CE;}{\f2808\fmodern\fcharset204\fprq1 Courier New TUR Cyr;}{\f2810\fmodern\fcharset161\fprq1 Courier New TUR Greek;} +{\f2811\fmodern\fcharset162\fprq1 Courier New TUR Tur;}{\f2812\fbidi \fmodern\fcharset177\fprq1 Courier New TUR (Hebrew);}{\f2813\fbidi \fmodern\fcharset178\fprq1 Courier New TUR (Arabic);}{\f2814\fmodern\fcharset186\fprq1 Courier New TUR Baltic;} +{\f2815\fmodern\fcharset163\fprq1 Courier New TUR (Vietnamese);}{\f2817\fmodern\fcharset238\fprq1 Courier New Baltic CE;}{\f2818\fmodern\fcharset204\fprq1 Courier New Baltic Cyr;}{\f2820\fmodern\fcharset161\fprq1 Courier New Baltic Greek;} +{\f2821\fmodern\fcharset162\fprq1 Courier New Baltic Tur;}{\f2822\fbidi \fmodern\fcharset177\fprq1 Courier New Baltic (Hebrew);}{\f2823\fbidi \fmodern\fcharset178\fprq1 Courier New Baltic (Arabic);} +{\f2824\fmodern\fcharset186\fprq1 Courier New Baltic Baltic;}{\f2825\fmodern\fcharset163\fprq1 Courier New Baltic (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255; +\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; +\red255\green255\blue255;}{\stylesheet{\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sautoupd Normal;}{ +\s1\ql \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch \af0\afs28\alang1037 \ltrch \fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 1;}{ +\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \sautoupd heading 2;}{ +\s3\ql \fi180\li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 3;}{ +\s4\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel3\adjustright\rin0\lin0\itap0 \rtlch \af4905601394584691289\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 4;}{\s5\qc \li0\ri0\sl480\slmult1 +\keepn\widctlpar\tx360\faauto\outlinelevel4\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 5;}{\s6\qj \li0\ri0\sl480\slmult1\keepn\widctlpar +\tx360\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 6;}{\s7\ql \li0\ri0\sl480\slmult1\keepn\widctlpar +\tx360\faauto\outlinelevel6\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 7;}{\s8\ql \li0\ri0\sl480\slmult1\keepn\widctlpar +\tx360\faauto\outlinelevel7\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 8;}{\s9\qj \li270\ri0\sl480\slmult1\keepn\widctlpar +\tx360\tx450\faauto\outlinelevel8\adjustright\rin0\lin270\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 heading 9;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv +\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs20 \ltrch \fs20\lang1024\langfe1024\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext15 \sautoupd \ssemihidden \styrsid1276346 footnote text;}{\*\cs16 \additive \rtlch \af0 \ltrch \f0\super +\sbasedon10 \ssemihidden footnote reference;}{\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext17 \ssemihidden +endnote text;}{\*\cs18 \additive \rtlch \af0 \ltrch \f0\super \sbasedon10 \ssemihidden endnote reference;}{\*\cs19 \additive \rtlch \af0 \ltrch \f0 \sbasedon10 line number;}{\s20\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext20 Body Text;}{\s21\qj \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext21 Body Text 2;}{\s22\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 +\ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext22 header;}{\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext23 footer;}{\*\cs24 \additive \rtlch \af0 \ltrch \f0 \sbasedon10 page number;}{\s25\ql \fi180\li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext25 Body Text Indent 2;}{\s26\ql \fi-342\li342\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin342\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext26 Body Text Indent 3;}{\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext27 \sautoupd SectionTitle;}{\s28\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch \af0\afs28\alang1037 \ltrch +\fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon1 \snext28 ChapterTitle;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\listtable{\list\listtemplateid976804938{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers +\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2 +\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers +\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid33510586}{\list\listtemplateid991314500\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0 +{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fbias0 \fi-360\li720\jclisttab\tx4606266560638978726\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\leveltemplateid67698713\'04\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\llvelindent0{\leveltext\leveltemplateid67698715 +\'02\'02.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers +\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-180\li4320 +\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 +}{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid74590232} +{\list\listtemplateid1954683936{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 } +{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levempace0\mwvelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1 +\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040 +\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2 +\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid206114988}{\list\listtemplateid979906146 +{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2 +\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace0\levelindent0'02\'{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320 +\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid243488594}{\list\listtemplateid163372730{\listlevel\levelnfc2\levelnfcn47\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers +\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600 +\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'2861763102839165454\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid437989138}{\list\listtemplateid1371811990{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers +\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880 +\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2 +\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers +\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid517618338}{\list\listtemplateid-645110308{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;} +\rtlch \af0 \ltrch \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch +\af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid612251227}{\list\listtemplateid-228141650{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch \af0\afs24 +\ltrch \fs24\loch\af0\hich\af0\dbch\af0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fbias0 +\fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch +\af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid615142110}{\list\listtemplateid1838054828{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch \af0\afs24 +\ltrch \fs24\loch\af0\hich\af0\dbch\af0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch +\af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'64451;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid653685167}{\list\listtemplateid-76126330{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch +\f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5660 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid840199588}{\list\listtemplateid947139722{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch +\f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1369141075}{\list\listtemplateid-1217105034{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1422868756}{\list\listtemplateid-143252000{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1509370291}{\list\listtemplateid-1969874708{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1753815966}{\list\listtemplateid1327651104{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \%In360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1791701265}{\list\listtemplateid-1766442430{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li983039094165105226\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1842699471}{\list\listtemplateid-1309088930{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch \af0\afs24 +\ltrch \fs24\loch\af0\hich\af0\dbch\af0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li1440\jcliuttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160 +\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2 +\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel}{\velnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace \levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch +\af0 \ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1875344955}{\list\listtemplateid1459238644{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 } +{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2 +\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\levelspace360\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 +\ltrch \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1893687403}{\list\listtemplateid2063605328{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid1987978106}{\list\listtemplateid-1812984828{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'03\'00. ;}{\levelnumbers\'01;}\ltrch \afs2 +\rtlch \f0\fs24\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li1440 +\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li2160\jclisttab\tx2160\lin2160 }{\listlevel +\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0 +\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext +\'02\'06.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\rtlch \af0 \ltrch +\fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc2\levelnfcn47\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}\ltrch \afs2 \rtlch \f0\fs24 \fi-180\li6480 +\jclisttab\tx6480\lin6480 }{\listname ;}\listid2144618675}}{\*\listoverridetable{\listoverride\listid1875344955\listoverridecount0\ls1}{\listoverride\listid1369141075\listoverridecount0\ls2}{\listoverride\listid653685167\listoverridecount0\ls3} +{\listoverride\listid1987978106\listoverridecount0\ls4}{\listoverride\listid840199588\listoverridecount0\ls5}{\listoverride\listid1893687403\listoverridecount0\ls6}{\listoverride\listid1422868756\listoverridecount0\ls7}{\listoverride\listid517618338 +\listoverridecount0\ls8}{\listoverride\listid243488594\listoverridecount0\ls9}{\listoverride\listid612251227\listoverridecount0\ls10}{\listoverride\listid437989138\listoverridecount0\ls11}{\listoverride\listid615142110\listoverridecount0\ls12} +{\listoverride\listid1842699471\listoverridecount0\ls13}{\listoverride\listid206114988\listoverridecount0\ls14}{\listoverride\listid1509370291\listoverridecount0\ls15}{\listoverride\listid2144618675\listoverridecount0\ls16}{\listoverride\listid1791701265 +\listoverridecount0\ls17}{\listoverride\listid33510586\listoverridecount0\ls18}{\listoverride\listid1753815966\listoverridecount0\ls19}{\listoverride\listid74590232\listoverridecount0\ls20}}{\*\revtbl {Unknown;}}{\*\rsidtbl \rsid8246\rsid10416\rsid201019\rsid280303 +\rsid534005\rsid546867\rsid550161\rsid554163\rsid791178\rsid802467\rsid995470\rsid1194561\rsid1276346\rsid1330909\rsid1377594\rsid1378156\rsid1531410\rsid1648584\rsid1663324\rsid1665242\rsid1719748\rsid1781117\rsid1847736\rsid1867703\rsid1924178 +\rsid1932179\rsid1975058\rsid2187587\rsid2188025\rsid2189740\rsid2239998\rsid2313833\rsid2584292\rsid2760246\rsid2768779\rsid2970695\rsid3016977\rsid3025761\rsid3028086\rsid3043295\rsid3235903\rsid3304868\rsid3308931\rsid3356114\rsid3427404\rsid3553674 +\rsid3560544\rsid3747336\rsid3813420\rsid3828797\rsid3868273\rsid3889465\rsid3935689\rsid4013963\rsid4027135\rsid4071356\rsid4140030\rsid4141745\rsid4143959\rsid4152804\rsid4276622\rsid4335547\rsid4342917\rsid4403687\rsid4483860\rsid4551223\rsid4671111 +\rsid4678027\rsid4922460\rsid4924362\rsid4945530\rsid5066409\rsid5120557\rsid5250407\rsid5340492\rsid5400671\rsid5536099\rsid5580553\rsid5601694\rsid5833938\rsid5848573\rsid5905669\rsid5993921\rsid6120560\rsid6357166\rsid6452855\rsid6504771\rsid6581237 +\rsid6584119\rsid6707373\rsid6771793\rsid6774100\rsid6817976\rsid6895881\rsid6907170\rsid6950160\rsid6955097\rsid7099497\rsid7104208\rsid7306120\rsid7347137\rsid7368773\rsid7542981\rsid7613718\rsid7799459\rsid7818307\rsid7889884\rsid7895630\rsid8062247 +\rsid8080853\rsid8138310\rsid8154364\rsid8259293\rsid8264474\rsid8537775\rsid8601107\rsid8745540\rsid8983004\rsid8985984\rsid9123678\rsid9207470\rsid9263443\rsid9385017\rsid9513810\rsid9525098\rsid9635323\rsid9835367\rsid10048331\rsid10245123\rsid10372219 +\rsid10430484\rsid10445282\rsid10445850\rsid10509721\rsid10636625\rsid10636918\rsid10695270\rsid10701901\rsid10749649\rsid10754532\rsid10764079\rsid10774769\rsid10832538\rsid10836684\rsid10882959\rsid11084060\rsid11090010\rsid11163277\rsid11274944 +\rsid11349039\rsid11416988\rsid11420266\rsid11472211\rsid11472258\rsid11485985\rsid11552035\rsid11696930\rsid11747594\rsid11803606\rsid11890365\rsid12137753\rsid12144565\rsid12148583\rsid12323918\rsid12352864\rsid12391429\rsid12405329\rsid12603968 +\rsid12651379\rsid12672551\rsid12803034\rsid12856449\rsid13109360\rsid13182277\rsid13451168\rsid13653733\rsid13720635\rsid13765936\rsid13771199\rsid13778447\rsid13917846\rsid13964402\rsid14164988\rsid14295563\rsid14375923\rsid14447357\rsid14615051 +\rsid14631613\rsid14752387\rsid14948990\rsid15033033\rsid15094550\rsid15104734\rsid15211710\rsid15341698\rsid15402994\rsid15408536\rsid15421667\rsid15547050\rsid15624732\rsid15625630\rsid15693328\rsid16192946\rsid16200598\rsid16212167\rsid16327472 +\rsid16335552\rsid16338915\rsid16582730}{\*\generator Microsoft Word 11.0.5604;}{\info{\title Chapter 11}{\author Fern and Joseph Seckbach}{\operator Shmuel Himelstein}{\creatim\yr2003\mo1\dy6\hr10\min35}{\revtim\yr2004\mo3\dy14\hr11\min13} +{\printim\yr2002\mo12\dy23\hr14\min14}{\version20}{\edmins1215}{\nofpages97}{\nofwords12776}{\nofchars72829}{\*\company TechnTrans}{\nofcharsws85435}{\vern24689}}\paperw11906\paperh16838\margl1797\margr1797\margb1712\ltrsect +\widowctrl\ftnbj\aenddoc\pgnstart167\makebackup\margmirror\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3 +\jcompress\viewkind1\viewscale130\pgbrdrhead\pgbrdrfoot\nolnhtadjtbl\rsidroot12391429 \fet0{\*\ftnsep \ltrpar \pard\plain \ltrpar\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\par +\par }}{\*\ftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 ______ + +\par +\par +\par }}{\*\aftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\chftnsep +\par }}{\*\aftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\chftnsepc +\par }}\ltrpar \sectd \ltrsect\psz9\pgnrestart\pgnstarts167\linex0\headery709\footery709\colsx709\endnhere\sectdefaultcl\sftnbj {\header \ltrpar \pard\plain \ltrpar\s22\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ai\af0\afs18 \ltrch \i\fs18\insrsid4342917 Light and Consolation:}{\rtlch \af0\afs18 +\ltrch \fs18\insrsid4342917 Chapter Twelve +\par }}{\footer \ltrpar \pard\plain \ltrpar\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\pvpara\phmrg\posxc\posy0\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\rtlch \af0 \ltrch \cs24\insrsid4342917 PAGE }}{\fldrslt {\rtlch \af0 \ltrch \cs24\lang1024\langfe1024\noproof\insrsid15211710 174}}}{\rtlch \af0 \ltrch \cs24\insrsid4342917 + +\par }\pard \ltrpar\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid4342917 +\par }}{\*\pnseclvl1\pnucltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta ..}}{\*\pnseclvl2\pnord\pnqc\pnstart1\pnindent720\pnhang {\pntxta ..}}{\*\pnseclvl3\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxta ..}}{\*\pnseclvl4\pncard\pnqc\pnstart1\pnindent720\pnhang +{\pntxta )}}{\*\pnseclvl5\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pncard\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} +{\*\pnseclvl8\pncard\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1%nid%%nparlJ +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch \fs24\insrsid12391429\charrsid1781117 Chapter Twelve +\par }\pard\plain \ltrpar\s28\qc \li0\ri0\sb120\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch \af0\afs28\alang1037 \ltrch \fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0\afs24 \ltrch +\b\fs24\insrsid12391429\charrsid1781117 Condolences Not in the Presence of the Mourner +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 A. Written Condolences +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6357166 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 History of the Custom:}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Another customary way to comfort mourners is the writing of \'93condolence letters.\'94 This allows people unable to visit the home of the mourner during the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 shiv\rquote ah}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 to express the need they fe}{\rtlch \af0 \ltrch \insrsid6357166\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +l to offer their condolences, owing to their closeness to the deceased or the mourner. This custom arose as early as tenth-century Babylonia, as will be described below. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4342917 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 There is no uniform text for these letters. }{\rtlch \af0 \ltrch +\insrsid4342917\charrsid1781117 The c}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ontent and style vary from letter to letter, from place to place, and from era to era. Some writers intersperse their own words with biblical phrases, while others use talmudic quotations. There are those who try to provide solace to the mourner throu +gh philosophical statements, writing about the meaning of the death of man and the ways of mourning and comfort one hhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhh okhhok[dddc follow. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid11472211 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +While perusing these letters, the reader will be able to discern the different types of styles and the phrases used to express condolences among Jewish communities in different generations. These were the means }{\rtlch \af0 \ltrch +\insrsid11472211\charrsid1781117 to enable }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 people to express a complete Jewish worldview of the way one should approach death. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6357166 {\rtlch \af0 \ltrch \insrsid6357166\charrsid1781117 The }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93}{\rtlch \af0 \ltrch +\insrsid6357166\charrsid1781117 c}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ondolence letter\'94 literature}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab Words of condolence were also +written as the prelude to letters on various topics. It was customary to begin the letter with two or three lines of condolence and then to continue on with the other issues. We will not deal with that type of letter but only with those known to be \'93 +condolence letters,\'94 + written mainly to comfort the mourner (except for two letters: one from the eleventh century from which we learn of this custom in that period; the other written to Rabbi Moshe di Trani which is distinctive since it is an instance in which a + mourning student writes condolences to his mourning rabbi). At times it is difficult to distinguish precisely between a letter dealing with lamentation and eulogy that is replete with aphorisms of condolence and a letter of condolence replete with statem +e +nts of lamentation and eulogy. I wish to thank R. Y. Buchsenbaum who took the trouble to send me a list of manuscripts of condolence letters he possessed, some of which had appeared in his anthologies of letters and others which have remained in manuscrip +t + and have yet to be published. Owing to pressure of time and the scope of this volume, I chose to publish only a selection of them and will, God willing, write about them in the future. Another type of written condolences with which we will not deal is fo +und in the literature of }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 and eulogies. On the motifs of consolation in medieval Hebrew }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch +\af0 \ltrch \insrsid4342917 in Spain, see Y. Levin, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Al Mavet, }{\rtlch \af0 \ltrch \insrsid4342917 pp. 158\endash 163. He indicates a number of special motifs in words of consolation found in the Hebrew }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 of medieval Spain by Ibn }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Ezra}{\rtlch \af0 \ltrch \insrsid4342917 +, Yehuda Halevi, and Shemuel Hanagid, such as: watering the grave and the blessing for rain recited over it (secular poems, nr. 10, verses 25\endash +26), or the motif that death is not the end but rather the separation of the soul from the body, with the soul rising on high between the seraphim and the angels (}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Ibid}{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid5066409 .}{\rtlch \af0 \ltrch \insrsid4342917 +, poem nr. 29), and others. In the cross-references I have generally cited only one source from the Bible or talmudic literature. Even for some of those letters that came with cross-references, additional references have been added in the notes.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as a genre with its own distinctive style has not yet been the object of research. In this chapter we }{\rtlch \af0 \ltrch \insrsid11472211\charrsid1781117 only }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 intend to make the reader aware of another way commonly used in the past, and }{\rtlch \af0 \ltrch \insrsid11472211\charrsid1781117 which is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 still }{\rtlch \af0 \ltrch +\insrsid11472211\charrsid1781117 used }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 today, to console mourners. }{\rtlch \af0 \ltrch \insrsid11472211\charrsid1781117 Here w}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e present a number of letters that have distinctive characteristics, collected from }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Rishonim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 Aharonim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, and manuscripts of anthologies of letters; we survey their content and their structure, and we indicate the sources for the quotations the writers used. The letters are presented chronologically. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par In general one may say that the authors of the letters came from the culturally advanced sector of the Jewish community. Most of them were not only expert}{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 at composition and style but were pious Jews at home in the Bible, the Talmud, and }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 other }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 works of Jewish law as + well as thoroughly knowledgeable about the attitudes and language of the Sages. +\par +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \page [1] a Condolence Letter from a Gaon +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid3427404 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and }{\rtlch \ab\af0 \ltrch \b\insrsid6357166\charrsid1781117 its }{ +\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Recipient }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash J. Mann in his }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Texts and Studies}{\rtlch \ai\af0 \ltrch +\cs16\i\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 \tab Pp. 160\endash 161.}}}{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 presents the second half of this letter (from the end of the sixth }{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 tenet}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ) and attributes it to Rabbi Samuel b. Hophni (Sura}{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 Gaon}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , 996\endash 1012). In contrast to this, Rabbi S. Abramson} +{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid4678027 BA-Merkazim u-ba-Tefu}{\rtlch \ai\af0 \ltrch \i\cf2\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid4678027 z}{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid4678027 ot bi-Tekufat ha-Geonim}{\rtlch \af0 \ltrch \lang1031\langfe1@33\langnp10c1\insrsid4342917 , pp. 58\endash 72.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + offers the letter in its entirety and discusses it at length, casting doubts }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 about }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Mann\rquote s attribution of R. Samuel b. Hophni as the auth +or. He feels that the division of the letter into }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 \'93inyanim\'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (\'93}{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 tenets}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \'94) befits Rav Sa\rquote adiah Gaon (ben Joseph, head of the Sura yeshivah, 927\endash 942). Moreover, other places in this letter use the same language as occur}{\rtlch \af0 \ltrch +\insrsid3427404\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in R. Saadiah\rquote s }{\rtlch \ai\af3753975690556967661 \ltrch \i\insrsid12391429\charrsid1781117 Emunot ve-DE\rquote ot. }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Abramso +n }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 also }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 points out that this is the same writing style as }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 that of }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Rav Israel Gaon}{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the son of R. Samuel. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4071356 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab In any event, Abramson }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 is unable to } +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 totally resolve his doubt and cite}{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + support for this letter from statements by Rabbi Samuel ben Hophni}{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 He }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 conclude}{\rtlch \af0 \ltrch \insrsid280303\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : \'93 +If Rav Saadiah Gaon is the writer of this letter, it is not surprising. But if it is R. Samuel ben Hophni who is the author, then we must say that he use}{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 d}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the words of Rav Saadiah, and sometimes literally copied them. This is not impossible.\'94 The }{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 author }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 wrote th}{ +\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 is}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93condolence letter\'94 to a man whose son had died. In Abramson\rquote s view, \'93 +the son was not very young, for if that had been the case the writer would not have refrained from mentioning the }{\rtlch \af0 \ltrch \insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of }{\rtlch \af0 \ltrch +\insrsid3427404\charrsid1781117 \lquote }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the death of the children}{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 \rquote }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and its explanation. We also know that Rav Saadiah Gaon and Rav Samuel ben Hophni dealt with the }{\rtlch \af0 \ltrch \insrsid3427404\charrsid1781117 issue }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of children\rquote +s suffering and of their death in relation to the theological question treated by Muslim religious scholars.\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 61.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 Abramson }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 also fe}{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 l}{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 that \'93the recipient of the letter was not a }{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +orah scholar but was well versed in philosophy and literature (= ethics); for that reason we see that the gaon did not quote from the Sages}{\rtlch \af0 \ltrch \insrsid10774769\charrsid1781117 extensively}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , but put a positive slant on the need to }{\rtlch \af0 \ltrch \insrsid5993921\charrsid1781117 thank God for }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the bad the same way we }{\rtlch \af0 \ltrch +\insrsid5993921\charrsid1781117 thank Him }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the good}{\rtlch \af0 \ltrch \insrsid5993921\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid5993921\charrsid1781117 Thus, this letter }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 describe}{\rtlch \af0 \ltrch \insrsid5993921\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + the incident of R. Johanan whose ten sons died while he was still alive.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab See }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 5b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + The greater part of the letter consists of quotes from biblical passages and allusions to states by the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 maskilim }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \ai\af0 \ltrch +\i\insrsid4071356\charrsid1781117 \lquote }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mishpat ha-sekhel.}{\rtlch \ai\af0 \ltrch \i\insrsid4071356\charrsid1781117 \rquote }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The }{\rtlch +\ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 maskilim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid5993921\charrsid1781117 referred to here }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +were no doubt those concerned with \'93ethics\'94 (}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 adab}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ) who devoted chapters of their works to anxiety and suffering.\'94}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid9525098 BA-Merkazim u-ba-Tefuzot bi-Tekufat ha-Geonim}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 , pp. 60.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash This letter deals with four themes}{\rtlch \af0 \ltrch \insrsid7895630\charrsid1781117 :}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4678027 {\rtlch \af0 \ltrch \insrsid7895630\charrsid1781117 A. A}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 n }{\rtlch a0 \ltrch +\insrsid7895630\charrsid1781117 introduction }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 consisting of quotations of biblical verses }{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 which }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 describe the mourner\rquote s situation at the time of his suffering. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1665242 {\rtlch \af0 \ltrch \insrsid7895630\charrsid1781117 B. }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +The reason for the obligation to observe the laws and customs of mourning (these are actions commanded by the Creator, for which the mourner will be rewardedin the future. Conver +sely, acts not within the bounds of obligation are distasteful and it is forbidden to carry them out, even }{\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 in small measure}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ).}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid9525098 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab It is possible that the gaon is, + by allusion, coming out here against customs of mourning deriving from non-Jewish origin which took root among the Jewish dispersal (an explanation that differs from Abramson\rquote s, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Ibid}{\rtlch \ai\af0 +\ltrch \i\insrsid4342917\charrsid5066409 .}{\rtlch \af0 \ltrch \insrsid4342917 , p. 59). See }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Hilkhot Avelut}{\rtlch \af0 \ltrch \insrsid4342917 by R. }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel} +{\rtlch \af0 \ltrch \insrsid4342917 b. Hophni, p. 108: \'93and should he say: Is it permissible to act optionally in mourning by }{\rtlch \ab\af0 \ltrch \b\insrsid4342917 adding days to those legally prescribed}{\rtlch \af0 \ltrch \insrsid4342917 + mourning \emdash he should be told: \lquote Yes, it is permissible.\rquote \'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid16582730 {\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 C. }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +a person should not say that agony is a natural phenomenon }{\rtlch \af0 \ltrch \insrsid16582730\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 one cannot overcome, for the }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 maskilim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 teach a person to }{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 discontinue}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his suffering}{ +\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 I}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 f he }{\rtlch \af0 \ltrch +\insrsid4678027\charrsid1781117 could }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 not have such inner strength, they would not have so instructed him. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1665242 {\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 D. }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Ten }{\rtlch \af0 \ltrch +\insrsid1665242\charrsid1781117 basic }{\rtlch \af0 \ltrch \insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 s, }{\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 with supplementary }{\rtlch \af0 \ltrch +\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , which when understood and acted upon properly}{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 ,}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 can }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 guide the mourner to overcom}{\rtlch \af0 \ltrch \insrsid1665242\charrsid1781117 e}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 his suffering, namely: +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4678027 {\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 one}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 e}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the existence of God, all of whose actions are just and good}{\rtlch \af0 \ltrch \insrsid15402994\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid4678027\charrsid1781117 and to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 refrain from dwelling upon His attributes. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1378156 {\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 s two and three}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid4678027\charrsid1781117 e}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the correctness of God\rquote s action}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 zidduk ha-din} +{\rtlch \ai\af0 \ltrch \i\insrsid1378156\charrsid1781117 )}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ; }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch +\insrsid1378156\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the rightness of Divine judgment. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 four}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 es}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that God is the Creator of man and that He holds all souls in }{\rtlch \af0 \ltrch +\insrsid1378156\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is hands. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 five}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that we were not created to live forever, }{\rtlch \af0 \ltrch +\insrsid15402994\charrsid1781117 and that }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 our goal on this earth is to do what is right in the eyes of the Lord}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 ,}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15402994\charrsid1781117 so as }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to earn a place in the world to come. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 six}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + that death is the fate of every living thing; it cannot be avoided and there is no deliverance from it. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 seven}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 acknowledg}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that sadness and suffering are part of life in this world. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 eight}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash one who is mourning the death of his sons }{\rtlch \af0 \ltrch +\insrsid1378156\charrsid1781117 or }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 daughters must accept the fact and learn from the ways of the prophets and }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 zaddikim}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 whose children died during their lifetime}{\rtlch \af0 \ltrch \insrsid15402994\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 . +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 nine}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 realiz}{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that the death of the deceased is for his benefit. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 Tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ten}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{\rtlch \af0 \ltrch \insrsid1378156\charrsid1781117 to }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 accept the belief in the resurrection of the dead (the father will yet dwell with his children). +\par }\pard\plain \ltrpar\s21\qj \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Included in the presentation of portions of the letter are Abramson\rquote s comments. +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +\page }{\rtlch \ab\af156 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 :\sect }\sectd \ltrsect +\margbsxn1714\psz9\sbknone\linex0\headery709\footery709\colsx709\endnhere\sectdefaultcl\sftnbj {\header \ltrpar \pard\plain \ltrpar\s22\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ai\af0\afs18 \ltrch \i\fs18\insrsid4342917 Light and Consolation:}{\rtlch \af0\afs18 \ltrch \fs18\insrsid4342917 Chapter Twelve +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\par +\par }}{\footer \ltrpar \pard\plain \ltrpar\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\pvpara\phmrg\posxc\posy0\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\field{\*\fldinst {\rtlch \af0 \ltrch \cs24\insrsid4342917 PAGE }}{\fldrslt {\rtlch \af0 \ltrch \cs24\lang1024\langfe1024\noproof\insrsid15625630 220}}}{\rtlch \af0 \ltrch \cs24\insrsid4342917 + +\par }\pard \ltrpar\s23\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\tqc\tx4320\tqr\tx8640\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid4342917 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid4342917 +\par +\par }}{\*\pnseclvl1\pnucltr\pnqc\pnstart1\pnindent720\pnhang {\pntxta ..}}{\*\pnseclvl2\pnord\pnqc\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxta ..}}{\*\pnseclvl4\pncard\pnqc\pnstart1\pnindent720\pnhang +{\pntxta )}}{\*\pnseclvl5\pndec\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pncard\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} +{\*\pnseclvl8\pncard\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcltr\pnqc\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\ltrrow\trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 21\cell }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid554163 \rtlch +\af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid3553674\charrsid1781117 S}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 hould you ask how the worrier }{\rtlch \af156 \ltrch +\insrsid554163\charrsid1781117 is to}{\rtlch \af156 \ltrch \insrsid3553674\charrsid1781117 }{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 divert +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8138310 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 his anxiety and }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 how }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the one who sighs }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 is }{\rtlch \af0 \ltrch +\insrsid554163\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 cease }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his sigh}{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 ing}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , you will be told that the worry and sigh can be removed}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Ms. has } +{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'e5\'f0\'e0\'f0\'e7}{\rtlch \af0 \ltrch \insrsid4342917 , while it should have }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'e5\'e0\'f0\'e7}{\rtlch \af0 \ltrch \insrsid4342917 + ; it may be that erasure of the }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'f0}{\rtlch \af0 \ltrch \insrsid4342917 is indicated by points above and below in the manuscript..}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par by means of }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ten }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, some of them basic and some of them }{\rtlch \af0 \ltrch \insrsid3553674\charrsid1781117 secondary to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 them. The }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 first }{\rtlch \ab\af0 +\ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is that one should know +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that we and }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 [the departed] have }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 a Creator who is the }{\rtlch \af0 \ltrch \insrsid3553674\charrsid1781117 w}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 isest of the wise}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab This phraseology is found in }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Ha-Midrash ha-Gadol}{\rtlch \af0 \ltrch \insrsid4342917 on }{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid10509721 Genesis}{\rtlch \af0 \ltrch \insrsid4342917 48:3, p. }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'fa\'f9\'f1\'e2}{\rtlch \af0 \ltrch \insrsid4342917 (}{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid10509721 Genesis Rabba}{\rtlch \af0 \ltrch \insrsid4342917 , }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , without the word }{\ltrch \af262 \rtlch +\f262\fs20\lang1037\insrsid4342917 \'e7\'eb\'ee\'e9\'ed}{\rtlch \af0 \ltrch \insrsid4342917 .}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , a merciful }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 God }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 who is full of mercy, and that }{\rtlch \af0 \ltrch \insrsid3553674\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e created us with his lovingkindness}{\rtlch \af0 \ltrch +\insrsid8138310\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \nsrsXd12391429\charrsid1781117 25\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8138310 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +and does what is good for us and what will bring us closer to fearing }{\rtlch \af0 \ltrch \insrsid3553674\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im and to performing his service}{\rtlch \af0 \ltrch +\insrsid8138310\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8138310\charrsid1781117 Thus, }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 if}{\rtlch \af0 \ltrch +\insrsid3747336\charrsid1781117 He }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 knows that }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 being}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par wealthy and }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 having }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 children will bring us closer to holding}{\rtlch \af0 \ltrch \insrsid6907170\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 im in awe, He will make us wealthier and give us children, and if }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e know}{\rtlch \af0 \ltrch +\insrsid3747336\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11485985 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the}{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 se}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 will distance us from }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is service, }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 e will test us with poverty and try us by the death of our children. }{\rtlch \af0 \ltrch \insrsid11485985\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e must}{\rtlch \af0 \ltrch +\insrsid11485985\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par turn all our words to Him and not think a bad thought about any of }{\rtlch \af0 \ltrch \insrsid6907170\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is attributes and words, as it is written:}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 + 9:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Wise of heart +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and mighty in power \emdash who ever challenged Him and came out whole?}{\rtlch \af0 \ltrch \insrsid15211710 +\'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 So the man whom God makes rich, should thank }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 30\cell }\pard \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid6907170 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and one who is tested by poverty should also thank }{\rtlch \af0 \ltrch \insrsid10749649\charrsid1781117 H}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im and bless }{\rtlch \af0 \ltrch \insrsid10749649\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im}{\rtlch \af0 \ltrch \insrsid6907170\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid6907170\charrsid1781117 I}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 f his children or his relatives}{\rtlch \af0 \ltrch \insrsid6907170\charrsid1781117 should die}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 , he should take the yoke +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11485985 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of heaven upon himself for He has acted well toward him}{\rtlhi \af0 \ltrch +\insrsid8745540\charrsid1781117 . A}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 s our rabbis}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 9:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 said, \'93Man is bound to }{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 thank }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 [God] for the }{\rtlch \af0 \ltrch \insrsid11485985\charrsid1781117 bad}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8745540 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 even as he}{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 thanks}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab It is even cited in TB }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch +\af0 \ltrch \insrsid4342917 33b. In the mishnah }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 9:5 the version is \'93just as }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 he}{\rtlch \af0 \ltrch +\insrsid4342917 blesses\'85.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 Him}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for the good.\'94 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 second }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 is that we are obliged to know that our Creator +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8745540 {\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +just and acts in truth, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{ +\rtlch \af0 \ltrch \insrsid4342917 119:75.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4945530\charrsid1781117 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I know, }{\rtlch \af0 \ltrch +\insrsid8745540\charrsid1781117 O}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lord, that }{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 our rulings are just; rightly }{\rtlch \af0 +\ltrch \insrsid8745540\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ou have humbled me. }{\rtlch \af0 \ltrch \insrsid3747336\charrsid1781117 He }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +has no injustice before him and no evil,}{\rtlch \af0 \ltrch \insrsid15211710 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10509721 }{\rtlch \af0 \ltrch \insrsid4342917 5:5.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4945530\charrsid1781117 \lquote }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 For You are not a God who desires wickedness; evil cannot abide with You\'85}{\rtlch \af0 \ltrch +\insrsid4945530\charrsid1781117 \rquote \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 So i[f]\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 35\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid4276622 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 God chastise}{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8745540\charrsid1781117 one }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 with physical illness or through the death of his children or through }{\rtlch \af0 \ltrch \insrsid4945530\charrsid1781117 misery}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 or suffering, he should know that }{ +\rtlch \af0 \ltrch \insrsid5400671\charrsid1781117 [God] }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 has acted }{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 just[ly] +\par }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 with him }{\rtlch \af0 \ltrch \insrsid5400671\charrsid1781117 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 nd did }{\rtlch \af0 \ltrch \insrsid8154364\charrsid1781117 not }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 deprive}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721!Job}{ +\rtlch \af0 \ltrch \insrsid4342917 27:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 him of His justice, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 25:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 \'93}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 All the Lo}{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 rd\rquote s paths are steadfast love\'85.\'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 third }{\rtlch \ab\af0 \ltrch +\b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid4276622 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 That our creator }{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 granted }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 us our li}{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 ves}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the breath of our soul}{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 s}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 with great lovingkindness, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch\i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 42:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 \'93}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Who gave breath to +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid5400671 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the people upon it, and life to those who walk on}{\rtlch \af0 \ltrch +\insrsid5400671\charrsid1781117 it}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and whenever He }{\rtlch \af0 \ltrch +\insrsid5400671\charrsid1781117 wishes }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to, He will take our soul and gather our spirit and [the spirit] of our +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 sons and daughters, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 34:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 +\ltrch \insrsid4276622\charrsid1781117 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 If He but intends it, He can c}{\rtlch \af0 \ltrch \insrsid4276622\charrsid1781117 all back His spirit and breath.\'94}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid10836684\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he [}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 fourth }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 +\ltrch \insrsid10836684\charrsid1781117 is}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ] \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 40\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid10836684 {\rtlch \af0 \ltrch \insrsid10836684\charrsid1781117 E}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ven though we are the fathers of our children, behold their Creator is called their }{\rtlch \af0 \ltrch \insrsid10836684\charrsid1781117 F}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ather, for }{\rtlch \af0 +\ltrch \insrsid5400671\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e is the one who sust[ains] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid15211710 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 them in life and }{\rtlch \af0 \ltrch \insrsid5400671\charrsid1781117 is }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 the creator of their soul}{\rtlch \af0 \ltrch \insrsid1781117\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , as it is written:}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 + 63, 37.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af512 \ltrch \insrsid15211710 \'93}{\rtlch \af74 \ltrch \f74\insrsid10245123\charrsid1781117 For }{\rtlch \af74 \ltrch \f74\cf1\insrsid10245123\charrsid1781117 You are our}{\rtlch +\af74 \ltrch \f74\insrsid10245123\charrsid1781117 Father, though Abraham does not know us}{\rtlch \af74 \ltrch \f74\insrsid8080853\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85}{\rtlch \af0 \ltrch \insrsid15211710 \'94}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid10636625 B}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e[cause] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8080853 {\rtlch \af0 \ltrch \insrsid8080853\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e is our creator, }{\rtlch \af0 \ltrch +\insrsid8080853\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e rules over us to do His will with us and }{\rtlch \af0 \ltrch \insrsid8080853\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e possesses us and [our children]. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid15624732 {\rtlch \af0 \ltrch \insrsid8080853\charrsid1781117 I}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 n [his hand]}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Tentative reading; another possibility, \'93and [creator]\'94 +. The remnants of the characters in the manuscript do not allow one to make a definite decision here.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 are all our souls, as it is written:}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 12:6.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 In His hand is every living soul and the breath of all mankind,}{\rtlch \af0 \ltrch \insrsid15211710 +\'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and our souls are entrusted to }{\rtlch \af0 \ltrch \insrsid15624732\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is hand +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 31:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Into Your hand I entrust my spirit\'85.}{\rtlch \af0 \ltrch \insrsid15211710 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par And the }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 fifth }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is to know that our }{\rtlch \af0 \ltrch \insrsid15211710 C}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 reator\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \ceolx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 45\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid7099497 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 did not create us in thi +s world to live in it forever, but He created us to do what is good and right in [}{\rtlch \af0 \ltrch \insrsid7099497\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is ey]es for\'85 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid10636625 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that is intended}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnotc \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab For the time allotted to us.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for the world to come, as it is written:}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 \tab }{\rtlch \af0 \ltrch +\i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 21:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 He asked You for life; You granted it\'85.}{\rtlch \af0 \ltrch \insrsid15211710 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid10636625 T}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 his world is like the [week]days +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3304868 {\rtlch \af0 \ltrch \insrsid10636625 while }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the world to come is like the rest}{\rtlch \af0 +\ltrch \insrsid15624732\charrsid1781117 ing}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the Sabbath to become refreshed on it, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid10636918 Malach}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 i 3:20.}}} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 But for you who rvere My name}{\rtlch \af0 \ltrch \insrsid3304868\charrsid1781117 ,}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid3304868\charrsid1781117 the}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 sun }{\rtlch \af0 \ltrch \insrsid3304868\charrsid1781117 [of righteousness will arise]}{\rtlch \af0 \ltrch +\insrsid15211710 \'94}{\rtlch \af0 \ltrch \insrsid3304868\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85.The com[mandments], too, +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 are a path to the world to come and a trail for traveling from this world to the world to come. +\par The }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 sixth }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + is that we should know that one cannot flee from death and that no living thing can be spared from it +\par as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch +\i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid10636918 Psalms }{\ytlci \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 89:49.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 What\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow5\irowband5\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 50\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid4152804 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 man can live and not see death\'85.}{\rtlch \af0 +\ltrch \insrsid15211710 \'94 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 And as for our forefathers and our prophets, have they }{\rtlch \af0 \ltrch \insrsid4152804\charrsid1781117 not }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +all died, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang0037\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \insrsid4342917\charrsid10636918 Zechariah}{\rtlch +\af0 \ltrch \insrsid4342917 1:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Where are your fathers +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 now?\'85.}{\rtlch \af0 \ltrch \insrsid15211710 \'94 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +But some of them will die in youth and some will die as adults and some will die in old age, as it is written:}{\rtlch \af0\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 21:23\endash 26.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid15211710 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [One man dies] in robust health\'85his pails are full of milk and the marrow\'85another dies embittered\'85}{\rtlch \af0 \ltrch \insrsid15211710 \'94}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 +\par They both l[ie]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Mann\rquote s section begins with this line.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 in the [d]u[st] \'85.And we must all die}{\rtlch \af0 \ltrch \insrsid9123678 ;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang3082\langfe1033\langnp3082\insrsid4342917 \tab 2 }{\rtlch \ai\af0 \ltrch \i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid4403687 Samuel}{\rtlch \ai\af0 \ltrch \i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid10636918 }{\rtlch \af0 +\ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 14:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \line we are like water poured out on the ground\'85 +\par }{\rtlch \af0 \ltrch \insrsid4152804\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 seventh}{\rtlch \ab\af0 \ltrch \b\insrsid4152804\charrsid1781117 tenet}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 that we know that the bad things in this [wor]l[d] are man[y]\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow6\irowband6\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 55\cell in it for a life of sorrow they will live, since a rich man will become poor \'85 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid15624732 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 prophets and righteous persons without sorrow, for all\'85 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 eighth }{\rtlch \ab\af0 \ltrch +\b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is that one who is [m]ourning for his sons and for hi}{\rtlch \af0 \ltrch \insrsid12137753\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + [d]aughters is obliged to rely upon the example \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow7\irowband7\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 60\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12137753 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the prophets and the righteous person}{\rtlch +\af0 \ltrch \insrsid12137753\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 whose children died during their lives\'85[Aaron] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid9123678 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the chief}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid4403687 Ezra}{\rtlch \af0 \ltrch +\lang3082\langfe1033\langnp3082\insrsid4342917 7:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 priest whose sons died during his lifetime}{\rtlch \af0 \ltrch \insrsid9123678 :}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 10:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 +\ltrch \insrsid9123678 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 And fire came forth [from the Lord and consumed them; thus they died] +\par before the Lord,}{\rtlch \af0 \ltrch \insrsid9123678 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Aaron was silent and kept his peace in accepting the judgment of the Lord, as it is written:}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 10:3. +}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid9123678 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 And Aaron was silent.}{\rtlch \af0 \ltrch \insrsid9123678 \'94}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 David, too, +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fasted and cried all the while the child was alive}{\rtlch \af0 \ltrch \insrsid12137753\charrsid1781117 ,}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and when he died, he was comforted, for he said he would go to his son and his son would not re[turn] to him, +\par as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel}{\rtlch \af0 \ltrch +\insrsid4342917 12:22\endash 23.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid9123678 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 While the child was still alive, I fasted and wept because I thought: +\lquote Who knows? The Lord may have pity on me,\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow8\irowband8\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 65\cell and the child may live.\rquote But now that he is dead, [why should I fast]? Can I bring him back again? I shall go\'85.}{\rtlch \af0 \ltrch \insrsid9123678 \'94}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 And as for Job, his th[ree] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12137753 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 sons died at the same time and he accepted the judgment of his }{\rtlch \af0 \ltrch +\insrsid12137753\charrsid1781117 C}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 reator, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 1:21.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 He said, \'93Naked came I\'85.\'94 And afterwards +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + [he also said}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \tich \insrsid4342917 +\tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 2:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid9123678 {\rtlch \af0 \ltrch \insrsid9123678 \'93T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he good we should accept from God\'85.}{\rtlch \af0 +\ltrch \insrsid9123678 \'94 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he Lord restored him and made his end good, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 42:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid9123678 \'93}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The Lord restored Job\rquote s fortunes when he prayed \'85.}{\rtlch \af0 \ltrch \insrsid9123678 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Thus the mourner mourning for his children should take comfort + +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \i.srsid12391429\charrsid1781117 \'85to be like these prophets}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin4047\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Generally speaking. Aaron was not a prophet. Unless we say that the customary usage here derives from an external influence: \'93prophets without a mission.\'94 Regarding David +\emdash we have the well-known responsum of R. Nissim Gaon to R. Abraham ben R. Moses (now in }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Milhamot Hashem}{\rtlch \af0 \ltrch \insrsid4342917 by R. R. Margaliot, 116).}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 who suffered over their children to be like them, and also in the words of \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow9\irowband9\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 70\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12137753 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [R. Johanan}{\rtlch \af0 \ltrch \insrsid12137753\charrsid1781117 ]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 5b, and see also }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 O}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ar ha-Ge +\rquote onim}{\rtlch \af0 \ltrch \insrsid4342917 \emdash The Commentaries, page 6, paragraph 18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 about whom the Sages said that h[e] had ten sons and they died during his lifetime and }{\rtlch +\af0 \ltrch \insrsid12137753\charrsid1781117 he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 accepted the judgment of his }{\rtlch \af0 \ltrch \insrsid12137753\charrsid1781117 C}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 reator. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and the }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ninth}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12405329 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [}{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 that we should know th}{\rtlch \af0 \ltrch \insrsid12405329 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 t dea[th] is better than life and that the }{\rtlch \af0 \ltrch \insrsid12405329 L}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ord caused them to die for his benefit, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 63:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid12405329 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid12405329 Y}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 our faithfulness] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [is better than life; my lip]s declare your praise.}{\rtlch \af0 \ltrch \insrsid12405329 \'94}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 And the }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 tenth }{\rtlch \ab\af0 \ltrch \b\insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + is that we know that dead are destined to live in the future, since the Lord will resurrect everyone, and the father will know his children and sit among them, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Mann has already noted that this apparently refers to 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 12:23: \'93 +I shall go to him.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11472258 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85. And when the mo[urn]er know}{\rtlch \af0 \ltrch \insrsid11472258\charrsid1781117 s}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 all this in his heart or confirm it}{\rtlch \af0 \ltrch \insrsid11472258\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \insrsid11472258\charrsid1781117 +he will}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid11472258\charrsid1781117 forget}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid11472258\charrsid1781117 h}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +is si]ghs and his worry will go away, as it is written:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 94:19.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12405329 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +When I am filled with cares, Your assurance [soothes my soul].}{\rtlch \af0 \ltrch \insrsid12405329 \'94}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 { +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow10\irowband10\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr +\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0\pararsid11472258 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 [2] Letters from Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Israel (Eleventh century)}{\rtlch \af0 \ltrch +\insrsid11472258\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Presented here are two more letters from the Oxford }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Genizah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + collections that were quoted in Joseph Eliash\rquote s article \'93}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Yedi\rquote ot al Erez Israel me-ha-Me\rquote ah ha-11}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'94 (\'93 +Information from Eleventh-Century Erez Israel\'94).}{\rtlch \ab\af0 \ltrch \cs16\b\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917 Sefunot}{\rtlch \af0 \ltrch \insrsid4342917 2 (1958), 7\endash 16.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par a) a letter by Sa\rquote adiah he-}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 aver (the Sage) from Hebron to the Gaon Evyatar Hacohen +\par +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and Its Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash Sa\rquote adiah the member of the \'93Society of the Graves of the Forefathers\'94 + that established its location during the eleventh century in Hebron near Me\rquote arat Hamachpelah, addressed his letter to the Gaon R. Evyatar Hacohen, the head of the Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Israel Yeshivah. +\par +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash In the first part of the letter the writer describes his great joy upon hearing the news that Rabbenu Evyatar h +ad been appointed \'93Gaon Ya\rquote akov,\'94 during the lifetime of his father, R. Elya Hacohen, who had lived in Fustat, Egypt and died in 1081. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid9835367 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab We present this section of the letter to show that a custom of writing \'93 +letters of condolence\'94 to mourners existed in Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Israel in the eleventh century. The author of this letter did not succeed in having it reach its destination. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab Below appears only the portion of that letter relevant to our topic. +\par +\par \page Text of the Letter: +\par [page 2] +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil +\cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7874\clshdrawnil \cellx8414\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell }{\rtlch \af0 \ltrch \insrsid9835367\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 hen we of \'93Graves of the Forefathers\'94 h +eard [of the death] of Rabbenu Eleazar, of blessed memory and for life in the world// to come// I [eulog]ized him }{\rtlch \af0 \ltrch \insrsid8601107\charrsid1781117 with }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 numerous eulogies}{\rtlch +\af0 \ltrch \insrsid8601107\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and I wept for him }{\rtlch \af0 \ltrch \insrsid8601107\charrsid1781117 with }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +a great and bitter weeping and we made\line the Sabbath day for him like the Sabbath of Lamentations }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +and I wrote condolences to Egypt through my son Abraham, but the Holy One, blessed be He, did not provide an opportunity for him to go there to offer condolences to our master the Gaon}{\rtlch \ab\af0 \ltrch \b\insrsid8601107\charrsid1781117 ,}{\rtlch +\ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 nor to provide heartfelt condolences}{\rtlch \ab\af0 \ltrch \b\insrsid8601107\charrsid1781117 .}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 May the }{\rtlch \ab\af0 \ltrch +\b\insrsid11552035\charrsid1781117 heart of }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 the Gaon}{\rtlch \ab\af0 \ltrch \cs16\b\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab a concluding blessing by the author of the enquiry to the Gaon.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7874\clshdrawnil \cellx8414\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }{\rtlch \af0 \ltrch \insrsid11552035\charrsid1781117 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +nd the heart of our Rabbi, the head of the Bet Din}{\rtlch \af0 \ltrch \insrsid11552035\charrsid1781117 be consoled}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \insrsid11552035\charrsid1781117 and may [God}{\rtlch \af0 +\ltrch \insrsid1932179\charrsid1781117 ]}{\rtlch \af0 \ltrch \insrsid11552035\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bless you and hear my prayer for you in this holy place Amen.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid15033033 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 +, 11. On the status of the Gaon R. Evyatar Hacohen, see M. Gil, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Ere}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Israel bi-Tekufah ha-Muslemit ha-Rishonah, }{\rtlch +\af0 \ltrch \insrsid4342917 I (Tel Aviv, 1983), 604\endash 606, 625. See Z. Schechter, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Tehillah la-David }{\rtlch \af0 \ltrch \insrsid4342917 (Breslau, 1890), who found,, among the +Genizah fragments in Cambridge University Library, the complete text of a }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid13182277 kaddish}{\rtlch \af0 \ltrch \insrsid4342917 which was customarily used in eleventh-century Ere}{\rtlch \af0 \ltrch +\cf2\insrsid4342917 z}{\rtlch \af0 \ltrch \insrsid4342917 Israel relating to the most important rabbis living at that time (we also have evidence of this custom in a later period, see }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid13182277 ibid.}{ +\rtlch \af0 \ltrch \insrsid4342917 ). Here we only cite the opening of the }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid13182277 kaddish}{\rtlch \af0 \ltrch \insrsid4342917 : \'93}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 +yitgadel ve-yitkadesh shemei raba be-alma di vera kirutei yamlikh}{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 malkhutei ve-ya}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ma}{ +\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 purkanei vi-yakrev meshi}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ei be-}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h} +{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ayei adonenu Evyatar ha-Kohen rosh yeshivat ga\rquote on ya\rquote akov u-ve-}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ayei rabbenu Sh +elomo ha-Kohen av ha-yeshivah u-ve-}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ayei rabbenu }{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 Z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 adok ha-shelishi she-ba-}{ +\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 avurah u-ve-}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 h}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ayyekhon\'94 }{\rtlch \af0 \ltrch \insrsid4342917 (\'93 +Magnified and sanctified be His great Name in the world which He created according to His will. May He establish His kingdom during the life of our master Evyatar ha-Kohen, the head of the Yeshivah Gaon Ya\rquote akov, + and during the life of Solomon ha-Kohen, principal of the yeshivah, and during the life of Rabbenu }{\rtlch \af0 \ltrch \cf2\insrsid4342917 Z}{\rtlch \af0 \ltrch \insrsid4342917 adok, the third member of the heads, and during your life.\'94}}}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\lastrow \ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7874\clshdrawnil \cellx8414\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6950160 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 b) a condolence letter to Elijah b. Evyatar Hacohen +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and }{\rtlch \ab\af0 \ltrch \b\insrsid6950160\charrsid1781117 i}{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ts Recipient}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \emdash This letter was wri +tten to Elijah the son of the gaon R. Evyatar Hacohen who lived in Tyre. Eliash notes that the identity of the letter writer, its sender, and the place from which it was sent are not known. We can only assume that the letter was sent at the end of the ele +venth century or at the beginning of the twelfth. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter is replete with flowery phrases in Hebrew and biblical verses and deals with the following themes: + +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6950160 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 An opening \emdash Citation of biblical verses }{\rtlch \af0 \ltrch +\insrsid6950160\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 contain acceptance of Divine judgment }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 (}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 z} +{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 idduk ha-din)}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 . +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Blessings, condolences, and wishes for a good and long life. +\par The bad tidings about the death of R. }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 adok Hacohen severely hurt the writer. +\par Condolences to R. Evyatar and R. Elijah Hacohen, that they may have the privilege of finding comfort in the rebuilding of the Temple when sadness will turn to joy. +\par An appeal for forgiveness from the gaon that no group had come from the writer\rquote s community to offer condolences, since the pathways were treacherous by sea and by land (one must keep in mind that this was the Crusader period). +\par Since the entire letter concerns condolences, it is presented here in full. +\par \page Text of the Letter: +\par \tab Proclaiming that the Lord is upright, in whom there is no wrong.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 92:15.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ; I will clothe priests;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrh \lang1031\langfe1033\langnp1031\insrsid4342917 132:16. This +is a reference to Evyatar, who was a }{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917 k}{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid5905669 ohen.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The Rock! \emdash His deeds are perfect. His ways are just\'85.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid14447357 \tab Deut. }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 32:4.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The righteous man perishes yet no one considers.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid0000008 \tab }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 57:1.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Woe is me! I am become like leavings of a fig harvest.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid14447357 Micah}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 7:1.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 God is righteous in all his ways, and gracious in all His works,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 145:17.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Consolation and grace, relief to [my] sadness and the bindings of [my] wounds; good tidings \'85 +approaching salvation. Removal of pain, sorrow, sighing and agony. Consolation of the good tidings for Zion and then light and joy will be [the lot] of our master}{\rtlch \af0 \ltrch \insrsid4922460 from the Lord of hosts to cons}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ole your heart\'85. May his seat be established forever with dignity; a long life with good and pleasant things; atonement of his cherished one, his son\'85. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1975058 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +We have been informed of the harsh tidings that pain the heart and weaken the spirit concerning the passing of Rabbenu }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +adok Hacohen of blessed memory. The Lord is witness that we are sorrowed, trembling and anxious}{\rtlch \af0 \ltrch \insrsid1975058\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + May his portion be in the Garden of Eden in the company of the righteous. This decree [and news of his death] made the body and soul burn, distanced joy and passed from us all respite. [His death] stupefied}{\ltrch \rtlch +\f0\fs24\lang1037\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 our hearts; we became as fools; we became poor and sullied; it was }{\rtlch \af0 \ltrch \insrsid1975058\charrsid1781117 as if }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 our possessions }{\rtlch \af0 \ltrch \insrsid1975058\charrsid1781117 had }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 suddenly s}{\rtlch \af0 \ltrch \insrsid1975058\charrsid1781117 u}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 nk. He gathered his roses and perfumes; there remains no cluster to eat \'85 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab We are a ransom and redemption for the glory of our revered teacher \emdash a light unto Israel \emdash +Elijah ha-Kohen, the fourth [of the group, that is, the fourth generation of this dynasty], may [our consolations] be a shelter for him, let the pure light relieve him and gladden his heart, the life of our master, the ga\rquote on}{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a prince of the people in Torah. May he be found worthy of the building of the Temple and the gathering of the scattered sheep [Israel]\'85 +May he turn sorrow into abundant happiness and joy. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid10754532 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 God will make known the suffering and the crushed spirit of the afflicted soul\'85 + who acted out of decency and steadfastness in Torah, the greatness and holiness of our leader and teacher, our master Elijah ha-Kohen, head of the yeshivah Ge\rquote on Ya\rquote akov, of blessed memory}{\rtlch \af0 \ltrch +\insrsid10754532\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 with the utmost humility. May the }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 addik }{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and his splendor\'85 assure him his place with Abraham, Seth and Jacob. May He who dwells in the heavens have mercy upon him; may the living God fulfill for him to sustain us in life. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid2584292 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab [Members] of the community \emdash a}{\rtlch \af0 \ltrch +\insrsid2584292\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 part of what they are obliged to do \emdash cleansed their hand}{\rtlch \af0 \ltrch \insrsid2584292\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and said, \'93blessed be the true judge.\'94 Were it not for the conditions on the sea and land and the week}{\rtlch \af0 \ltrch \insrsid995470\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + on the roads...the servants }{\rtlch \af0 \ltrch \insrsid995470\charrsid1781117 would }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 have presented themselves\'85}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Translated from the Arabic.}}}{\rtlch \af0 \ltrch \insrsid1@391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid995470 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The God of Israel will keep away from him all forbidden things}{\rtlch \af0 \ltrch +\insrsid995470\charrsid1781117 \'85 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 redeem him and atone him, our master the fourth\'85and the tribulations of time. +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid995470 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch +\insrsid12391429\charrsid1781117 \tab [Additions to this letter, }{\rtlch \af156 \ltrch \insrsid995470\charrsid1781117 at }{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 the top of the page] +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid995470 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab Our venerable teacher Elijah the fourth, may my }{\rtlch \af0 \ltrch \insrsid995470\charrsid1781117 K}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ing and }{\rtlch \af0 \ltrch \insrsid995470\charrsid1781117 S} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 hepherd watch over him\'85 may he be engraved in }{\rtlch \af0 \ltrch \insrsid995470\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 law + of uprightness; may he be strengthened; may he be cleansed of any iniquity, may he be saved from the evil eye and may he be inscribed in the book of life\'85}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Sefunot}{\rtlch \af0 \ltrch \insrsid4342917 , pp. 14\endash 16.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + [The complete text of this letter in Hebrew may be found in }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Or ve-Ni}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 h}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 umim +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , pp. 136. ff.] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s21\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 +c) Condolence letter from Eli ha-Mumheh b. Abraham to Hesed b. Yashar upon the death of his son +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid995470 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 a letter of condolence from the eleventh century (Ms. Budapest-Kaufman 143), published by A. Scheiber in his }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Geniza Studies}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Alexander Scheiber, \'93 +Kondolenzschreiben des Eli Hamumche B. Abraham An Chesed B. Jaschar,\'94 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Geniza Studies}{\rtlch \af0 \ltrch \insrsid4342917 , New York, 1891, 166\endash +172. The letter is presented here in its entirety along with Scheiber\rquote s comments. On the history of the brothers Abraham, known as Abu Sa\rquote ad, and Hesed, known as Abuna}{\rtlch \af0 \ltrch \cf2\insrsid4342917 s}{\rtlch \af0 \ltrch +\insrsid4342917 ar, of the Al-Tastari family, their status, and relations with the caliph\rquote s family, see Y. Mann, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 The Jews in Egypt and in Palestine under the Fatimid Caliphs,}{\rtlch \af0 \ltrch +\insrsid4342917 Oxford University Press, 1922, I:76\endash 83. Concerning their tragic death, see part II:79\endash 81: Three letters were written. Note especially the letter by th +e gaon Rabbi Solomon b. Judah, the author of the condolence letter to Rabbi Sahlan Aluf b. Abraham, who was the spiritual leader of the Babylonian community, and who refers to them as \'93two }{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917\charrsid546867 z} +{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid546867 addikim}{\rtlch \af0 \ltrch \insrsid4342917 .\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid3025761 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and }{\rtlch \ab\af0 \ltrch \b\insrsid3025761\charrsid1781117 i}{ +\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ts Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash Eli b. Abraham, known as Ha-Mum}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 h}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 eh, wrote a letter to }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 esed b. Sahl Yashar Al-Tastari, on the death of his son Yashar. }{\rtlch \af0 \ltrch +\cf2\insrsid12391429\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 esed was one of the leaders and wealthy members of the Egyptian community and in close contact with the family of the caliph. He was one +of the most important members of the Babylonian community in Fustat at that time and was closely involved with public affairs. R. Hai Gaon exchanged letters with him in 1038, and they sought to offer support to R. Sahlan Aluf b. Abraham}{\rtlch \af0 +\ltrch \insrsid14164988\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the spiritual leader of the Babylonian community. We know nothing of the circumstances of death of his son Yashar, but }{\rtlch \af0 \ltrch +\cf2\insrsid12391429\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 esed and his brother Abu Sahd Abraham died unnatural deaths. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash a short letter, it begins with a salutation to Hesed the senior and statements accepting the Divine judgment}{ +\rtlch \af0 \ltrch \insrsid14164988\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and concludes with }{\rtlch \af0 \ltrch \insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +s of accepting Divine judgment; in the middle are words of placation and consolation. +\par +\par Text of the Letter: +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil +\cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch \fs24\insrsid12391429\charrsid1781117 a1\cell }\pard\plain \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Consolation is sent in reverence to the holiness in\'85 +\par Mar Rav Hesed the elder the valiant, May his rock and redeemer protect him\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 b1\cell The rock \emdash His deeds are perfect, yea all his ways are just and good}{\rtlch \ai\af0 \ltrch \cs16\i\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid546867 Deut.}{\rtlch \af0 \ltrch \insrsid4342917 32:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell [in as much as a] king\rquote +s command is authoritative, and none can say to him, \'93What are you doing?\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid546867 Eccl}{\rtlch \af0 \ltrch \insrsid4342917 . 8:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par [You are righteous] O Lord; your rulings are just}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 119:137.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par [Your commandments] are always fulfilled. And long life +\par will [replace d]eath. The repose of life will replace a sigh +\par [and all g]ood. Renewed power and heart. In reverence to his holiness +\par [}{\rtlch \af0 \ltrch \cf2\insrsid12391429\~arrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 esed the elde]r, the dear, the important, and may he watch over him \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell +[his rock and his redeemer watch over him and and may he re]lieve the anxiety from his heart and may he console him +\par [in his mourning as] he promised as [a mother comforts her son] so I will comfort you; you shall find comfort +\par in Jerusalem,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch +\insrsid4342917 66:13.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone ^clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 15\cell [Comfort for the r[uin]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 22:4, \'93comfort me for the ruin.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that has befallen us upon hearing the tidings\line [that we have heard]}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Ob.}{\rtlch \af0 \ltrch \insrsid4342917 1:1, +\'93We have received tidings.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the great agony upon the death of his cherished one }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 [that is, his son] +\par }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [We grieve}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab 2 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 1:26, \'93I grieve for you.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 most sore]ly over him. But it is fitting and proper that we accept true + +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid9207470 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [Divine Judgment }{\rtlch \af0 \ltrch \insrsid9207470 from }{\rtlch \af0 \ltrch +\insrsid9207470\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 19a, \'93and he stands and accepts Divine judgment for him.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid9207470 who }{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 transmits and does not break +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid9207470\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +is covenant]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Joshua}{\rtlch \af0 \ltrch \insrsid4342917 + 7:15, \'93because he broke.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for any of }{\rtlch \af0 \ltrch \insrsid9207470\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 iscreatures}{\rtlch \af0 \ltrch +\insrsid14164988\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12603968 where there is one [fate]}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5905669 Song of Songs}{\rtlch \af0 \ltrch \insrsid4342917 3:7.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 20\cell }\pard\plain \ltrpar +\s17\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12603968 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 [ +for all of them]. }{\rtlch \af156 \ltrch \insrsid12603968 The}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 servant [must not] complain against his }{\rtlch \af156 \ltrch \insrsid12603968\charrsid1781117 L}{\rtlch \af156 \ltrch +\insrsid12391429\charrsid1781117 ord for +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12603968 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid12603968 in Your hand}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab I }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Chron.}{\rtlch \af0 \ltrch \insrsid4342917 29, 12.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12603968 i}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ] +}{\rtlch \af0 \ltrch \insrsid12603968 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 everything. }{\rtlch \af0 \ltrch \insrsid12603968 \'93}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +The Lord has given, and the Lord has taken away, [blessed be] +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the name of the Lord.}{\rtlch \af0 \ltrch \insrsid12603968 \'94}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 1:21. +}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 All is on loan, and He may again renew its stock.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 14:7.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid16212167 M}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ay the Lord] accept all prayers}{\rtlch \af0 \ltrch \insrsid16212167 for [the departed]}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow5\irowband5\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth648\clshdrawnil \cellx540\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7880\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [3] Condolence Letter \emdash Rabbi Zema}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 h}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ben R. Solomon Duran (Algiers, Fift%nnthcwZKKhmW century) +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid10048331 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and }{\rtlch \ab\af0 \ltrch \b\insrsid10048331\charrsid1781117 i}{ +\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 ts Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash R. Zema}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 h}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + wrote the letter as the opening of a responsum he addressed to R. David Hacohen, who lived in Granada, on the death of his brother, who was apparently also known to R. Zema}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 h}{\rtlch \af0 \ltrch +\cf2\insrsid10048331\charrsid1781117 ,}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid10048331\charrsid1781117 was }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 close to him. Finding out about the death of the brother shocked and greatly saddened R. Zema}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 h. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter is divided into 25 sections dealing with the following themes: +\par The writer describes the physical pain and suffering he underwent when he learned of the death. +\par The emotional storm and thoughts of the writer. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid13109360 {\rtlch \af416180211544352850 \ltrch \insrsid12391429\charrsid1781117 The gloom and fear of death that strikes the \'93cedars,\'94 + in contrast to the existence of the evildoers who are compared to those who are \'93wicked yet well off.\'94 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Feelings of anger and anxiety for those dear ones who have fallen in the net of death. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid13109360 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The writer complains about the injustice in evidence \emdash \'93 +the evil person for whom things are good}{\rtlch \af0 \ltrch \insrsid10048331\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'94}{\rtlch \af0 \ltrch \insrsid13109360 }{\rtlch \af0 \ltrch \insrsid10048331\charrsid1781117 i}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 n contrast to the righteousness of the }{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 addik }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and the evil that befalls him. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lamentations and yearning for the deceased brother. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid10048331 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93The rightness of }{\rtlch \af0 \ltrch \insrsid10048331\charrsid1781117 D}{\rtlch \af0 +\ltrch \insrsid-8734134782369459860\charrsid1781117 ivine judgment\'94 \emdash all according to God\rquote s will. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid12148583 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +The writer takes comfort in the faith that the soul of the departed shares the fate of the soul}{\rtlch \af0 \ltrch \insrsid13109360 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the righteous and }{\rtlch af0 \ltrch +\insrsid10048331\charrsid1781117 is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bound in the bond of everlasting life. +\par Consolations and salutations to R. David Cohen and his family, with expectation for comfort }{\rtlch \af0 \ltrch \insrsid12148583\charrsid1781117 in }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the building up of Jerusalem. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +An abridgement of the letter is presented here, divided into sections (the notes cite the sources used by the writer). (See }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Or ve-Nihumim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, pp. 139\endash 143, for the full text.) +\par +\par Text of the Letter: +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid5120557 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Granada to R. David Hacohen, May God preserve him, son of Jonathan Hacohen, \line +May he rest in Paradise}{\rtlch \af0 \ltrch \insrsid5120557 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid5120557 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 hile }{\rtlch \af0 \ltrch +\insrsid7542981\charrsid1781117 he was }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 there his brother passed away, May he rest in Paradise}{\rtlch \af0 \ltrch \insrsid5120557 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 +\ltrch \insrsid5120557\charrsid1781117 B}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 efore I }{\rtlch \af0 \ltrch \insrsid7542981\charrsid1781117 replied to him}{\rtlch \af0 \ltrch \insrsid5120557 }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 I }{\rtlch \af0 \ltrch \insrsid5120557 wrote }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 him these words of consolation: +\par \ltrrow}\trowd \irow0\irowband0\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil \cellx348\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid5120557 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 I am hamstrung. The strings of my heart}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 17:11. At the beginning of the letter the writer uses the words of }{\rtlch \ai\af0 \ltrch \insrsid4342917\charrsid16335552 Job }{\rtlch \af0 \ltrch \insrsid4342917 +to his companions in which he explains why consolation is useless, since he is very close to dying, for his tendons have been severed and the strings of his heart [have come undone].}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fester}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 p{\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 + 38:6: \'93My wounds stink and fester because of my folly.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 and are }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 destroyed.}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \insrsid4342917 + 24:1: \'93behold, the Lord will strip the earth bare.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 They }{\rtlch \af0 \ltrch \insrsid5120557 are }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 displaced, they stumble in judgment.}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \insrsid4342917 + 28:7: \'93They are muddled in their visions, they stumble in judgment.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 My p}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +angs and throes}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch +\insrsid4342917 13:8: \'93They shall be seized by pangs and throes.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid5120557 have }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bec}{\rtlch \af0 \ltrch +\insrsid5120557 o}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 me stronger and harsher.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 21:7: \'93Prosper and grow wealthy.\'94}}}{\rtlch \bf0 \ltrch!\insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid13451168 {\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 M}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ost of my inner spaces }{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \insrsid4342917 + 2:21: \'93The clefts in the rocks and the crevices in the cliffs.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 are }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +filled with cares}{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {ootnrte \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 94:19: \'93When I am filled with cares.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 +as are the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 feelings in me and my thoughts in my heart}{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid12856449\charrsid1781117 and a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 s a fire burn}{\rtlch \af0 \ltrch \insrsid12856449\charrsid1781117 ing}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a forest,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 + 83:15: \'93as a fire burns a forest.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 burning swiftly across. }{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 [My cares] have m}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ade a crossing}{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af63898 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \insrsid4342917 10:29: \'93They made the crossing; \lquote Geba is to be our night quarters!\rquote \'94 with \'93made the crossing\'94 used here as a phrase of rage and anger.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 [leaving] e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 mbers }{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 still }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 glow}{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 ing}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 2:3: \'93Their rear guard a devouring flame.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid8985984 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 All faces turned ashen}{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 ;}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 + 2:6: \'93all faces turn ashen.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid13451168\charrsid1781117 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 shes bound up with bitterness. Their brightness}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 + 2:10: \'93Stars withdraw their brightness.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid8985984\charrsid1781117 their }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 astonishing roar }{\rtlch \af0 +\ltrch \insrsid8985984\charrsid1781117 is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as young lions}{\rtlch \af0 \ltrch \insrsid8985984\charrsid1781117 , [as]}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the terror of a king}{\rtlch +\af0 \ltrch \insrsid8985984\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Proverbs}{ +\rtlch \af0 \ltrch \insrsid4342917 20:2: \'93The terror of a king is like the roar of a lion.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8985984\charrsid1781117 indeed }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 a great terror.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid8062247 Gen}{\rtlch \af0 \ltrch \insrsid4342917 . 15:12: \'93and a great dread descended.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Panic fell among }{\rtlch \af0 \ltrch +\insrsid8985984\charrsid1781117 the cheerful}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 cedars. Those Boazes}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab Boaz \emdash an appelation for the owner of an estate, taken from the name of Boaz in the Book of }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6817976 Ruth}{\rtlch \af0 \ltrch \insrsid4342917 .}}}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8985984\charrsid1781117 [are now] w}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 orthless, shorn, despised. Despite their lowliness\'85 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charsiU1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil \cellx348\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\row }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [4] Carmi Family Condolence Letters +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4013963 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The letters in this section originate from one extended family, the Carmi brothers, a prominent Jewish family in Italy who}{\rtlch \af0 \ltrch \insrsid10416\charrsid1781117 se}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 members filled positions as \'93state appointees\'94 \emdash the highest level of Jewish leadership. They liv +ed in Cremona, in the northern Italian region of Lombardy, in the second half of the sixteenth century. J. Buchsenbaum collected and annotated the Carmi family letters in his book devoted to them. Tee condolence letters we have chosen }{\rtlch \af0 +\ltrch \insrsid4013963 are only }{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 those written }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 solely as \'93condolence letters\'94 to mourners}{\rtlch \af0 \ltrch \insrsid10416\charrsid1781117 , }{ +\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 can serve as examples of the form and writing style common in }{\rtlch \af0 \ltrch \insrsid10416\charrsid1781117 that }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 period for }{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 this }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 type of letters. +\par }\pard\plain \ltrpar\s25\ql \fi180\li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid550161 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab Most of the letters are not signed}{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 and }{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 a few bear truncated signatures or initials. Buchsenbaum feels that + the writer who collected the letters intentionally blurred the names so that others could not identify them. It was customary at that time for writers who were members of }{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 a }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 social group to refrain from explicitly using the names of their friends and acquaintances. +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid9513810 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab The first three letters cited were composed as laments and consolation for the death of }{\rtlch \af0 \ltrch \insrsid550161\charrsid1781117 a }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Carmi uncle, Jekutiel Hacohen, who died in Tammuz }{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'f9\'ec"\'e1) 1572}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ). }{\rtlch \af0 \ltrch \insrsid9513810\charrsid1781117 +This wa}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 s most probably Jekutiel b. Abraham Porto Katz, the father-in-law of Menahem Ottolenghi of Lodi. a relationship was forged between Saul Raphael Carmi and Jekutiel Porto }{\rtlch \af0 \ltrch +\insrsid9513810\charrsid1781117 through }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 their wives, who were apparently sisters.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab Y. Buchsbaum, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Iggerot Bet Karmi,}{\rtlch \af0 \ltrch \insrsid4342917 98 n. 1.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par a) }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Condolence letter to the son-in-law of the deceased}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 98. We have divided the letter into rows to make it easier for the reader to related to the letter\rquote +s form and content; we have done the same for the other letters as well.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and the Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash + J. Buchsenbaum feels that the writer of this letter is, perhaps, Abraham Carmi, the third son of Saul Raphael Carmi,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid8062247 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab The student of the }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 gaon}{\rtlch \af0 \ltrch \insrsid4342917 Piscarollo; }{\rtlch \af0 \ltrch \insrsid4342917\charrsid6817976 R. }{\rtlch \af0 \ltrch \insrsid4342917 David }{ +\rtlch \af0 \ltrch \insrsid4342917\charrsid6817976 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 , called Zanvil b. Kalonymus Piscarol, the personal rabbi of the Carmi family, who lived at that time in Vercelli located in Piedmont.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 whowas addressing the son-in-law of the deceased. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with four themes: +\par }\pard \ltrpar\ql \li360\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin360\itap0\pararsid9513810 {\rtlch \af0 \ltrch \insrsid9513810\charrsid1781117 1.}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Opening statements and admonitions to the departed\rquote s son-in-law +\par {\listtext\pard\plain\ltrpar \s20 \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 2.\tab}}\pard\plain \ltrpar\s20\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls20\adjustright\rin0\lin720\itap0\pararsid9513810 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Eulogy +\par {\listtext\pard\plain\ltrpar \s20 \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 3.\tab}Lamentation +\par {\listtext\pard\plain\ltrpar \s20 \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 4.\tab}}\pard \ltrpar\s20\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls20\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Condolences +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \page }{ +\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil +\cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3043295 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab To }{\rtlch \af0 \ltrch +\insrsid3043295\charrsid1781117 my }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 dear relative, may God protect and preserve him, Shalom}{\rtlch \af0 \ltrch \insrsid4013963 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab I know that for }{\rtlch \af0 \ltrch \insrsid3043295\charrsid1781117 your }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 livelihood God has sent you to Latisana (a town in Veneto), as it is written: The sun rises, and the sun sets: +\par \tab And as our Sages, of blessed memory, have said: \'93before a person dies, the master of his house is appointed.\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid200 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6817976 BB}{\rtlch \af0 \ltrch \insrsid4342917 91a.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid13917846 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp0037\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid3043295\charrsid1781117 N}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ow I must console you. In any event, to halt the flow of words I cannot, for my spirit is pressing }{\rtlch +\af0 \ltrch \insrsid13917846\charrsid1781117 upon}{\rtlch \af0 \ltrch \insrsid4013963 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 me, for bitter mourning I have }{\rtlch \af0 \ltrch \insrsid3043295\charrsid1781117 felt }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 upon the death of your father-in-law, of blessed memory}{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781217 + \par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid13917846 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 He }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 was the foremost }{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 one in }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 everything involving holiness. Surely, all Jewry will weep for him as +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab they wept for Aaron the Priest, may peace be with him}{\rtlch \af0 \ltrch +\insrsid13917846\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 Indeed, }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +he was a descendant of Aaron, having performed deeds of Aaron, }{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he will find his peace}{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 .}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6817976 Yoma }{\rtlch \af0 \ltrch \insrsid4342917 +71a.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid13917846\charrsid1781117 M}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ay he rest in peace with all the other }{\rtlch \ai\af0 \ltrch +\i\cf2\insrsid12391429\charrsidj1781117 z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 addikim }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in Gan Eden, and because of this, in my lamentation over him I said the following lines:}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab See Buchsbaum\rquote s note, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 i}{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid5066409 bid.}{\rtlch \af0 \ltrch \insrsid4342917 , 99 n. 4: \'93This is taken literally from R. Judah Alharizi\rquote s poem in }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Takhkemoni}{\rtlch \af0 \ltrch \insrsid4342917 + (J. Toporowski edition, Ma}{\rtlch \af0 \ltrch \cf2\insrsid4342917 h}{\rtlch \af0 \ltrch \insrsid4342917 barot le-Sifrut publications, Tel Aviv, 1952, ch. 50, p. 291).}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard\plain \ltrpar +\s17\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \highlight7\insrsid12391429\charrsid1781117 +lines from Takhkemoni}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\ltrch \af262\afs24 \rtlch +\f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'e4\'f9\'f8 \'e0\'f9\'f8 \'ec\'e5 \'e1\'e9\'ef \'f6\'e1\'e0 \'f8\'e5\'ed \'ee\'e7\'e4\'e4 \'ec\'e1\'e9 \'ec\'f4\'f8\'e5\'e3\'ea \'ee\'e3\'e5\'eb\'e4 \'f0\'f2\'f0\'e4}{\rtlch \af0\afs24 +\ltrch \fs24\insrsid12391429\charrsid1781117 +\par }{\ltrch \af262\afs24 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'e0\'fa\'e4 \'ee\'e0\'e5\'f8 \'f2\'e5\'ec\'ed \'e5\'fa\'f9\'eb\'e5\'ef \'ee\'e7\'f9\'ea \'eb\'ef \'e4\'f9\'eb\'e9\'f0\'e4 \'e1\'f2\'f8\'f4\'ec \'fa\'e7\'f0 +\'e4}{\rtlch \af0\afs24 \ltrch \fs24\insrsid12391429\charrsid1781117 +\par }{\ltrch \af262\afs24 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'e5\'e0\'f0\'e9 \'ee\'e0\'f0\'e4 \'e4\'f0\'e7\'ed \'f0\'f4\'f9\'e9, \'eb\'e9 \'f0\'e4\'f4\'eb\'e5\'ec \'f2\'ec\'e9 \'f6\'e9\'f8\'e9}{\rtlch \af0\afs24 \ltrch +\fs24\insrsid12391429\charrsid1781117 . +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +I have known you as a man of words, your words have kept him who stumbled from falling. Pray that your consolation will appease my soul and the soul of our brothers and teacher }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 who }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 are steeped in sadness in my name. }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 M}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ay it be that }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 the }{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 words of your consolation run while I am still alive, and that I will remain\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid13720635 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 alive thanks to you, and }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 may }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +your reward be doubled from the Heavens. My teacher and rabbi, may the Lord watch over him}{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 [I +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 pay}{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 my]}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 respects to you}{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 .}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ere it not for +the illness of his wife and eldest daughter, he would have lived long enough to lament and console you, in the same }{\rtlch \af0 \ltrch \insrsid2760246\charrsid1781117 way }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +that that he was joyous in his letter to you about your finding your match, for }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mazal tov, amen.}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 May you have peace. Vercelli, 4 Menahem ab (5300)}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid2188025 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Buchsenbaum, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid2188025 ibid}{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid5066409 .}{\rtlch \af0 \ltrch \insrsid4342917 , n. 7, thinks that the year was 1572 and not as listed here.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\ltrch \af262 \rtlch +\f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'ec\'f4"\'f7}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [=1540]. +\par }{\rtlch \af0 \ltrch \insrsid13720635 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ishing you deliverance of consolation, your relative Anonymous }{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'f8\'f4"\'e0}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \page b) +}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 a consolation letter to the deceased\rquote s brother}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +\tab J. Buchsenbaum, 99.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Author of the Letter and the Recipient }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash One of the sons of S. R. Carmi wrote this letter on the death of Jekutiel Hacohen}{\rtlch \af0 \ltrch \insrsid201019\charrsid1781117 ,}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 to Jehiel Porto, the uncle of the sons of S. R. Carmi and his brother Jekutiel Hacohen (the deceased). The writer uses quotations from the Bible and Talmud. From the letter\rquote +s contents one can see that both the writer and the recipient were well versed in Jewish learning. +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with six themes: +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 1.\tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar\tx360\jclisttab\tx720\faauto\ls1\adjustright\rin0\lin720\itap0\pararsid201019 { +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Describing the magnitude of the tragedy +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 2.\tab}The inability of the writer to provide consolation +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid201019\charrsid1781117 \hich\af0\dbch\af0\loch\f0 3.\tab}}{\rtlch \af0 \ltrch \insrsid201019\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Apology by the writer for rousing the mourner\rquote s sorrow +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 4.\tab}Words of lamentation and lament +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 5.\tab}A request that Jehiel Porto }{\rtlch \af0 \ltrch \insrsid13720635 should }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +send him the lamentation he recited about the deceased +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid201019\charrsid1781117 \hich\af0\dbch\af0\loch\f0 6.\tab}}{\rtlch \af0 \ltrch \insrsid201019\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Blessings and conclusion +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Text of the Letter: +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell \tab My distinguished Uncle, may God protect and preserve him, +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid2187587 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab What can I compare or liken to You}{\rtlch \af0 \ltrch \insrsid1719748 ?}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid1719748 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 o whom can }{\rtlch \af0 \ltrch \insrsid1719748 one }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +liken Me, to whom can I be compared}{\rtlch \af0 \ltrch \insrsid1719748 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid2187587 I}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 suffer}{\rtlch \af0 \ltrch +\insrsid6955097\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117V your honor}{\rtlch \af0 \ltrch \insrsid1719748 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid6955097 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid6955097\charrsid1781117 A}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 s vast as a house}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +See Buchsenbaum\rquote s note, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 i}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 bid.}{\rtlch \af0 \ltrch \insrsid4342917 , 99: \'93certainly it must be \lquote as the sea\rquote , see }{\rtlch \ai\af0 +\ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:13.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is our rupture, and it consumes half our flesh. If so, how shall I console you}{\rtlch \af0 \ltrch +\insrsid6955097\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab \'93}{\rtlch \af0 \ltrch \insrsid6955097\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 e made expiation for himself\'94 as it is written}{\rtlch \af0 \ltrch \insrsid6955097\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 16:7; that is, I myself need expiation.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid6955097\charrsid1781117 R}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 evenge shall be far from my thoughts, perhaps pain has seized us, agony like a woman in childbirth, I will not \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar +\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12323918 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 find re +spite until the light of my eyes is gone. Until now I have acted foolishly, to bestir}{\rtlch \af0 \ltrch \insrsid6955097\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12323918\charrsid1781117 his eminence}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 over +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +his dead one and to remind him what has been decreed that it should be found.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li-4452962359270719426\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab See }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11420266 Pes}{\rtlch \af0 \ltrch \insrsid4342917 . 54b. }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Indeed, my heart wrenches inside me and }{\rtlch \af0 \ltrch \insrsid12323918\charrsid1781117 +my }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 innards +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12323918 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab are wounded. I can +not refrain from coming to lament %n your honor and to tell of my great sorrow. I call upon trustworthy witnesses to attest to this poem, that it should be }{\rtlch \af0 \ltrch \insrsid12323918\charrsid1781117 as }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 witness for me, that you will not be forgotten +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab from my utterances as long as I live. I will bitterly lament my discourse.}{\rtlch \f0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +The entire poem, with some errors as well as a number of changes adapted to the event, is also listed as a poem by Alharizi (see n. 4), }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Takhkemoni}{\rtlch \af0 \ltrch \insrsid4342917 (}{\rtlch \af0 \ltrch +\i\insrsid4342917 i}{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid5066409 bid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 387), where it was written upon the grave of Ezekiel the Prophet.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell +}\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin512\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell Alharizi }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 Takhkemoni}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch +\fs24\insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +Servant of the Lord, distinguished Jekuthiel}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Alharizi\rquote s poem reads \'93 +The prophet of the Lord, the distinguished Ezekiel.\'94 Here the person is named Jekuthiel, and }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 kohen}{\rtlch \af0 \ltrch \insrsid4342917 (servant of the lord) and two of the Hebrew articles }{\rtlch \ai\af0 +\ltrch \i\insrsid4342917 \'93heh\'94, }{\rtlch \af0 \ltrch \insrsid4342917 to maintain the poetic metre in Hebrew.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell \tab +And now, thank the Lord, I know that your honor did not refrain}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid5340492 Song of Songs}{\rtlch \af0 \ltrch \insrsid4342917 7:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 from }{\rtlch \af0 \ltrch \insrsid12323918\charrsid1781117 bewailing }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 him with lamentations, and moans, and sounds. May you give me from the garden and orchard that you planted }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid12323918\charrsid1781117 +i.e}{\rtlch \ai\af0 \ltrch \i\insrsid12323918\charrsid1781117 .,}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 : send me the lament you gave. Author}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ],}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11420266 BB}{\rtlch \af0 \ltrch \insrsid4342917 + 39b..}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 so that they may be }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 totafot}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + between my eyes and for a remembrance in the pages of the letter.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid6707373 Ezra}{\rtlch \af0 \ltrch \insrsid4342917 27:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I remain in the vale of tears}{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 ,}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 yearning for salvation from the Lord}{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 T}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 he wound\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow8592246450919088465\irowband3\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 20 \cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid802467 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab of our smitings He will heal, as }{\rtlch \af0 +\ltrch \insrsid802467\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e swore to us from on high, so }{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will }{\rtlch \af0 +\ltrch \insrsid802467\charrsid1781117 fill }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 us}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tb +See Buchsbaum\rquote s note, 100 n. 23: \'93There is a one-word space here in the manuscript, apparently the word \lquote from the cup of\rquote has been deleted.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid802467\charrsid1781117 with }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 consolation}{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid802467\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ou}{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + my ancient King, may he make you the highest and a blessing on the earth. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lombardy, the month of Menahem AB\'85 from the groveler in dust and ashes, grandson of his honor}{\ltrch +\rtlch \f0\fs24\lang1037\insrsid12391429\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'f4\'ec\'e5}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Cremona\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch \fs24\insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 c) }{\rtlch +\ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Condolence letter to a brother over the death of a brother-in-law}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5580553 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 116}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid802467 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash }{ +\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he writer is }{\rtlch \af0 \ltrch \insrsid802467\charrsid1781117 possibly }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Saul Raphael Carmi.}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1075\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab See Buchsbaum\rquote s note, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ibid}{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid5066409 .}{\rtlch \af0 \ltrch \insrsid4342917 , n. 2: \'93The signature is not clear; perhaps it reads }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'f9"\'f7}{\rtlch \af0 \ltrch \insrsid4342917 [S\'94c].}}}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with two themes: +\par {\listtext\pard\plain\ltrpar \s20 \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard\plain \ltrpar\s20\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid16327472 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Eulogy and lamentatio +n over the deceased +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}}\pard\plain \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls2\adjustright\rin0\lin720\itap0\pararsid16327472 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +Concluding statement with the blessing of the True Judge. +\par }\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch +\fs24\insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Text of the letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil +\cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8144\clshdrawnil \cellx8414\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3868273 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab I have verily heard, and my being has trembled, over hearing the tidings}{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 ;}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 no spot of my flesh is sound, my heart is awhirl}{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab He has left me alive }{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 but }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the light of my eyes is also not with me, for we have lost a verdant olive tree, fair, choice fruit, from among the descendants of Aaron.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Jekuthiel Cohen of Latisana: see above the letter by the deceased\rquote s son-in-law.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + For the mountains I take up weeping and wailing, for the pastures in the wilderness, a dirge, my eyes shed streams of water over our great misfortune. I do not have the strength to console, instead of me now may \cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil \cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8144\clshdrawnil \cellx8414\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 your strength increase, my brother, to console me with the good things, }{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 for }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +the exposition of your words gives me light. }{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 E}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ven so, after what I have heard, +that one blesses over the good, I will bless softly, in a whispering vo}{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 ice: Blessed be the True Judge\'85}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow1\irowband1\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil +\cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8144\clshdrawnil \cellx8414\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [5] a condolence letter from a son to his father}{\rtlch \ab\af0 \ltrch \cs16\b\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +Buchsbaum, 166.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid3868273 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and the Recipient}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \emdash The author is unknown.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +See Buchsbaum\rquote s note}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5580553 , }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 ibid}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 .}{\rtlch \af0 \ltrch \insrsid4342917 , 37 n. 91.}}}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 From the letter\rquote s contents, however, it seems that a son is writing a condolence letter to his father (upon the death of the father}{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 \rquote }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 s sister). From the letter we learn of the son\rquote s worrying that his father }{\rtlch \af0 \ltrch \insrsid3868273\charrsid1781117 should not }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +cause himself too much anguish when mourning. This is the first letter found from this period that concludes with the consolation phrase: }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 \'93 +May the Lord comfort you among the other mourners of Zion, Amen.\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +See chapter 3 concerning the entrance and exit of those paying condolence calls to the mourners home, page 000.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 This phraseology is not common %n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n condolence letters from this period. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with three themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls4\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Description of the writer\rquote s sadness upon hearing the evil tidings +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}The advantage of accepting condolences over becoming mired in mourning +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Expressions of condolence +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +\par Text of the Letter: +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil +\cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 +\rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 1\cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0\pararsid14375923 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +It would not be believed would it be told how great was my sorrow, and my body was seized in terror}{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I could not find no rest, and I could not + +\par be quiet, day and night, my groaning serve}{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 d}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as my bread, my roaring pour}{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 ed}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 forth as water, when I heard +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab the bad tidings that God has taken the righteous woman, your sister, + of blessed memory, and her soul will be gathered to }{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im. }{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 I}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 f\line I come with praise to speak to your heart and your consolation, my master my father, may God protect and preserve him}{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid13778447 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid14375923\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +hat shall I do today with empty consolations, not for succor and not to benefit but only to sadden. So I will briefly mention to the }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 honorable,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + that condolences have two good characteristics \emdash joy in this world and good recompense in the World to Come; and mourning has two bad characteristics \emdash loss of recompense for hardships }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 [i.e., there is a reward in the World to Come for suffering, }{\rtlch \af0 \ltrch \insrsid12391429\charrsid13778447 while one who mourns +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + too much, who does not lovingly accept suffering, loses that reward] and punishment for overanxiousness.\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone +\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row +\ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10 \cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0\pararsid14375923 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch +\insrsid14375923\charrsid1781117 T}{\rtlch \af0\ltrch \insrsid12391429\charrsid1781117 o an intelligent one as yourself this is sufficient.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab a similar motif occurs in the }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \insrsid4342917\charrsid5580553 of Samuel}{\rtlch \af0 \ltrch +\insrsid4342917 Hanagid (Diwan, 1:122) in the second part of the poem (lines 24\endash 32), where the Nagid addresses the son of an unnamed deceased person to comfort him: \'93 +Read my writing and take comfort, from the notion / that excessive mourning is unwanted / and he will not gain by disputing with the Lord / about evil occurrences and judgments / but all is well c +onsidered / and every number is included in a book / and the day of each cedar will come and it will fall / and a rock will bedisplaced as any chaff and thorns / and there is a reward to the one who is restrained in his mourning / and there is a reward t +o one who extols in high phrases.\'94 +\par }\pard \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6895881 {\rtlch \af0 \ltrch \insrsid4342917 +The writer takes part in the sorrow of the living and attempts to console him and lessen his pain. In this selection he mentions a number of existing truths, namely: that every living thing will die at its appointed time, +as the Lord has decreed; that he will \'93not gain\'94 + from a dispute with God, whose thoughts and judgments are set and cannot be changed; that the Lord does not want mourning; and the great reward waiting for those who are restrained in mourning. See J. Levin, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 +Al Mavet, }{\rtlch \af0 \ltrch \insrsid4342917 158\endash 159, where we read: \'93The ancient determination of fate here is God\rquote +s decree, the way of all flesh enforced through fate is set here through the absolute will of the Creator of the world. Self-restraint in mourning is none other than forbeara +nce and equanimity of ancient manhood, a reward for the non-injurious balance of equanimity was transformed into divine reward, and the imperative of experience gained from life became a religious commandment.\'94}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 He who fences in calamities will fence in our calamities and say to our woe, }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 enough, and console us among the other mourners of Zion, }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Amen. +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab 22 in the Omer, }{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'e4\'f9" +\'ed] 1590}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ], one who is steeped in unrest, your sighing son.\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt +\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil +\cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [6] Condolence letter over a daughter\rquote s death}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 190.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and the Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash One of the sons of S\'94R Carmi to their cousin, an anonymous }{\rtlch \ai\af0 \ltrch +\i\cf2\insrsid12391429\charrsid1781117 K}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 aha}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 (}{\rtlch \ai\af0 \ltrch +\i\cf2\insrsid12391429\charrsid1781117 K}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 ohen }{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 edek), }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 was a }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 melammed}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (young children\rquote +s teacher) in the household of Menahem Ottolenghi (the brother-in-law of Jekutiel}{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the oldest child of S\'94 +R Carmi) whose daughter had died. The letter was written in }{\rtlch \af0 \ltrch \cf6\insrsid12391429\charrsid1781117 1575}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (}{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 +\'f9\'ec"\'e4}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ).}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , pp.28, 37, 43.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with three themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls5\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Commiserating with the mourner\rquote s sorrow +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Awareness }{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 of the fact that }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 that the mourner bear}{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his suffering with love and accept}{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 s}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the Divine judgment eases the uneasiness of the writer +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Words of consolation +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil +\cellx348\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell \tab Listen well High Priest. +\par }\pard\plain \ltrpar\s21\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11163277 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab We have heard the tidings and our innards are in turmoil over the death of your Honor\rquote s daughter, may her soul be bound up in the bond of everlasting life}{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 .} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 O}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ur bowels are overcome with heat when we think of the sorrow befalling your Honor because of this. +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{ +\rtlch \af0 \ltrch \insrsid11163277\charrsid1781117 A}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fter we have realized that this is the way of all mankind, and recognized that your Honor\rquote s wisdom}{\rtlch \af0 \ltrch +\insrsid8537775\charrsid1781117 is great,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil \cellx348 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 5\cell and that you accept these tribulations from the Lord with love and accept His judgment}{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{ +\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 B}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 y blessing him for this }{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 bad }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +in the same way that people bless Him for the good, we have been assuaged and accommodated ourselves to the Lord\rquote s will, by our entreating the glory and splendor [of the }{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 C}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 reator], so that His mercy will }{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 fill }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 this gap}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 19a.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in your Honor +\rquote s house and from the home}{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 of those }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 who love }{\rtlch \af0 \ltrch \insrsid10372219\charrsid1781117 h}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is name}{\rtlch \af0 \ltrch \insrsid8537775\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 He shall write and sign the name of your glory along with the name of all the members of his family and his relatives in the Book of Good Life.\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil \cellx348\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell \tab +Those who are in sorrow at your Honor\rquote s sorrow and who take consolation in his consolations, his brothers-in-law and those who love his name\'85\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth456\clshdrawnil \cellx348\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8072\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par +\par [7] a Condolence Letter over the Death of a Mother-In-Law}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +Buchsbaum, 192.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Author of the Letter and the Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash Though neither the author nor the recipient are known for certain, we do know that the letter stems from Cremona since it mentions \'93He-Aluf Ashkenazi +\'94 (R. Eliezer) who lived there until 1576. This is a short condolence letter about a woman who died well advanced in years, and there is no need to offer other extensive words of consolation. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +\par Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with two themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls6\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Shock upon hearing the evil tidings +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Condolences +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par \ltrrow}\trowd \irow0\irowband0\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil \cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8144\clshdrawnil \cellx8414\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell I grew very faint and felt crushed by the disheartening news that your elderly, saintly mother-in-law, of blessed memory, has passed away. And knowing that y +our honor is like an angel of the Lord, I shall not offer lengthy condolences with +\par empty words, but only implore you to not be overly wrought with grief, for she has died at an advanced age, in the fullness of years, and would that it be that no one would die before reaching that age.\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil \cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth8144\clshdrawnil \cellx8414\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4551223 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [8] Condolence Letter over the Death of a Granddaughter}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , 303 +\endash 4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and the Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash + Moses Carmi (the younger son of S. R. Carmi) writes to his father-in-law R. Isaac Foa (a resident of Reggio and one of the mos +t important rabbis in Italy in his day). The time: Kislev 1571. (The writer uses quotations from the Talmud, language not found in other letters from this period.) +\par +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letters deals with two themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls7\adjustright\rin0\lin720\itap0\pararsid4551223 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The writer apologizes that even though he is \'93of junior years\'94 he }{\rtlch \af0 \ltrch +\insrsid4551223\charrsid1781117 has ventured to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 writ}{\rtlch \af0 \ltrch \insrsid4551223\charrsid1781117 e}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a condolence letter. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid4551223\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}}{\rtlch \af0 \ltrch \insrsid4551223\charrsid1781117 S}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 adness engulf}{ +\rtlch \af0 \ltrch \insrsid4551223\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 everyone owing to the pain of R. Isaac Foa. +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\s6\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Text of the Letter +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\br~rnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil +\cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par 1\cell \tab Arioch}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab a sobriquet of honor; a title of honor given to }{\rtlch \ai\af0 \ltrch +\insrsid4342917\charrsid5066409 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 (Babylonian amora, first generation, beginning of the third century). See }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Shabbat}{\rtlch \af0 \ltrch \insrsid4342917 + 53a; K}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 iddushin }{\rtlch \af0 \ltrch \insrsid4342917 39a; }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 Menahot }{\rtlch \af0 \ltrch \insrsid4342917 38b; }{\rtlch \ai\af0 \ltrch +\i\insrsid4342917\charrsid5066409 Hulin}{\rtlch \af0 \ltrch \insrsid4342917 76b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \tab The consolation of a foolish Babylonian such as myself is almost tantamount to blasphemy.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab See }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid5066409 baba Kama}{\rtlch \af0 \ltrch \insrsid4342917 38a; meaning \'93I do not know how to offer condolences.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I am young, and what can I }{ +\rtlch \af0 \ltrch \insrsid4143959\charrsid1781117 say }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and how can I console you}{\rtlch \af0 \ltrch \insrsid4143959\charrsid1781117 ? +\par }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4143959\charrsid1781117 My }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 dwelling}{\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 [i.e., my body]}{\rtlch +\af0 \ltrch \insrsid13765936\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in }{\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 a }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +time of distress and the upheavals of the times}{\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid13765936\charrsid1781117 turns }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 round and round }{\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 toward }{\rtlch \af0 \ltrch \insrsid13765936\charrsid1781117 your }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 hol}{\rtlch \af0 \ltrch +\insrsid13765936\charrsid1781117 y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 house. I know the distress of }{\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 your }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 soul, for I am with }{ +\rtlch \af0 \ltrch \insrsid7306120\charrsid1781117 you }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in }{\rtlch \af0 \ltrch \insrsid14631613\charrsid1781117 your }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 distress}{\rtlch \af0 \ltrch +\insrsid10372219 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 5\cell }{\rtlch \af0 \ltrch \insrsid15693328\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 houghts }{\rtlch \af0 \ltrch \insrsid14631613\charrsid1781117 concerning }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 your honor }{\rtlch \af0 \ltrch \insrsid15693328\charrsid1781117 disturb me for }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the radiance }{\rtlch \af0 \ltrch \insrsid15693328\charrsid1781117 of your }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 countenance change}{\rtlch \af0 \ntrch \insrsid15693328\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsi\1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11416988 Dan}{\rtlch \af0 \ltrch \insrsid4342917 . 5:6; 10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Outside the sword of the earthquake dealt }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 death}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to your wisdom;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab The reference is to the earthquake that hit Ferrara on 19 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11416988 Kislev}{\rtlch \af0 \ltrch \insrsid4342917 + 371 (17 Nov. 1530). R. I. Foa had relatives and friends in Ferrara, and his son-in-law R. M. I. lived there. }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 into the house stole death through the windows of }{\rtlch \af0 \ltrch +\insrsid15693328\charrsid1781117 your }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 cherished granddaughter, may her soul be bound up in the bond of everlasting life}{\rtlch \af0 \ltrch \insrsid15693328\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid15693328\charrsid1781117 he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 chambers of his heart }{\rtlch \af0 \ltrch +\insrsid15104734\charrsid1781117 show }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 great }{\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 alarm}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + for the men of his redemption and his extraordinariness in Ferrara;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab Until th +is point the metaphor is based on the verses in }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11416988 Deut}{\rtlch \af0 \ltrch \insrsid4342917 . 32:25 and }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch +\insrsid4342917 1:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the supports of his insights are paralyzed, and he cannot express his sorrow, for our brothers and teachers steeped in sorrow\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell in Ferrara, }{\rtlch \af0 +\ltrch \insrsid15104734\charrsid1781117 unless }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the strength of the shepherd increase}{\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 s,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to }{ +\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 grant }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 them mercy before their return}{\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and }{\rtlch \af0 \ltrch \insrsid15104734\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 have mercy on them..}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab Perhaps the re%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%ncere%n%%nce is to the debts non-Jews owed to Jewish moneylenders; under the pretext of the earthquake they evaded paying their debts.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch +\scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par [9] Example of the writing of a condolence letter in Venice (sixteenth century) +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid3016977 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch +\b\insrsid12391429\charrsid1781117 Author of the letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \endash R. Solomon ben R. Joshua Alt Sh}{\rtlch \af0 \ltrch \insrsid10695270\charrsid1781117 u}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 l,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1847736 +Sefer Megillat Sefer}{\rtlch \af0 \ltrch \insrsid4342917 , Venice 1652, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1847736 ketav}{\rtlch \af0 \ltrch \insrsid4342917 27.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in his }{\rtlch +\ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Megillat Sefer}{\rtlch \ai\af0 \ltrch \i\insrsid10695270\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 include}{\rtlch \af0 \ltrch \insrsid10695270\charrsid1781117 s}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 different }{\rtlch \af0 \ltrch \insrsid10695270\charrsid1781117 styles which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +had been collected for the purpose of practicing correct writing, and as the author writes in the}{\rtlch \af0 \ltrch \insrsid10695270\charrsid1781117 introduction, its purpose is}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93To }{\rtlch +\af0 \ltrch \insrsid10695270\charrsid1781117 train}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 young men}{\rtlch \af0 \ltrch \insrsid6584119\charrsid308133241 \rquote s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 hands to write }{\rtlch +\af0 \ltrch \insrsid6584119\charrsid1781117 to one an}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 other in }{\rtlch \af0 \ltrch \insrsid6584119\charrsid1781117 lofty }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 language.\'94 + That is, these were the accepted writing styles in that period. Also appearing there is a special style used for condolence letters. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash + The letter deals with three themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls8\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lament over the deceased and sharing in the mourner\rquote s pain +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Prayer for the deceased as well as for the living family members +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Condolences consisting mainly of accepting the Divine judgment +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil +\cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8280\clshdrawnil \cellx8550\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \cell }\pard\plain \ltrpar\s5\qc \li0\ri0\sl480\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel4\adjustright\rin0\lin0 \rtlch \ab\af0\afs24\alang1037 \ltrch +\b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lament for One Moaning the Loss of a Loved One\cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtnch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl-2753993917976240078\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil \cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8280\clshdrawnil \cellx8550\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 1\cell }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11349039 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab I lift my voice in crying and wailing and moaning }{\rtlch \af0 \ltrch \insrsid11349039\charrsid1781117 like the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ostriches. I will give +\par \tab no respite to myself}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch +\af0 \ltrch \insrsid4342917 2:18, \'93Give yourself no respite.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and tears }{\rtlch \af0 \ltrch \insrsid11349039\charrsid1781117 will }{\rtlh \af0 \ltrch \insrsid12391429\charrsid1781117 +flow from my eyes. Night +\par \tab and day I will cry with you. }{\rtlch \af0 \ltrch \insrsid11349039\charrsid1781117 A}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 t noon I will be embittered that the Lord has taken from you +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3016977 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab the cherished hart. May his soul be bound up in the bo +nd of eternal life with the Lord +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid4924362 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab Our God}{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 M}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ay all the rest of the family live a long life, amen}{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 .}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Pray be it that with me you will take comfort and give thanks to the Lord for all of His deeds, for we are the material and He is our }{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 C}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 reator and what can you}{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 say to }{\rtlch \af0 \ltrch \insrsid3016977\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid4924362\charrsid1781117 im and what can you do?} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid6771793 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab And you, sir, do verily know that we are }{\rtlch \af0 \ltrch +\insrsid4924362\charrsid1781117 all }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bound to bless Him, for the Lord has given and the Lord has taken away, blessed be the name of the Lord: and }{\rtlch \af0 \ltrch \insrsid11084060\charrsid1781117 H} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e may add as }{\rtlch \af0 \ltrch \insrsid11084060\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e wishes}{\rtlch \af0 \ltrch \insrsid6771793\charrsid1781117 .}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlchIHTqbY \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +Written at the end of the letter, and it means that from this point on the writer is permitted to add whatever he wishes.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab N.B. the writer +\par \tab a}{\rtlch \af0 \ltrch \insrsid6771793\charrsid1781117 ccepts his sufferings with love, an}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 d his end will be to the good. Your respected}{\rtlch \af0 \ltrch \insrsid6771793\charrsid1781117 servant. +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth378\clshdrawnil \cellx270\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8280\clshdrawnil \cellx8550\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [10] Condolence Letter to R. Moses b. R. Joseph Mitrani upon the Death of His Wife +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid6771793 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and the Recipient}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \endash R. Elazar b. Johai (Hakham from Tiberias, sixteenth century), one of the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 hakhamim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + who gathered around R. Mitrani (who at the time the letter was written was apparently a mourner himself), wrote a condolence letter }{\rtlch \af0 \ltrch \insrsid6771793\charrsid1781117 in 1567 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +to R. Moses Mitrani who lived in Safed, upon the death of the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 rabbanit}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + (his wife or his mother?). These statements are found at the beginning of a responsum addressed to R. Mitrani over the question about leaving fields fallow}{\rtlch \af0 \ltrch \insrsid6771793\charrsid1781117 ,}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 in which many citations from the Bible are interwoven.}{\rtlch \ab\af0 \ltrch \cs16\b\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab +See M. Benayahu, first chapter and introduction to responsa by R. Moses Mitrani, 18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s7\ql \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel6\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par Content of the Letter +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +The letter deals with five themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls64\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 An apology and allusion to the writer\rquote s situation that he himself is a mourner +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}A prayer for the deceased +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Condolences to Rabbi Moses b. Joseph Mitrani +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}The importance and urgency of his query to Rabbi Moses b. Joseph Mitrani +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}A conclusion including wishes for long life +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par +\par +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil +\cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell \tab His splendor fills the earth, his honor the Rabbi, may God protect +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid2239998 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab and bless him, }{\rtlch \af0 \ltrch \insrsid2239998\charrsid1781117 and since }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 one cannot enter the palace gate wearing sackcloth}{\rtlch \af0 \ltrch \insrsid2239998\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid7104208 Esther}{\rtlch \af0 \ltrch \insrsid4342917 4:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I sewed over +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab my skin, I buried my glory in the dust, that for my iniquities I have been disgraced, and I stood +\par \tab silent}{\rtlch \af0 \ltrch \insrsid2239998\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I was bowed with gloom,7like one mourning for his mother.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 35:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + And one who needs consolers is not able to console,\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 5\cell \tab I relent being but dust and ashes,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 42:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to write words of comfort over the death of the }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 rabbanit }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 who +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid16192946 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab has passed on. And now I come in short to pray to God, the }{\rtlch \af0 \ltrch +\insrsid16192946\charrsid1781117 C}{\rtlch \af0 \ltrh \insrsid12391429\charrsid1781117 onsoler of Zion, may she go to rest +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11084060 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab with }{\rtlch \af0 \ltrch \insrsid2239998\charrsid1781117 unworried}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \insrsid16192946\charrsid1781117 secure}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ladies.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 32:9.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid16192946\charrsid1781117 May t}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he consoler of Zion and the builder of Jerusalem in }{\rtlch \af0 \ltrch \insrsid15094550\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +is mercy give him to drink of the cup of consolation and build }{\rtlch \af0 \ltrch \insrsid16192946\charrsid1781117 for }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 him in Israel a faithful home}{\rtlch \af0 \ltrch +\insrsid15094550\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 great will be the glory of this +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab latter home.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs\cs\cs\cs\cs\cs\cs\cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid7104208 Haggai}{\rtlch \af0 \ltrch \insrsid4342917 2:9.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + And now my Lord, the cause of the holiness of the land, make}{\rtlch \af0 \ltrch \insrsid15094550\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 me ready to remove my sackcloth from upon me,\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \trch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11084060 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid11084060 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +nd to wear clothes of triumph,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 +\ltrch \insrsid4342917 61:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to come before the king to plead to him, over a true and humble thing}{\rtlch \af0 \ltrch \insrsid16192946\charrsid1781117 ;}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 justice +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1330909 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid1330909\charrsid1781117 d}{\rtlch \af0 \ltrch +\insrsid16192946\charrsid1781117 id I don }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid1330909\charrsid1781117 (}{\rtlch \af0 \ltrch \insrsid11084060 i.e., in order }{\rtlch \af0 \ltrch +\insrsid1330909\charrsid1781117 have you) }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 instruct}{\rtlch \af0 \ltrch \insrsid1330909\charrsid1781117 me}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch +\insrsid1330909\charrsid1781117 to cast light regarding }{\rtlch \af4292 \ltrch \insrsid12391429\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid1330909\charrsid1781117 laws }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of lands lying fallow for + +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab we rely upon everything being in his hand, and for everyt +hing regarding the commandments depending upon the land of Israel, the lovely land, that +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3889465 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 Y}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ou made great +\par \tab with great waters, and }{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ou raised up over all deed}{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , and }{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ou planted it like a cedar of Lebanon. I have but one request +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab from my lord that I will ask +, that you not make my answer long in coming, since it is a time-linked commandment, \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 15\cell \tab and I will tell the Rabbi what I am seeking and what I have found and examined as far as I could, and the Rabbi with his fitting knowledge +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3889465 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab will separate the wheat from the chaff since I did not have }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 Kaftor va-Ferah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + The name of a book on the agricultural laws pertaining to the land of Israel printed in Venice, 1549.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I am certain that }{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 you }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 will guide me well. The question is: Please teach me, a Jew who hired\'85\'94 +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3560544 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtmh \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab and concludes his question: I will wait for God}{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I will beseech him, may }{\rtlch \af0 \ltrch +\insrsid3889465\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e inscribe for a good life him and his descendants\rquote descendants}{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 ,}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid3889465\charrsid1781117 may he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +have many years over his domain, he and his children among the Jews, as there is the soul of the wise, also the pious in the heaven, and like a submissive soul to serve the service of a living person. }{\rtlch \af0 \ltrch \insrsid3560544\charrsid1781117 P +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 raying for his welfare +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +to the living God. The young man Elazar ben Johai.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Responsa of }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid7104208 Mabit}{\rtlch \af0 \ltrch \insrsid4342917 (R. Moses b. Joseph Mitrani).}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfre7 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [11] Condolence Letter to a Mourner Steeped in His Suffering}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917 Ma\rquote ayan Ganim}{\rtlch \af0 \ltrch \insrsid4342917 , Venic, 1653, p. 15 (my appreciation to Prof. M. Benayahu who enabled me to view the source).}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid3560544 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch +\b\insrsid12391429\charrsid1781117 Author of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash R. Samuel b. R. Elhanan Jacob Archivolti, rabbi of the Jewish community in Padua, Italy (from 1568 until + his death, 26 Adar 5471 [1611]). }{\rtlch \af0 \ltrch \insrsid3560544\charrsid1781117 For }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his volume }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Ma\rquote ayan Gannim}{\rtlch \af0 +\ltrch \insrsid3560544\charrsid1781117 , he wrote and edited}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fifty letters and for twenty-five of them he included the replies. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab The letter printed here is unique in that it deals with both with rebuke as well as condolences. The wr +iter reproves the mourner for being too deeply steeped in his anguish and has reservations about the divine attributes using a metaphor from nature to prove to the mourner that after the tragedy that has befallen him he must take encouragement and anticip +ate better days. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with five themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs1998437368357852581 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls10\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Participation of the writer in the mourner\rquote +s sorrow and expression of the hope that the mourner will be given the strength to bear his anguish and be able to becalm his turbulent feelings. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Sadness upon hearing that the mourner in his distress is having reservations about the divine attributes. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}The Lord is patient, but }{\rtlch \af0 \ltrch \insrsid3560544\charrsid1781117 when the appointed day arrives H}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 e will levy punishment. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}It is the way of mankind to grumble and it has become so habitual as to be second nature. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}After }{\rtlch \af0 \ltrch \insrsid3560544\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +bad, it is the turn for }{\rtlch \af0 \ltrch \insrsid3560544\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 good to come, and the mourner must look forward to it and desist from his anger. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +a person writes many words to comfort his fellowman in his time of sorrow +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for death ha +s stolen, God forbid! +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl +\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 \rlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab I lift to you my eyes flowing with tears for want of + +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +respite, for anything I propose is impossible,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch +\af0 \ltrch \insrsid4342917 42:2, \'93you propose.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and there is no power +\par }\pard\plain \ltrpar\s26\ql \fi-342\li342\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin342 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 that can annul what has been decreed to roam the sea, the roiling sea of your perplexities, to raise the banner +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +in the tempest, the tempest of your self }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 nd your soul. May this be a comfort for your soul,\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar +\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 giving you power to bear the supreme reproof until the Lord looks down and beholds}{\rtlch \af0 \ltrch \cs16\scaps\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 3:50.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to restore your fortunes}{\rtlch \af0 \ltrch +\cs16\scaps\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:14.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid16200598 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab and have mercy on you}{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 e will bear your ire, }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will cast light on your forces as dark as the ice}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 6:16.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \tab of the the perplexities}{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e will assuage your anger, }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will calm your soul, setting it aright, and direct your heart to +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab His abode. My witness is in heaven}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp0043 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 16:19.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for I am in agony}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 1:9.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 over the bad +\par news +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab I +have heard, for I am benumbed and crushed,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 +\rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch +\af0 \ltrch \insrsid4342917 38:8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and distress increased in my abode \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard\plain \ltrpar\s20\ql \fi-405\li405\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin405 \rtlch \af0\afs24\alang1037 +\ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 like grief in your courtyards and agony in my heart like a moan because of your idea. I was saddened by your suffering +\par }\pard \ltrpar\s20\ql \fi-315\li315\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin315\pararsid16200598 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and even more }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 by }{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 your wrath. You have begun to have reservations about God\rquote s +\par }\pard \ltrpar\s20\ql \fi-405\li405\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin405 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 attributes, leniently, by saying that all the good which you have been graced with for many + +\par }\pard \ltrpar\s20\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a day was taken from you in the prime of her life.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Based on }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid3356114 Daniel }{\rtlch \af0 \ltrch +\insrsid4342917 7:25.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 It is the way of man that +\par }\pard \ltrpar\s3596922953723469861\ql \fi-405\li405\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin405 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 if he sin}{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 against }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is creator and make}{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im angry, a thousand years in his eyes and }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 e, with }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is mercy, will patiently}{\rtlch \af0 \ltrch \scaps\insrsid12391429\charrsid1781117 \cell +}\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 15\cell }\pard\plain \ltrpar\s20\ql \fi-405\li405\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin405\pararsid16200598 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bear his guilt and when }{\rtlch \af0 \ltrch \insrsid16200598\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +is wrath shall come upon the appointed day and time, man shall be humbled and +\par }\pard \ltrpar\s20\ql \fi-405\li405\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin405\pararsid1194561 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 mortal brought low,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 2:9; 5:15.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 when }{\rtlch \af0 \ltrch \insrsid1531410\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e rises to }{\rtlch \af0 \ltrch \insrsid1194561\charrsid1781117 dictate}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid1194561\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 man and }{\rtlch \af0 \ltrch \insrsid1194561\charrsid1781117 to }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 judge him, }{\rtlch \af0 \ltrch \insrsid1194561\charrsid1595742571985111546 [the man] }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 will +lament, and his soul will bitterly torment him and he will be ruled by it. For if a good man would understand his foundation}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 11:3, \'93When the foundations are destroyed...\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 when +\par }\pard \ltrpar\s20\ql \fi-315\li315\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin315 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +he leaves the oppressions of the world, he should be happier on the day of his death than on the days of his birth (perhaps one should say today)}{\rtlch \af0 \ltrch \insrsid1194561\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid1194561\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his habit has become second nature to him and just as he cried and raged upon leaving his mother\rquote s womb, \cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 20\cell }\pard\plain \ltrpar\s20\ql \fi-315\li315\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin315 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 with his going forth to a more distinguished, important place than where he had been, so he will be obligated\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 +\rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\lastrow \ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar +\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\itap0\pararsid15625630 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid15625630 ******}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \tab }{\rtlch \af0 \ltrch \insrsid15625630 +\par }{\rtlch \af0 \ltrch \scaps\insrsid15625630\charrsid1781117 }{\rtlch \af0 \ltrch \scaps\insrsid12391429\charrsid1781117 [}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 pages 16\endash 17 of the letter] +\par \ltrrow}\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1 +\cell }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\pararsid1194561 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 by his nature to complain on the day of his death, since he too is flesh}{\rtlch \af0 \ltrch \cs16\scaps\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid7613718 Gen:}{\rtlch \af0 \ltrch \insrsid4342917 6:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 desirous of material things}{\rtlch \af0 \ltrch +\insrsid1194561\dharrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid1194561\charrsid1781117 E}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ven worse than this, there will be saddened over him the hearts of those who know him and are yet +\par }\pard \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\pararsid3828797 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 still alive. Can a man be of use to God?}{\rtlch \af0 +\ltrch \cs16\scaps\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 0:2.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The burden of his complaints will be burdensome }{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 him when his anger +\par }\pard \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 comes upon him}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ,}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and a man's feet are responsible for him when he time comes; they lead him\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 +\ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone +\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row +\ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl +\tx360\faauto\outlinelevel1\adjustright\rin0\lin405\pararsid3828797 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 from far to live in a place that he wants } +{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 whether }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 consciously or unconsciously}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + +\par }{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ow can a man rage against God, for }{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e}{ +\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the most high}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 rule}{\rtlch \af0 \ltrch +\insrsid3828797\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the world +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 justly +\par and nations with equity.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch +\insrsid4342917 98:9, \'93He will rule the world justly, and its peoples with equity.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 If man be overwise, he should cry at birth, +\par he should rejoice at the expiring of an old man, for man is destined to labor from birth}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and an elderly person will perish seeing +\par good. Have you never heard that the air darkens before the dawn}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard\plain \ltrpar +\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid3828797\charrsid1781117 A}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fter it rises}{\rtlch \af0 \ltrch \insrsid3828797\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + the sun spreads the feathers of its wings and [shines] like a groom coming forth +\par from the chamber.}{\rtlch \af0 \ltrch \cs16\scaps\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch +\insrsid4342917 19:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 After the sun rises, the cloud dulls its splendor. After +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +the cloud, the air becomes warm. After the heat come thunderous torches +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3828797 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and noises agitating the earth and those in it: after the thunder a tempest +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 rages. And after the tempest, the sun rises and all illness \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell and distress will be gathered,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 104:22.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the shadows flee,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid7613718 Song of Songs}{\rtlch \af0 \ltrch \insrsid4342917 2:17}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and they will do no more harm. Man then goes out to his work, and shepherd}{\rtlch \af0 +\ltrch \insrsid12352864\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 my sheep +\par as thsy said, Let them praise the Lord for his steadfast love, His wondrous deeds for mankind.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 107, 8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Yea, all who live in the world +\par and inhabit the earth,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch +\insrsid4342917 18:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for whom dust is their origin, together rich and poor will pass +\par }\pard\plain \ltrpar\s2\ql \fi-405\li405\ri0\sb120\sl360\slmult1\keepn\widctlpar\intbl\tx360\faauto\outlinelevel1\adjustright\rin0\lin405 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 over them as happens in these days in their time. The people sitting in the dark of their mother\rquote s womb, light shined on them, and it is their birth and the days of\cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 20\cell their childhood. After childhood come the stage of youth, after youth they go through the prime of life. After the prime of life, they will bear the paths +\par of old age. After, after old age, they will reach the edge of hoary old age. After +\par hoary old age, the time of affliction arrives. After affliction }{\rtlch \af0 \ltrch \insrsid12352864\charrsid1781117 they }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 will come in ripe old age to the grave.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 %%ntn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 5:26.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par And just as they }{\rtlch \af0 \ltrch \insrsid12352864\charrsid1781117 who }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 lived until now wait to die, so they now die to see eternal\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\ltrrow\ts11\trgaph9223372036854775807\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl4\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 25\cell life of light in the God\rquote +s Torah in the land of the living.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch +\insrsid4342917 38:11.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 These are the limits +\par of our ways and for them we should thank the Lord for the past. To gladden his heart in the present\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow5\irowband5\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\trowd \irow6\irowband6\lastrow \ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trftsWidthA3\trwWidthA6\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone\clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7847\clshdrawnil \cellx8414\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \cell and to pray for the future. And now my brother set your thinking to thank the Lord, remove the anger from your heart, and divest yourself from evil, lest it be a snare within you}{\rtlch \af0 \ltrch +\insrsid12352864\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid12352864\charrsid1781117 may }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +God comfort you with the comfort of Zion, Amen, may it be so}{\rtlch \af0 \ltrch \insrsid12352864\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow6\irowband6\lastrow \ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trftsWidthA3\trwWidthA6\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7847\clshdrawnil \cellx8414\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \page [12] Condolence Letters by Joseph Hacohen (15}{\rtlch \af0 \ltrch \super\insrsid12391429\charrsid1781117 th}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 century) +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid15408536 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch +\b\insrsid12391429\charrsid1781117 Author of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash Joseph Hacohen (author of }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Emek ha-Bakha}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ) of Spain, lived in the first half of the 16th century and wrote these four letters of condolence. The first two letters were written to his father-in-law}{\rtlch \af0 \ltrch \insrsid1663324\charrsid1781117 ,}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 R. Abraham Hacohen, rabbi of the Bologna community after the death of his son (that is, the brother-in-law of Joseph Hacohen}{\rtlch \af0 \ltrch \insrsid15408536\charrsid1781117 )}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , who died in the region of the cities of Rimini and Imola. (}{\rtlch \af0 \ltrch \insrsid15408536\charrsid1781117 This is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +stressed in almost the same phraseology in the two letters, \'93and I say, let there be no dew in Rimini and no rain in Imola. For there fell the shield of warriors, the crowning glory of the young men\'94 [patterned after 2 Samuel 1:21: \'93 +O hills of Gilboa \emdash let there be no dew or rain on you.\'94] The second letter, similar to the first, was apparently written for fear that the first did not reach its destination (the two letters have identical stylistic elements). The lat +er two letters were written to his nephew, Zerahiah Halevi, a physician in Voghera, at the time of the death of his father, Joseph Halevi (that is, Joseph Hacohen\rquote s brother-in-law).}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 My appreciation to Dr. Avraham David who referred me to \'93The Letter Collection of Joseph Hacohen, author of }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Emek ha-Bakha}{\rtlch \af0 +\ltrch \insrsid4342917 \'94 (in Hebrew) which he published in }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Italia,}{\rtlch \af0 \ltrch \insrsid4342917 5 (1985), 9\endash +14. We have quoted the letters and comments as cited there and added additional comments of our own.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \tab All four letters were, of course, written by the same person, but we must pay attention to the significant stylistic differences between the first two and the latter two. The first letters deal with \'93untimely death,\'94 so more than half }{\rtlch +\af0 \ltrch \insrsid15408536\charrsid1781117 of }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the first }{\rtlch \af0 \ltrch \insrsid15408536\charrsid1781117 consists of }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +lamentations and wailing, and only in the later section are there so +othing, comforting statements. Joseph Hacohen himself suffered harsh tragedies twice in his life, when his firstborn son Joshua died at the age of twenty, drowning in a river on the 9th of Tammuz 1540 , and the death of his other son Isaac when five month +s old, in 1541. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of Letter A}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , p. 54, Letter 24.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with three themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls11\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lamentation and wailing over the deceased. +\par {\listtext\pard\plain\ltrpar \ltrch \ai\afs2 \rtlch \i\f262\fs24\cf2\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 idduk ha-din}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (\'93the rightness of divine judgment\'94) \emdash \'93The Lord has given, and the Lord has taken away.\'94 +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Prayer for the deceased and condolences to his family. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0$\ltrch \insrsid12391429\charrsid1781117 : +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trkeep\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 +\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8528\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Prince and worthy of Israel, the leader of the Diaspora of Israel, my teacher, my father-in-law as my distinguished rabbi, +\par Abraham Hacohen, may God preserve him, in Bologna\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trkeep\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone +\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth8528\clshdrawnil \cellx8420\row \ltrrow}\trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trrh777\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb +\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell Prince and worthy of Israel, the lea +der of the Diaspora of Ariel, my teacher, my father-in-law, may the Lord bless him. I looked forward to peace and there was no good}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 See }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 30:26: \'93I looked forward to good fortune, but evil came.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \line +in the time of calm. }{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 B}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ehold}{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + your writing horrified me for there is no balm in Imola}{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + The city of Imola near Bologna.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 C}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 an no physician be found there, for why was my suffering}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid7613718 Habakkuk}{\rtlch \af0 \ltrch +\insrsid4342917\charrsik&867703 }{\rtlch \af0 \ltrch \insrsid4342917 1:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 brother-in-law,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 The name of that brother-in-law, his father-in-law\rquote s son \emdash is not known for certain.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 may he rest in paradise}{\rtlch \af0 \ltrch +\insrsid3235903\charrsid1781117 , not healed?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \line Let there be no\line dew}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 Hebrew ms, }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'e8\'f8}{\rtlch \af0 \ltrch \insrsid4342917 , which should be }{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'e8\'ec}{\rtlch \af0 \ltrch +\insrsid4342917 , dew.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in Rimini}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Hebrew name, } +{\ltrch \af262 \rtlch \f262\fs20\lang1037\insrsid4342917 \'e0\'f8\'ee\'e9\'f0\'e5}{\rtlch \af0 \ltrch \insrsid4342917 .}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 nor rain in Imola, for there has fallen the crowning of\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trrh777\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb +\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420%nw \ltrrow}\trowd \irow2\irowband2\ltrrow +\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 \trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\pard \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3235903 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 youth, for I call them Abel-shittim,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid1867703 Numbers }{\rtlch \af0 \ltrch \insrsid4342917 33:49.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for there fell the shield of warriors}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 1:21.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85, and we had a day of wrath}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 21:30.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and scorn and time tossed arrows +\par of hardship like crumbs. That strong person passes away over, this I eulogize and wail +\par over +\par the creation of the Lord}{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid3235903\charrsid1781117 C}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 heap}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 1 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 15, 9. +}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and worthless stillness to a land planted by the finger of God shall come up to fell us,\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 +\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb +\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell +}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3235903 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 over these my eyes flow with tears and my soul is mourning and moaning,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \stlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid14447357 Isaiah}{\rtlch \af0 \ltrch \insrsid4342917 29:2; } +{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 my}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid6120560 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 cheek wet with tears.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\sLSer\insrsiR4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid1867703 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 1:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + How can we plead, how can we prove our innocence only to bless H}{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 im}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 who gives and H}{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 im}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 who takes, for all is +\par from Him, and against our will }{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 we }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 live and die. }{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 I}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 f time erred, and it shows us such a thing from He who is near +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to all who call Him, who helps all his creatures, we ask to remove tears from our eyes and to sate +\par us with perfect joy}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 + 16, 11.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and his soul He will hide in the light hidden for his worshipers that He has bestowed\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 +\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb +\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell +upon His angels and hosts, and those who are near Him He will comfort and He will repair this breach among Israel for life, and so on\'85.\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\lastrow \ltrrow\ts11\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 +\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb +\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of Letter B}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , pp. 55\endash 56, Letter 26}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with three themes: +\par {\listtext\pard\plain\ltrpar \rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 1.\tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar\tx360\jclisttab\tx720\faauto\ls12\adjustright\rin0\lin720\itap0\pararsid6120560 +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lamentation and wailing over the deceased. +\par {\listtext\pard\plain\ltrpar \rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 \hich\af0\dbch\af0\loch\f0 2.\tab}}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 +idduk ha-din}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (\'93the rightness of divine judgment\'94) \emdash +\par }\pard \ltrpar\ql \li360\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin360\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1. Death is the way of the world; +\par 2. Death is a trial for the righteous; +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 3. \'93The Lord has given, and the Lord has taken away.\'94 +\par }{\rtlch \af0 \ltrch \insrsid6120560\charrsid1781117 3.\tab }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Condolence and prayer for the deceased. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil +\cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell Prince and worthy of Israel, the leader of the Diaspora of Ariel, my teacher, my father-in-law, may the Lord bless him. I looked forward to peace and there is none, for +\parmd the writ of your honor startled me, }{\rtlch \af0 \ltrch \insrsid15341698\charrsid1781117 it }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 destroyed my rest, hounded me when I heard that the apple of our eye has been taken away}{\rtlch \af0 +\ltrch \insrsid15341698\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \line for\line this my heart is sick,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 '.:17.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + my eyes stream with tears, and I fall prostrate, saying, there is no dew}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 +See above, Hebrew reads }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93tar,\'94}{\rtlch \af0 \ltrch \insrsid4342917 while it should be }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93tal.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + in Rimini and no rain in Imola, for there fell the shield of warriors}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 2 }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 1:21. }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , a glorious diadem}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1867703 Prov}{\rtlch \af0 \ltrch \insrsid4342917 . 4:9.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of + the young men. Behold I am calling them Abel Shittim}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid1867703 Num}{\rtlch \af0 \ltrch \insrsid4342917 . 33:49.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + for there he cast away the bitter, impetuous time, give half the burden of his hardships like crumbs. If a strong man}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 25:8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 will leave us land as an inheritance, death will pluck us, while }{ +\rtlch \af0 \ltrch \insrsid15341698\charrsid1781117 with }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a cedar planted by the finger of God, one shall come to fell us,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 14:8, }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + over these my heart is sorrowed,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch +\insrsid4342917 29:2; }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid7347137\charrsid1781117 my }{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 cheek day and night wet with tears}{\rtlch \af0 \ltrch \insrsid7347137\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 1:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid7347137\charrsid1781117 T}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 his I will take to heart, that this is the way of the }{\rtlch \af0 \ltrch \insrsid11696930\charrsid1781117 lowly }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +world, and that there is no escape from it, a time to cast away agony and a time for gathering.\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nbclbr%nb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\b|Prnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \asllx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid00000078\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrno\e \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108|trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12672551 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 For }{\rtlch \af0 \ltrch +\insrsid12672551\charrsid1781117 will not }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 our }{\rtlch \af0 \ltrch \insrsid12672551\charrsid1781117 C}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 reator discern this, }{\rtlch \af0 \ltrch +\insrsid12672551\charrsid1781117 and H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is emanations}{\rtlch \af0 \ltrch \insrsid12672551\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 On the angels }{\rtlch \af0 \ltrch +\insrsid12672551\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e casts reproach,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 4:18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for they quarreled as did the armies of the heavens, and the great lights withdrew their brightness.}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid442917 Stet in the ms. [}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 nokham}{\rtlch \af0 \ltrch \insrsid4342917 +], should be }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 nogham}{\rtlch \af0 \ltrch \insrsid4342917 . }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 2:10; 4:15.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 God put Abraham to the test}{\rtlch \af0 \ltrch \insrsid12672551\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp0059 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 Gen. 22:1.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12672551\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +hat more can I say, and how can I justify myself, only by saying, \'93the Lord has given, and the Lord has taken away, blessed be the name of the Lord.\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 1:21.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I ask that }{\rtlch \af0 \ltrch +\insrsid12672551\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e take away tears from our faces, and fill us with all good, and keep his soul in the bounds of life and give comfort\line to his loved one\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell And }{\rtlch \af0 \ltrch +\insrsid8983004\charrsid1781117 may he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 close this breach in Israel for life, Amen. I will not go on at length except to disperse salutations after bow}{\rtlch \af0 \ltrch +\insrsid8983004\charrsid1781117 ing}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid8983004\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +proper prostration to my lord and to all who accompany}{\rtlch \af0 \ltrch \insrsid8983004\charrsid1781117 him}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , from young to old\line and S.\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of Letter C}{\rtlch \ab\af0 \ltrch \cs16\b\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , 56, Letter 27.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash This letters has six themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls13\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Lamentation over the deceased. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Words of conciliation to the mourner: +\par }\pard \ltrpar\ql \li360\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin360\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1. Death is the way of the world. +\par 2. The Lord becomes sanctified by those close to him. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls14\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The consolation in death is that there is a reward in the World to Come for the activity of the deceased. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}Prayer for the deceased. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}There is no reason to increase mourning and wailing. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1493\'3f. \tab}Words of }{\rtlch \af0 \ltrch \insrsid8983004\charrsid1781117 support}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + for the mourner and his mother +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s9\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\tx450\faauto\outlinelevel8\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Text of the Letter +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +To my friend, the joy of my heart, His Honor, Zerahiah Halevy, may God protect and preserve him, son of Joseph Halevy, my brother-in-law, }{\rtlch \af0 \ltrch \insrsid13653733\charrsid1781117 of blessed memory}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , in Voghera in Genoa. +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin0\pararsid7368773 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 My faithful friend and dear one, pious one. My eyes are spent with tears}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:11.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + from having heard the evil tidings }{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 \'85 regarding }{\rtlch \af0 \ltrch \insrsid14752387\charrsid1781117 your }{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 dedicated }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid3935689\charrsid1781117 punctilious}{\rtlch \af0 \ltrch \insrsid14752387\charrsiAxYyu1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 father, }{\rtlch \af0 \ltrch +\insrsid14615051\charrsid1781117 of blessed memory}{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ow can I }{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 offer }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 support in this case}{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 ,}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8246\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 has hit like }{\rtlch \af0 \ltrch \insrsid14752387\charrsid1781117 a target }{\rtlch \af0 \ltrch +\insrsid8246\charrsid1781117 aimed at }{\rtlch \af0 \ltrch \insrsid14752387\charrsid1781117 an arrow?}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult-2059285659\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 3:12.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Childhood is a bad time for this one, an evil disease devoured him, torn by a beast and he is no more,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Gen. 37:34, \'93a savage beast devoured him; Joseph was torn by a beast.\'94}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 for God has taken him. This I will pay heed to for it is the way\line of}{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the world, a wheel that comes round}{ +\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 F}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +rom the defeat of mortality there is no escape}{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 ;}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 by }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 is close ones }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will be sanctified, our }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 C}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 reator and }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is angels will grant glory, and who will say to }{\rtlch \af0 \ltrch +\insrsid7368773\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 im what }{\rtlch \af0 \ltrch \insrsid7368773\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e should do}{\rtlch \af0 \ltrch +\insrsid7368773\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 When asking Him for the spirit he blew in our nostrils, the body will return to the dust from which it was taken}{\rtlch \af0 \ltrch +\lang4105\langfe1033\langnp4105\insrsid4141745\charrsid1781117 , and t}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he soul to God who gave it. In this we will find comfort, for the act of vanity, forsakenness, and lack, f +or the salvation of worlds\line we do have in the house of the King, the fruit of our deeds we eat in this world and as a fund for eternity forever that is unending}{\rtlch \af0 \ltrch \insrsid5601694\charrsid1781119 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 10\cell And what can be done except to beseech the Lord that he should store his soul with the othe +r souls of his pious ones and clear away tears from our faces, for what gain is there in more mourning and wailing and eulogizing, sackcloth and ashes, [}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 for}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 we] go to him, }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 but }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he shall not return to us. So, please, my friend, I have written that there is n +othing new, young or old}{\rtlch \af0 \ltrch \insrsid5601694\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + He is there, for that is Man, and Heaven forbid that we should sin against God. We must only accept the Divine Judgment, for }{\rtlch \af0 \ltrch \insrsid5601694\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e is just and upright, and }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 He can }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 kill us if }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 He should but }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 wish. }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 B}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 lessed be He. \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 N}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ow}{\rtlch \af0 \ltrch +\insrsid8259293\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the joy of my heart, listen to my voice}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 :}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 wipe}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + From this point to the end of the letter, part is cut off on the right side, the two sentences were completed by using the content of the following letter.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [the tear}{\rtlch \af0 \ltrch +\insrsid8259293\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 from your face and gird] you loins like a man and be strong and of good courage, and may your heart be with [your bereft, sighing mother] who is mourning \line +the husband\line of her youth and console [\'85]}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 days and the poor [\'85] I. and I [\'85]\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of Letter D}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri-73\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917Tcharrsid5066409 Ibid.}{\rtlch \af0 \ltrch \insrsid4342917 , 57, + Letter 28. This letter is somewhat shorter than the previous one. The phrases missing in this letter are found in the previous one, attesting to the fact that the first was written soon after Joseph Hacohen received the evil tidings, while the second, as + A. David points out in the notes there, was sent apparently because they were not certain that the previous one had reached its destination.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash This letter treats six themes: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls15\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid0000013 Lamentation over the deceased +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Words of conciliation to the mourner +\par }\pard \ltrpar\ql \li360\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin360\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1. There is no escape from death. +\par 2. God is sanctified by those close to him. +\par }\pard \ltrpar\ql \li360\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin360\itap0\pararsid8259293 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 3. The deceased le}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 ave}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 a blessing behind him. +\par {\listtext\pard\plain\ltrpar \ltrch \afs4 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls16\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a prayer for the deceased and condolences to the mourner +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}There is no reason to go to excess with mourning, since we will join the deceased and he will not return. +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}Accepting Divine Judgment +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1493\'3f. \tab}Words of consolation to the mourner and his mother +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s6\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 Text of the Letter +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +To my friend, the joy of my heart, the honorable Zerahiah Halevy son of my sister, may God protect her, Shalom}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell My God-fearing close companion. My heart }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 +is }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 broken, for Shaddai has made my lot very bitter}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Ruth}{\rtlch \af0 \ltrch \insrsid4342917 1:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I cried \'93aha\'94}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Ez}{\rtlch \af0 \ltrch \insrsid4342917 . 9:8.}}} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 since from the defeat of mortality there is no escape, young and old}{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid8259293\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will be sanctified by }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is close ones, and through }{\rtlch +\af0 \ltrch \insrsid8259293\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is angels }{\rtlch \af0 \ltrch \insrsid8259293\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e will cast reproach. In this I will find comfort, for the act of yanitv, sadness, and lack, \line for\line the salvation of worlds, my heart is in the house of the King, by his soul leaving a blessing behind, and what can be \line done\cell +}\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar +\s17\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +except to beseech the Lord that he store it with the other souls of his pious ones and grant consolation to the pious\line soul}{\rtlch \af156 \ltrhh \insrsid13653733\charrsid1781117 ,}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 \line +master of our Torah, your father, }{\rtlch \af156 \ltrch \insrsid13653733\charrsid1781117 of blessed memory}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +, and that he wipe away the tears from our faces, for what benefit do we gain from fasting and wailing\line nd eulogy sackcloth and ashes, to mourn for him, while we will go to him, and he will not return to us}{\rtlch \af156 \ltrch +\insrsid13653733\charrsid1781117 ?}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 \line And you, too, my friend, do not raise your voice to say that }{\rtlch \af156 \ltrch \insrsid13653733\charrsid1781117 all }{\rtlch \af156 \ltrch +\insrsid12391429\charrsid1781144 is over}{\rtlch \af156 \ltrch \insrsid13653733\charrsid1781117 ;}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 that }{\rtlch \af156 \ltrch \insrsid13653733\charrsid1781117 which w}{\rtlch \af156 \ltrch +\insrsid12391429\charrsid1781117 as decreed, God has accomplished. For there is\line nothing\line new}{\rtlch \af156 \ltrch \insrsid13653733\charrsid1781117 ;}{\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + everything comes from the earth and returns to it, and far be it from us to sin against the Lord. We must only\line accept\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 +\ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone +\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row +\ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell His Divine Judgment for }{\rtlch \af0 \ltrch \insrsid13653733\charrsid1781117 H}{\rtlch \af0 +\ltrch \insrsid3308931\charrsid1781117 e is righteous and upright. He c}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ould kill us, if }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +e would }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 but }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 wish so. }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 N}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ow hark to my voice, and wipe the tear from your face and gird your loins like a man, be strong and of good courage, and console your mother, my sister, who is sighing }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 and }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 desolate}{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 who }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 mourn}{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the husband of her youth}{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 .}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 As }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 much as I can}{\rtlch \af0 \ltrch \insrsid3308931\charrsid1781117 , I}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 will be for her\line and for you\line my friend, my companion, a brother and son, and I will favor you whenever I am able\'85\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 { +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \page [13] Two Letters of Condolence from Venice, Italy (early Seventeenth century)}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + Two letters from London mss. (British Library) Or. 5396 (Margaliouth catalog No. 1110, Institute of Microfilmed Hebrew Manuscripts, Jerusalem, film 6451), ff. 154b\endash +155a. I wish to thank the British Library and Dr. Mordechai Glatzer who helped me decipher the manuscript.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par +\par a) }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 a Condolence letter on the death of a brother}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1924178 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash + the name is }{\rtlch \af0 \ltrch \insrsid1924178\charrsid1781117 not }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 clarified. The date and place }{\rtlch \af0 \ltrch \insrsid1924178\charrsid1781117 of the }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 letter: Venice, 24 of Menahem [Av] 5377 (1617). The letter offered condolence on the death of a brother. }{\rtlch \af0 \ltrch \insrsid1924178\charrsid1781117 Either t}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +he letter writer, the sender, or }{\rtlch \af0 \ltrch \insrsid1924178\charrsid1781117 the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +copyist is apparently R. Judah Aryeh of Modena. The orthography is a practiced Italian hand and difficult to read. Most of the letter is based on biblical verses. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter deals with the following topics: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls17\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The sadness felt by the writer upon hearing the evil tidings +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}Praise of the deceased +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls17\adjustright\rin0\lin720\itap0\pararsid1924178 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The death of a righteous person }{\rtlch \af0 \ltrch \insrsid1924178\charrsid1781117 lleaves a mark}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}Accepting Divine Judgment +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls17\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The consolation the soul finds reposing in the Lord\rquote s sanctuary +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par Text of the Letter: +\par +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil +\cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 1\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11803606 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Long enough have we endured}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10636918 Psalms}{\rtlch \af0 \ltrch \insrsid4342917 123:4.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 wailing, bitter weeping,}{\rtlch \af32a1 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Jer. 31:14.}}} +{\rtlch \af0 \ltrch \insrsid11803606\charrsid1781117 drinking of the bitter root}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid11803606\charrsid1781117 }{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 3:15.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bad news +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid2970695 {\rtlch \af0 \ltrch \insrsid2970695\charrsid1781117 m}{\rtlch \af0 \ltrch \insrsid12803034\charrsid1781117 akes the bones feeble}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 See }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Prov}{\rtlch \af0 \ltrch \insrsid4342917 +. 15:30, \'93Good news puts fat on the bones.\'94}}}{\rtlch \af0 \ltrch \insrsid12803034\charrsid1781117 and when}{\rtlch \af0 \ltrch \insrsid2970695\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12803034\charrsid1781117 the news came of t}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 he capture of the Ark of the God,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 1 }{\rtlch +\af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 4:19.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the eyes of all Israel }{\rtlch \af0 \ltrch \insrsid2970695\charrsid1781117 were }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 on him, the breath of our life, the Lord\rquote s anointed,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 4:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the glory +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the g +eneration and its splendor, our master and sage, your brother, of blessed and pious memory, the sun shall be dark from his leaving us}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 13:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par and the stars withdraw their brightness}{\rtlch \af0 \ltrch \insrsid2970695\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 2:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for our stronghold has been stolen,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 See }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 24:13, \'93for your stronghold is destroyed.\'94}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the father of all who sit in tents and amidst herds}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Gen}{\rtlch \af0 \ltrch \insrsid4342917 . 4:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of Torah, \cell }\pard \ltrpar +\ql \li-111\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell +teaching it as Law, highly regarded by the Jews,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Esther}{\rtlch \af0 \ltrch \insrsid4342917 3:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he alone remains of the healers.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Josh}{\rtlch \af0 \ltrch \insrsid4342917 . 13:12, \'93he was the last of the remaining Rephaim.\'94}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The healers pulled him to his [eternal] sleep. Where is the one who could count? Where is the one who could weigh?}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 33:18. See also }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Hagigah}{\rtlch \af0 \ltrch +\insrsid4342917 15b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a lion of the company.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Shabbat}{\rtlch \af0 \ltrch \insrsid4342917 111b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par Woe to the generation that has lost its provider and woe to the ship that has lost its pilot.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 See }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 baba Bathra}{\rtlch \af0 \ltrch \insrsid4342917 91b, \'93Woe to the world that has lost its leader and woe to the ship that has lost its pilot.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + His booth has fallen, his hedge has departed, calling him \'93Repairer of }{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 fallen walls, restorer of lanes.}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'94}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 28:12.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Oh, that my head were water}{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 m}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 y eyes a fount of tears:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 8:23.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 it is +not sufficient to cry for the righteous person, he is gone, all the house of Israel \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1377594 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 shall bewail}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 10:6.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the boughs }{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 will }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 drip with moisture,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid16338915 Num}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 . 24:7.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 one who is worthy of palm-groves stretching out}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid16338915 Num}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 . 24:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 over a river and spring +\par waters, the death of a righteous man from any place makes}{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 a mark}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 See }{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid16338915 Gen. Rabbah}{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 68 (p. 775); }{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid16338915 Rashi}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 on }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid16338915 Vayetze}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 28:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Not only in the family +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 or tribe, in every city and in every province,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Esther}{\rtlch \af0 \ltrch \insrsid4342917 8:1 +7.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 but in all the Diaspora of Israel a great mourning +\par for the Jews}{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 with weeping and wailing.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid16338915 Esther}{\rtlch \af0 \ltrch \insrsid4342917 4:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Go forth and see if the pain will increase greatly for a small gnat +\par such as }{\rtlch \af0 \ltrch \insrsid1377594\charrsid1781117 I, the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 day for which I boasted. My heart is convulsed within me; terrors of death assailed him.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 + 55:5, where it states \'93assail me.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrqa\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 15\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1377594 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 He does not let me catch my breath,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 9:18.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for all toil there is some gain.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Prov}{\rtlch \af0 \ltrch \insrsid4342917 . 14:23.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 For a brother +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 trodden is more formidable than a stronghold like the bars of a fortress.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Prov}{\rtlch \af0 \ltrch \insrsid4342917 +. 18:19.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 About all of you I know that your strength is spent +\par on account of your groaning,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 +\ltrch \insrsid4342917 23:2, where it states \'93My strength is spent on account of my groaning.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 yet this is not too baffling for me,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Deut}{\rtlch \af0 \ltrch \insrsid4342917 +. 30:11, where it states \'93is not too baffling for you.\'94 }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 even by your wisdom +\par and your discernment}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Deut}{\rtlch \af0 +\ltrch \insrsid4342917 . 4:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that you know there is a judgment}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 19:29.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for this applies to all mankind,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Eccl}{\rtlch \af0 \ltrch \insrsid4342917 +. 12:13.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [to] the greatest of giants though he grows +\par as high as the sky.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 +\ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 + 20:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Prepare your hearts for the will of God and to Him you shall express gratitude and bend your knees and your assurances\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 20\cell }\pard \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid5833938 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 soothe his soul}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 94:19.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + who when on high will become refined in his good thoughts and deeds, of blessed memory, and He will make the tabernacle of Shiloh, the tent He hadEF set among men, }{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 78:60.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to dwell in the light}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Chron.}{\rtlch \af0 \ltrch \insrsid4342917 6:1.}} +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the Lord, d}{\rtlch \af0 \ltrch \insrsid5833938\charrsid1781117 wellings of refuge, for thus says}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + the Lord, for sufficient are our woes and your woes}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + This line appears separately at the top of manuscript folio 155.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and in Jerusalem is my consolation: Venice 24 Menahem 5377 (= 1617). +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s1\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch \af0\afs28\alang1037 \ltrch \fs28\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0\afs24 \ltrch +\fs24\insrsid12391429\charrsid1781117 b) }{\rtlch \ai\af0\afs24 \ltrch \i\fs24\insrsid12391429\charrsid1781117 Condolence letter from a Grandson to His Grandfather}{\rtlch \af0\afs24 \ltrch \fs24\insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid11747594 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and Its Recipient}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \emdash The letter opens without any name or address and appears }{\rtlch \af0 \ltrch \insrsid11747594\charrsid1781117 as }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +the continuation of folio 155a. The orthography is i +dentical to that of the previous letter. From the signature of the letter it is apparently the grandson who is writing to his grandfather (although in the body of the letter one does not find any expression of familial relation}{\rtlch \af0 \ltrch +\insrsid11747594\charrsid1781117 ship}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of grandson to grandfather). +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash a collection of biblical citations that express sorrow and agony. The letters deals with the following topics: + +\par The sorrow felt by the writer upon the untimely death of his relative +\par Accepting the Divine Judgment +\par Words of condolence +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell The sound of a mighty force,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 13:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + from a[p]athy(?) tidings saying for death has entered our fortresses to cut off}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Jer. 9:20, +\'93for death has climbed through our windows, has entered our fortresses, to cut off babes.}{\ltrch \rtlch \f0\fs20\lang1037\insrsid4342917 \'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the beloved of my soul +\par and my upright, faithful, beloved, sweet and pleasant, my pain plunged, and my body is stricken and withered like grass.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 102:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 pangs gripped me +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid11747594 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 like a woman in travail}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrd\lan%np1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 21:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I clapped hand}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:15.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 on thigh, I refused to be comforted, how could he wither before his time, his boughs flourishing}{\rtlch \af0 \ltrch \insrsid11747594\charrsid1781117 ?}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 15:32, +\'93He will wither before his tiSe, his boughs never having flourished.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a blameless, upright man who fears God,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 1:8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + beloved on high, pleasant below, when I think of this, I pour out my soul}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrparX \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 42:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1648584 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 of our loving together, wretched and humiliated, I walked about with him as though it were my brother}{\rtlch \af0 \ltrch \insrsid1648584\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 35:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid1648584\charrsid1781117 I}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 n the past I had a comforter +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 who might revive my spirit.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 1:16.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Alas! The Lord in His wrath has shamed}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 +\ltrch \insrsid4342917 2:1.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a man for whom these are for him, he dies, he is brought to the house assigned for all the living.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 30:23.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid1648584 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The hair of my flesh bristles}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 4:15.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + when I mention him, my bereavement,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch +\insrsid4342917 35:12.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 crushing my bones}{\rtlch \af0 \ltrch \insrsid1648584\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 4211.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 even as I wail and cry out}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 30:20.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par to you Lord who I know like an arrow pierces your liver}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Prov. 7:23.}}} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and your honor will come to the dust}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 7:6, \'93and lay my body in the dust.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 from exalting such a wonderful +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 precious gem as this, for who can go to the divine while his mouth be filled with arguments}{\rtlch \af0 +\ltrch \insrsid1648584\charrsid1781117 ?}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 +\ltrch \insrsid4342917 23:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid1648584\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e will accept }{\rtlch \af0 \ltrch +\insrsid1648584\charrsid1781117 both }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 good }{\rtlch \af0 \ltrch \insrsid1648584\charrsid1781117 and}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard \ltrpar +\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid002048 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 bad,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsi1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Eccl}{\rtlch \af0 \ltrch \insrsid4342917 . 12:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and we concede in the midst of the +event that He is the fashioner, He is the determiner.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch ]`f0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 See }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Avot}{\rtlch \af0 \ltrch \insrsid4342917 4:22, \'93He is the fashioner, He the creator, He the discerner.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid1648584\charrsid1781117 L}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 et us bow down and kneel, and bend the knee}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 95:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 He will send an end to darkness}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 28:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and to all disasters,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Text reads }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93mg\lquote \'93; }{\rtlch \af0 \ltrch +\insrsid4342917 it should be }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93pg\lquote .\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 I }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Kings}{\rtlch \af0 \ltrch \insrsid4342917 5:18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ; he will protect those who remain \'85 + May his soul be bound in the bundle of life, he will give to your worthy self +\par and to all accompanying him here with us today, goodness, and blessing, and life, and peace +\par his grandson and his servant in all his tribulations}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 Text reads }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917 z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 aroto\'94;}{\rtlch \af0 \ltrch \insrsid4342917 it should be }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93}{\rtlch +\ai\af0 \ltrch \i\cf2\insrsid4342917 z}{\rtlch \ai\af0 \ltrch \i\insrsid4342917 arotav.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \line that he undergoes:\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth817\clshdrawnil \cellx709\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7711\clshdrawnil \cellx8420\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par \page [14] a Letter of Condolence to a Brother-in-law on the Death of His Wife \emdash Sister of the Writer (Italy, 17}{\rtlch \af0 \ltrch \super\insrsid12391429\charrsid1781117 th}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 century) +\par +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1648584 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Author of the Letter and Its Recipient }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \emdash Isaac b. Manoah Lattes, from Cuneo, in the Piedmont region of Italy, wrote this condolence letter in }{\ltrch \af262 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \'f9"\'f4}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 (1620)}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \%0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 On the history of the Lattes family, see J. Buchsenbaum, }{\rtlch \ai\af0 +\ltrch \i\insrsid4342917 Iggerot Melammedim,}{\rtlch \af0 \ltrch \insrsid4342917 Tel Aviv 1986.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to his brother-in-law Jonah b. Solomon Crescas upon +the death of his wife (sister of the letter writer), who passed away }{\rtlch \af0 \ltrch \insrsid14295563\charrsid1781117 i}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 n Adar 2 of that year. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +\par Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter consists of biblical and talmudic citations that the writer applies and adapts to the poetic style he uses to euologize his sis +ter Luna, whom he metaphorically compares to the moon. The letter deals with the following areas: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls18\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Description of the pain and sadness over the death of the sister. +\par {\listtext\pard\plain\ltrpar \s17 \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}}\pard\plain \ltrpar\s17\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls18\adjustright\rin0\lin720\itap0\pararsid16327472 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 Lamentation +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}}\pard\plain \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls18\adjustright\rin0\lin720\itap0\pararsid16327472 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Eulogy +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}Words of love and consolation. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 :}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 Ms Moscow\endash Ginzberg 114/6, Institute for Microfilmed Manuscripts, film 6794. I express my appreciation to the Moscow Library and to the Institute for Microfilmed Manuscripts and to Dr. Abraham David for his assistance.}} +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par Copy of a letter I sent to my brother-in-law, our honorable teacher Jonah, with the lamentations\line that I recited over the passing of my sister Luna, May her soul be bound up in the bond of everlasting life. +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil +\cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell My dear, esteemed brother-in-law, how difficult it is for us to suf +fer this separation, like the darkness that has has no dawn,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 8:20, \'93there shall be no dawn.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as beautiful +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid534005 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 as the moon with none to compare, this wise and pleasant one, the }{\rtlch \af0 \ltrch +\insrsid14295563\charrsid1781117 glory of the }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 daughter of the king is }{\rtlch \af0 \ltrch \insrsid14295563\charrsid1781117 inward.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 +\chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 45:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid14295563\charrsid1781117 M}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 y sister, your wife \emdash may her soul be bound up in the bond of everlasting life \emdash is gone. }{\rtlch \af0 \ltrch \insrsid14295563\charrsid1781117 N}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 o matter how much I may }{\rtlch \af0 \ltrch \insrsid534005\charrsid1781117 wail}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s21\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid534005 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and be embittered with a broken heart and bitter voice, over this great loss, I will not be able to withhold from sighing my sigh}{\rtlch \af0 \ltrch \insrsid534005\charrsid1781117 s}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , I will groan silently over you and over us +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid534005 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and I will sorely cry \emdash for the one who }{\rtlch \af0 \ltrch \insrsid534005\charrsid1781117 has left }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 never to come back}{\rtlch \af0 \ltrch +\insrsid534005\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Jer}{\rtlch \af0 +\ltrch \insrsid4342917 . 22:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid534005\charrsid1781117 S}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 urely I weep on account of this beauty }{\rtlch \af0 \ltrch +\insrsid534005\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is going to rot in the earth,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4027135 Berakhot}{\rtlch \af0 \ltrch \insrsid4342917 5b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and indeed I say, summon the dirge-singers, let them come.}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 9:16.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 My being }{\rtlch \af0 \ltrch \insrsid8264474\charrsid1781117 melts}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid8264474\charrsid1781117 a}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 way,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrqar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:11.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 my strength is spent }{\rtlch \af0 \ltrch +\insrsid534005\charrsid1781117 because }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of my groaning,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 23:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 over the ruin of the daughter of my people.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 }{\rtlch \af0 \ltrch +\i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 3:48.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 My head is light, my arm light,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 }{\rtlch \ai\af0 \ltrch +\i\cf2\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid10430484 H}{\rtlch \ai\af0 \ltrch \i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid10430484 agigah}{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 15b.}}}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 my eyes a fount of tears}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang3082\langfe1033\langnp3082\insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\lang3082\langfe1033\langnp3082\insrsid4342917\charrsid10430484 Jer}{\rtlch \af0 \ltrch \lang3082\langfe1033\langnp3082\insrsid4342917 . 8:23.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 ,\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow0\irowband0\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 5\cell flowing water over the misfortune, I lament for my soul is satiated with bad tidings, I grieve with wailing, and I declare this lament, that I recited over her in stanzas, +\par to lament over her openly in the markets and at the street corners,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid4140030 Song of Songs}{\rtlch \af0 \ltrch \insrsid4342917 3:2, \'93in the streets and the squares.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for it was the Lord\rquote s doing.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid10430484 Josh}{\rtlch \af0 \ltrch \insrsid4342917 +. 11:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 From the sorrow of my soul it shed, }{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 119:25, \'93my soul clings to the dust.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I wrote myself a weary scroll, I will lift up my head \cell +}\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 8\cell and say in a weak voice:\cell +}\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\irdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 9\cell Declare a lament in + bitter voice; for this anguish is as of a woman bearing her first child:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 4:31, \'93I hear the anguish as of a woman bearing her first child.\'94 }}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult-90\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell +When the sun set and it was very dark,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Gen}{\rtlch \af0 +\ltrch \insrsid4342917 . 16:17.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for it became }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 le-yonat elem re}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid12391429\charrsid1781117 h}{\rtlch +\ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 okim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 :}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 56:1, \'93}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4027135 al yonat elem re}{\rtlch \ai\af0 \ltrch \i\cf2\insrsid4342917\charrsid4027135 h}{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid4027135 okim}{\rtlch \af0 \ltrch \insrsid4342917 .\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 11\cell My brother come to the gate; the wound embitters us:\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow5\irowband5\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 -65\cell My moon is gloomy,}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 30:28, +\'93I walk about in sunless gloom.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the second Adar turned to mourning and wailing:\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow6\irowband6\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 13\cell The third in seven plus ten; the diadem has been taken from me:\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow7\irowband7\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 14\cell +In every facet she was good; she was like the fruitful vine:}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1030\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 128:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow8\irowband8\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell In the year }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 shin peh}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + [1620] from the creation; her passing making me wrathful \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow9\irowband9\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 16\cell Passed Luna, the fount of discernment; to give of her fruit in the palace of the king:\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow10\irowband10\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 17\cell Though I might wander a great distance, I will find none as worthy as she}{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 .}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow11\irowband11\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 18\cell I am saddened because her splendor faded away; I cry out, I complain, I moan}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 77:4.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow12\irowband12\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 19 \cell I wo +uld counteract her being crushed; had she not been taken while still young}{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 28:4, \'93They shall be like an early fig\'85whoever sees it devours it while still in his hand.\'94}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow13\irowband13\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnon \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 20\cell For this my heart is faint within me; I say woe unto me; +\par \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow14\irowband14\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 21\cell I am overwrought, I cannot speak,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 77:5.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 I roar from the groaning of my heart, when my spirit fails, }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 selah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 142:4, \'93When my spirit falls within me.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and in my +eulogizing, I become overwrought about her, with tears flowing }{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 as }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 pure olive oil}{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 .}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow15\irowband15\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 22\cell }{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his crushing, virtually crushed to less than the worthy size,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Eiruvin}{\rtlch \af0 \ltrch \insrsid4342917 5b; +}{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Hulin}{\rtlch \af0 \ltrch \insrsid4342917 79b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 an olive was gathered from the topmost branch,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 17:6.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 we labored and had no respite, two berries or three as the gatherer and beater of the \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow16\irowband16\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 23\cell olive, \'85\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow17\irowband17\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 24\cell }{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 O}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +ur thoughts, agony, and sadness will find relief, saying, this will comfort us, all of these joined forces in Vale of Weeping,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Gen}{\rtlch \af0 \ltrch \insrsid4342917 . 14:3, \'93all the latter joined forces at the Valley of Siddim.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and one would call to the other,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch +\insrsid4342917 6:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 then one said thus \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow18\irowband18\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch\insrsid12391429\charrsid1781117 25\cell and another said thus,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 I }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Kings}{\rtlch \af0 \ltrch \insrsid4342917 22:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 there we wailed and wept,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 137:1.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + until all my soul was spent I had no spirit any more, for your ruin is as vast as the sea,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 2:13.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the Lord gave me to drink\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow19\irowband19\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 26\cell +hemlock and weeping, and the pain increased greatly }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 hu}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85, and to you my brother, what can I give you as + witness, what can I match with you to console you}{\rtlch \af0 \ltrch \insrsid791178\charrsid1781117 ?}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid4027135 Ibid}{\rtlch \af0 \ltrch \insrsid4342917\charrsid5066409 .}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow20\irowband20\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 27\cell +I am in need of consolation, my Lord will heal the crushing wound. This is my comfort in my affliction, that }{\rtlch \af0 \ltrch \insrsid5848573\charrsid1781117 Y}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 our promise has preserved me,}{\rtlch +\af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch +\i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 119:50.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that the deceased of good reputation is happy \cell +}\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow21\irowband21\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 28\cell and wor +thy is his portion, that his illness was not as his youth, but this do I call to mind}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 21:3.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 that the neighbor women call her there, saying a bundle of myrrh \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow22\irowband22\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 29\cell has left us, and of the bounteous crop of the moons}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid6452855 Deut}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 . 33:14.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 we have tasted: she was seven and twenty years old, a year for each day, a year to each day,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Num}{\rtlch \af0 \ltrch \insrsid4342917 . 14:34; }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Ez}{\rtlch \af0 \ltrch \insrsid4342917 . 4:6.}}}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 were like the days of the moon;\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow23\irowband23\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 30\cell in clouds of myrrh and frankincence,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid40@7135 Song of Songs}{\rtlch \af0 \ltrch \insrsid4342917 3:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + of bright shining face and eyes shining like the moon, of great charm and Rabbi Hanina [play on Heb. word }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 hen}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 - charm], and the homilet +ic meaning will be understood thusly}{\rtlch \af0 \ltrch \insrsid5848573\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 \trowd \irow24\irowband24\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 +\par page 2 +\par \ltrrow}\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1 +\cell Twenty-seven years of age in sin, at the age of seven in beauty, a God-fearing woman, may she be praised,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Prov}{\rtlch \af0 \ltrch \insrsid4342917 . 31:30.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 therefore I have hope}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn +{\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 3:21; 3:24.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + that her interests and}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Prov}{\rtlch \af0 +\ltrch \insrsid4342917 . 31:18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 reward be from God, \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 2\cell in happiness in the land of living,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 142:6.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 selah}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 , for her good name and praise, while we for our transgressions survive to groan, she\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 3\cell +the pit [of the grave] will be a resting place for her, in the palaces of the Mothers, and my princess, the one who raised me, my parent [mother] will also tell her, \'93enter in peace, crown of her \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 4\cell husband,\'94}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Prov}{\rtlch \af0 \ltrch \insrsid4342917 +. 12:4, and from the liturgical poem }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93Lekhah Dodi.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the wise women, her mothers, all their bones will say, chanting,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 35:10.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93enter, O bride; enter, O bride,\'94}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360Yslmclt1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 See \'93}{ +\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid4027135 Lekhah Dodi}{\rtlch \af0 \ltrch \insrsid4342917 .\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and as Sarah and Rachel long ago did not \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell +open a mouth, this I will expound for you, my brother-in-law, that your love will not leave us, for our love for you is more wonderful than the love of women}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 II }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 1:26.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and as a peg fixed\cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 6\cell in a firm place}{\rtlch \af0 +\ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\lane1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 22:23, \'93 +I will fix him as 5ca3ca7f1af46c13 peg in a firm place.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in each and every time, and with this I will suffice for appealing over my departed one, and I pray to the +one who consoles mourners, may He make us whole again}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid6452855 Hosea}{\rtlch \af0 \ltrch \insrsid4342917 6:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow5\irowband5\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwjidth6H5\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 7\cell +and show us consolation of Zion, where he will comfort us for our agony in the building of his hall and in their well-being among all of His people Israel, and he will fulfill for us the verse, \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow6\irowband6\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl-2726409648626460095\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 8\cell +saying, He will destroy death forever, My Lord God will wipe the tears away}{\rtlch \af0 \ltrch \insrsid5848573\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 25:8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid5848573\charrsid1781117 Y}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 ou shall find comfort in Jerusalem}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 66:13.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 [written at] Cuneo}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 The letter writer was from Cuneo.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'85\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow7\irowband7\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 9\cell In the year 5380}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 Hebrew numerology.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (= 1620) it is most holy,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 6:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow8\irowband8\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell +My eyes pine away from affliction;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch +\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch +\i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 88:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 my heart is astir, I am like +a sea lion; I am the man who has known affliction;}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 3:1.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow9\irowband9\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 11\cell a wounded gnat Isaac Lattes: your brother-in-law and your servant writing tearfully: reciting the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 shema}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \'85\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow10\irowband10\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl +\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 13\cell My master and ruler, my esteemed brother-in-law Jonah Crescas of the Nice community.\cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow11\irowband11\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidh1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row }\pard \ltrpar\ql %n0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s27\qj \fi-357\li357\ri0\sb120\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin357\itap0 \rtlch \af0\afs24\alang1037 \ltrch \scaps\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 [15] Condolence Letter over the Death of an Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Israel Gabbai in Cincinnati +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Authors of the Letter and the Recipient}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash This letter was written by rabbis and leaders of Sefardi and Ashkenazi communities in Tiberia}{\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 s}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , on 17 Kislev 5643 (1883). The letter is directed to \'93Pekidei ve-Amarkalei Arei ha-Kodesh\'94 in Amsterdam through whom the Tiberians received contributions collected in Cincinnati, Ohio. +\par }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Content of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash The letter contains words of consolation over the death of R. Haim Mazias, the Ere}{\rtlch \af0 \ltrch +\cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Israel g +abbai in Cincinatti, who passed away on the first of Heshvan 5743. The letter deals, among other things, with praise for the deceased and for his many charitable acts on behalf of Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 Israel.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 + One page in a ms. measuring 26x24 cm (Ms. 3172, JTSA Library \endash New York); I +would like to express my gratitude to the library for permission to publish this ms. The letter includes four short introductory lines and 19 lines of text. At the end are the holographs of ten rabbis and community leaders of Ashkenazic and Sefardic commu +n +ities in Tiberias. On the right side are signatures of rabbis and leaders of the Sefardic community: Abraham Halfon, Joseph David Abulafia, and Simon Ivri; on the left, the signatures of the rabbis and leaders of the Ashkenazic community: Abraham Joseph H +alevy, Mordecai ?, Yisachar Berish}{\rtlch \af0 \ltrch \insrsid4342917\charrsid1276346 , Samuel Shemayah Hacohen, Aaron Samuel ben Adoni }{\rtlch \af0 \ltrch \insrsid4342917 +Avi ha-Rav, Abraham Abali Baharab Todros Hacohen, Haim Baratz Zevi Hirsch Shub. On these scholars, see E. Avisar, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 Sefer Teveryah }{\rtlch \af0 \ltrch \insrsid4342917 (The book of Tiberias) (Jerusalem, 1973), 272 +\endash 312.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The letter covers six themes, namely: +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1488\'3f. \tab}}\pard \ltrpar\ql \fi-360\li720\ri0\sl480\slmult1\widctlpar +\tx360\jclisttab\tx720\faauto\ls19\adjustright\rin0\lin720\itap0\pararsid16327472 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Opening greetings to the community leaders +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1489\'3f. \tab}The notice received about the death of R. Haim Mazias +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1490\'3f. \tab}Lamentation and eulogy +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs44\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1491\'3f. \tab}The good that awaits the departed one +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1492\'3f. \tab}The community\rquote s pledge for Torah study in memory of the deceased +\par {\listtext\pard\plain\ltrpar \ltrch \afs2 \rtlch \f262\fs24\lang1037\insrsid12391429\charrsid1781117 \u8207\'3f\u1493\'3f. \tab}Soothing words and condolences to the deceased\rquote s family +\par }\pard\plain \ltrpar\s17\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af156\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af156 \ltrch \insrsid12391429\charrsid1781117 + +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 +Text of the Letter}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 : +\par (The letter is divided according to the order of the rows in the original.) +\par B\'94H 23 Tevet 5643 (1883) +\par \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 1\cell }\pard\plain \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl +\tx360\faauto\adjustright\rin0\lin189 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \'93 +To the noble one of the children of Israel the pillars and stanchions upon which the Jewish community stands, they are their kings their princes who stand at the ready to the aid of the Lord among the warriors. +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid3813420 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 To you sirs who are of the high masters, princes, and deputies of the Pekidi ve-Amarkalei Ere}{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 z}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Israel who belong to }{\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 the}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 great Jewish community +\par Amsterdam}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 , }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 may He protect it, Amen}{\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + Lord}{\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 may You protect them and encompass all of them with favor and take them +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and bear them forever among the stars with their radiance, may it be His will, Amen}{\rtlch \af0 \ltrch +\insrsid3813420\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow0\irowband0\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trftsWidthA3\trwWidthA72\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1 +\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 5\cell }\pard\plain \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\txjA360\faauto\adjustright\rin0\lin189\pararsid3813420 \rtlch +\af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 F}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 rom receipt of your pure letter, written on the 11}{\rtlch \af0 +\ltrch \super\insrsid12391429\charrsid1781117 th}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of Marheshvan 5643}{\rtlch \af0 \ltrch \insrsid3813420\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid3813420\charrsid1781117 w}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 e saw that was written, we read the text, and there descended on us a great \line +darkness, and we became sorely anxious over the bad tidings that were real, for the reaper has come, the powerful has become chaff. Of the taking away of the ark of the Lord, the righteous rabbi Morenu ve-Rabbenu }{\rtlch \ab\af0 \ltrch +\b\insrsid12391429\charrsid1781117 Hayyim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 b. R. David }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Mazias}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, of blessed memory, born in Biale, +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +at the end of the Sabbath, the eve of Sunday, on the New Moon of Heshavan 5643. He who was the gabbai for the Land of Israel among the Jewish community of }{\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 Cincinnati}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and the surrounding towns, who served steadfastly many years, seeking the good of his people, and all of his deeds were carried out faithfully, +\par performed wholeheartedly. During this righteous person\rquote s entire life, he tried to enhance the benefit for the reside +nts of the communities of the Four Lands, woe to the land of Israel which has lost this great man, a man suffused entirely with holiness and piety. For a }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 hakham}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 who has died we have no +\par replacment. There is no pious one, no humble one, woe to the ship that has lost its captain. And on the day we heard this bad tiding, shaking the land of Israel 400 }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 parsot}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 by 400 }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 parsot}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, and so great was it on that day and the sound of moaning was heard. We found angels of peace crying bitterly,\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow1\irowband1\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trftsWidthA3\trwWidthA72\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 10\cell }\pard\plain \ltrpar +\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189\pararsid2189740 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +What has the Lord done to us by putting out our right eye}{\rtlch \af0 \ltrch \insrsid2189740\charrsid1781117 ?}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 1 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Samuel}{\rtlch \af0 \ltrch \insrsid4342917 11:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid2189740\charrsid1781117 Who }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 will protect us, a leader at our head}{\rtlch \af0 \ltrch \insrsid2189740\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The sun was dark when it rose}{\rtlch \af0 \ltrch +\insrsid2189740\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid10882959\charrsid1781117 }{\ltrch \rtlch \cs16\f0\fs24\lang1037\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\ltrch \rtlch \cs16\f0\fs20\lang1037\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 13:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and the moon darkened, and the stars withdrew their brightness}{\ltrch \rtlch +\f0\fs24\lang1037\insrsid12391429\charrsid1781117 .}{\ltrch \rtlch \cs16\f0\fs24\lang1037\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\ltrch \rtlch \cs16\f0\fs20\lang1037\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{ +\rtlch \af0 \ltrch \i\insrsid4342917\charrsid16335552 Joel}{\rtlch \af0 \ltrch \insrsid4342917 2:10.}}}{\ltrch \rtlch \f0\fs24\lang1037\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Over this the earth will mourn,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid4027135 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid15421667 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 4:28.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and a stone from the wall,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid15421667 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid15421667 Habakkuk}{\rtlch \af0 \ltrch \insrsid4342917 2:11.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 writhing and screaming in her pangs,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid15421667 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 26:17.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for the kings of Judea and its princes, for them it is fitting +\par for the weeping, weeping of the rivers, for them it is fitting to lament as sadly as jackals, as mournfully as the ostriches.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid14447357 Micah}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 1:8.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189\pararsid10882959 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 That day is a day of distress and chastisement,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 2 }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid1276346 Kings}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 19:3.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 a day of calamity and desolation,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \ai\af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid1276346 Zeph}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 . 1:15.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 for there the shield of warriors lay rejected,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 2 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \insrsid4342917 1:21.}}} +{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 one in a generation, he is its glory, he is its splendor, as we said in his shadow we will live,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 4:20.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 like a lofty wall.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 30:13.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Because of this our hearts are sick, because of these our eyes are dimmed,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs0\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid11416988 Lam.}{\rtlch \af0 \ltrch \insrsid4342917 5:17.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that our eyes may run with water,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Jer}{\rtlch \af0 \ltrch \insrsid4342917 +. 9:17, where it is written: \'93That our eyes may run with tears.\'94}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 over that very beauty wasted in the soil.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote +\ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \insrsid4342917 See}{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid15421667 Berakhot }{\rtlch \af0 \ltrch +\insrsid4342917 5b.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Who can tell all the mighty acts of the Lord, proclaim all His praises,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \af0 \ltrch +\i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 106:2.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and our voice like the voice of mighty waters to make his voice heard on high. To stir the heart of our fellow Jews. +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189\pararsid10882959 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +To hold on toc a fortress of the Holy Land, to have pity on the earth, the dwellers of Machtesh}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch Tfs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid1276346 Zeph}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 . 1:11.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the poor and the wise of Erez Israel, who live in need and sorrow in my dwelling and from excess of work, and daily they will seek }{\rtlch \af0 \ltrch \insrsid10882959\charrsid1781117 H}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 im, and surge to }{\rtlch \af0 \ltrch \insrsid10882959\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +im from the ends of the earth and faraway seas. Bundles on their shoulders, their vows and their donations +\par }\pard \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +as pledged by each man according to his blessedness, for the four lands of the living, may they be built and set up firmly +soon in our days. And it is incumbent upon them to take his word to strengthen their hand (i.e., to support the poor) so that they should do wisely in all that }{\rtlch \af0 \ltrch \insrsid10882959\charrsid1781117 they }{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 do. Ask now and see, to where has the chief herdsman gone,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1031\langfe1033\langnp1031\insrsid4342917 1 }{\rtlch \af0 \ltrch \i\lang1031\langfe1033\langnp1031\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \lang1031\langfe1033\langnp1031\insrsid4342917 21:8.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and where }{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 has left his flock. They are astray\cell }\pard\plain \ltrpar +\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \trowd \irow2\irowband2\ltrrow +\ts11\trgaph108\trleft-108\trftsWidth1\trftsWidthA3\trwWidthA72\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt +\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7853\clshdrawnil \cellx8420\row \ltrrow}\trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth7925\clshdrawnil \cellx8492\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 15\cell }\pard\plain \ltrpar +\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189\pararsid12651379 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +in the land}{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 ,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid1276346 Ex}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 . 14:3.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 scattered to all its corners. }{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is pathways are not known, for a wind blew in him, and he was still in his prime}{ +\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +hey called, often to gaze upon the beauty of the Lord, to frequent His temple.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 27:4.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 As the mortal has passed away the pain has grown considerably, but what can we answer}{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 ?}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 He is righteous +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0\pararsid12651379 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 and righteous is }{\rtlch \af0 \ltrch \insrsid12651379\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +is judgment. So declared His wisdom, may He be blessed, blessed is the One who decrees the judgment. May it be His will that his good deeds will be remembered in + the world that is all good, and may the soul of our fellow be bound up forever in the bundle of life,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 1 }{\rtlch \af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid4140030 Sam.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 25:29.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 the deceased will enjoy the holy fruits of the heavens with the souls of the heavenly }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 Hasidim}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch\insrsid12391429\charrsid1781117 who sit before the Lord and enjoy the splendor of }{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 H}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is Divine presence. The righteous one}{\rtlch \af0 \ltrch \insrsid5536099\charrsid1781117 s}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + sit with their crowns on their heads. His holy work has passed, and he now prays for his children and actions. Let it be for them a shield,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \ai\af0 \ltuch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid1276346 Deut}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 . 32:38.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 an encircling shield}{\rtlch \af0 \ltrch\insrsid5536099\charrsid1781117 .}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1 +\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch +\lang1036\langfe1033\langnp1036\insrsid4342917 }{\rtlch \af0 \ltrch \i\lang1036\langfe1033\langnp1036\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \lang1036\langfe1033\langnp1036\insrsid4342917 91:4.}}}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid5536099\charrsid1781117 D}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 o not see a sign like this anymore (i.e., pain and mourning).}{\rtlch \af0 \ltrch +\insrsid5536099\charrsid1781117 F}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 rom now on may we be destined for good, and sorrow and sigh flee,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar +\pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 +\chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 35:10.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and may there be well-being, praise, and joy. In }{ +\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 their }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 old age they still produce fruit,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 92:15.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 they rejoice in their going forth and are glad in their returning,} +{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 From the liturgical poem for the Sabbath, }{\rtlch \ai\af0 \ltrch \i\insrsid4342917 \'93el Adon.\'94}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and wealth and happiness at their right and at their left}{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid3028086\charrsid1781117 H}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is produce shall not bend to the earth}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 15:29.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (}{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 m}{\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 ay it be the will of the Lord). And for all the people of the congregation he shall make expiation.}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4403687 Lev.}{\rtlch \af0 \ltrch \insrsid4342917 16:33.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 The Lord be with you,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Ex}{\rtlch \af0 \ltrch \insrsid4342917 . 10:10.}} +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 you and your children,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 115:14.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 may there be well-being within their ramparts, peace in their citadels,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 122:7.}}}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 may there yet be heard in their courtyards the sound of mirth and gladness}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 7:34.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 (Amen. May it be the will of the Lord)}{\rtlch \af0 \ltrch +\insrsid3028086\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 We ourselves clarified concerning that which is obligatory upon us by inquiring of ten }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 talmidei hakhamim}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 from among the scholars and rabbis \cell }\pard \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\trowd \irow3\irowband3\ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567 +\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7925\clshdrawnil \cellx8492\row \ltrrow}\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin0 {\rtlch +\af0 \ltrch \insrsid12391429\charrsid1781117 20\cell }\pard\plain \ltrpar\s20\ql \fi-189\li189\ri0\sl480\slmult1\widctlpar\intbl\tx360\faauto\adjustright\rin0\lin189 \rtlch \af0\afs24\alang1037 \ltrch +\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of the Sephardi}{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 c}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + community and of the Ashkenazi}{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 c}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + community, and we took upon ourselves the study of the Zohar and passages of the Mishnah in the amount determined by the rabbis for the benefit of his soul, and we lit olive oil upon the grave of the holy }{\rtlch \ai\af0 \ltrch +\i\insrsid12391429\charrsid1781117 tana}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Rabbi Meir BA\rquote al ha-Nes, May his virtue stand us in good stead, for the repose of his soul, and after the study +\par we conduct}{\rtlch \af0 \ltrch \insrsid3028086\charrsid1781117 ed}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the prayer for the dead for the Rabbi, the }{\rtlch \af0 \ltrch \cf2\insrsid12391429\charrsid1781117 Z}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 addik, of blessed memory, and to differentiate between the dead and the living we made a blessing (}{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mi she-beirakh)}{\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 over his descendants. And so we shall do, God willing, on the anniversary [of his death]. May it be God\rquote s will that his soul live a happy life and his children shall inherit the land,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid3356114 Ps.}{\rtlch \af0 \ltrch \insrsid4342917 25:13. +}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the cry \'93Wrack and ruin\'94 shall no more be heard in their land,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar +\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch +\af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 60:18.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 my Lord God wipe the tears away,}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch \af0 \ltrch \i\insrsid4342917\charrsid4140030 Is.}{\rtlch \af0 \ltrch \insrsid4342917 25:8.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 He will destroy death forever,}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 \tab }{\rtlch +\ai\af0 \ltrch \i\insrsid4342917\charrsid15421667 Ibid}{\rtlch \af0 \ltrch \insrsid4342917\charrsid5066409 .}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 they shall never languish again.}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid15421667 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Jer}{\rtlch \af0 \ltrch \insrsid4342917 . 31:11.} +}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Their children are with them always}{\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch\af0\afs20\alang1037 \ltrch \fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \af0 +\ltrch \i\insrsid4342917\charrsid10509721 Job}{\rtlch \af0 \ltrch \insrsid4342917 21:8.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and their descendants will spend their days and years well. Length of days, years of life and well being,}{ +\rtlch \af0 \ltrch \cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \cs16\super\insrsid4342917 \chftn }{\rtlch \af0 \ltrch \insrsid4342917 }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Prov}{\rtlch \af0 \ltrch \insrsid4342917 . 3:2.}} +}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 Amen, may thisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthisthis all be fulfilled, and as well all the words of the sighing and moaning who sign here in the holy city of Tiberias, may it be rebuilt. 15 Kislev 5643 from the creation, with great stren +gth and peace.\'94\cell }\pard\plain \ltrpar\ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 \trowd \irow4\irowband4\lastrow \ltrrow\ts11\trgaph108\trleft-108\trftsWidth1\trpaddl108\trpaddr108\trpaddfl3\trpaddfr3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone +\cltxlrtb\clftsWidth3\clwWidth675\clshdrawnil \cellx567\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth7925\clshdrawnil \cellx8492\row }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar +\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard\plain \ltrpar\s21\qj \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid11090010 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\insrsid12391429\charrsid1781117 The feature common to all the letters presented here is their special style that generally included great }{\rtlch \af0 \ltrch \insrsid10445282\charrsid1781117 shock }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +or an expression of sorrow over the misfortune that had occurred, showering praises on the deceased (the crowns placed on the head of the deceased}{\rtlch \af0 \ltrch \insrsid11090010\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + }{\rtlch \af0 \ltrch \insrsid11090010\charrsid1781117 which }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +depended upon the closeness of the relation to the deceased, his stage in life, and the status of his family members), a sense of loss and the great void left by the deceased\rquote s no longer being present, statements containing acce +ptance of the Divine judgment or expressions intended to express the uselessness of excessive mourning, words of consolation and blessing for the mourner\rquote s family. Depending on the writer and recipient of the letter, other topics might be added. + +\par }\pard\plain \ltrpar\s6\qj \li0\ri0\sl480\slmult1\keepn\widctlpar\tx360\faauto\outlinelevel5\adjustright\rin0\lin0\itap0 \rtlch \ab\af0\afs24\alang1037 \ltrch \b\fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch +\scaps\insrsid12391429\charrsid1781117 +\par B. Condolence by Telephone +\par }\pard\plain \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 \rtlch \af0\afs24\alang1037 \ltrch \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +On the development of the custom \emdash Does one fulfill the commandment of \'93consoling mourners\'94 through a telephone call? Naturally this type of question could only have been raised in recent generations. The first person to have dealt with +this is Rabbi Moses Feinstein (Lithuania\endash U.S., 20}{\rtlch \af0 \ltrch \super\insrsid12391429\charrsid1781117 th}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 century), in his work }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 +Iggerot Moshe}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , where he writes: "Regarding consoling mourners there are two }{\rtlch \af0 \ltrch \insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 s: +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid11090010 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +First, for the benefit of the living, who are very involved with their grief, a person is obligated to appeal to }{\rtlch \af0 \ltrch \insrsid11090010\charrsid1781117 [the mourner\rquote s }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 feelings}{ +\rtlch \af0 \ltrch \insrsid11090010\charrsid1781117 ]}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and to console him}{\rtlch \af0 \ltrch \insrsid11090010\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + and for this people are also obligated to go to the home where the mourner is located. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid14948990 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \tab +Second, for the benefit of the dead, as written in Shabbat 152a: "A deceased person who has no [official] mourners," since in any event we know that where there are consolers, it is of benefit to the dead \'85 + this means for me that on behalf of the living mourner, it is }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 possible }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to fulfill the obligation by means of the telephone}{\rtlch \af0 \ltrch +\insrsid10764079\charrsid1781117 as well}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 , but }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117as regards }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the }{\rtlch \ai\af1024 \ltrch +\i\insrsid12391429\charrsid1781117 mitzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 that is on behalf of the dead, it is }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 only }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +fitting that one go there to the place where oold pays condolences, or to the place where he died. }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 E}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ven i}{\rtlch \af0 \ltrch +\insrsid10764079\charrsid1781117 n}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 regard to }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 the living mourner}{\rtlch \af0 \ltrch +\insrsid10764079\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 it is certainly preferable that whe}{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 n}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch +\insrsid10764079\charrsid1781117 [the consoler] }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 goes there he also hono +rs him, since he himself is also part of the condolences, as in the words of R. Akiba, when his sons died and all the Jews eulogized them\'85}{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 T}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 he } +{\rtlch \af0 \ltrch \insrsid554163\charrsid1781117 tenet}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 of honor is not carried out by telephone. Thus, in effect, if it is at all possible for }{\rtlch \af0 \ltrch \insrsid10764079\charrsid1781117 +a person }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 to go to the mourner's home, which is the complete fulfillment of the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mitzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, it is not enough to do so by phone. But he does partially fulfill the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mitzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +, for if it impossible to go to the mourner's house, such as owing to illness or when one is involved with a }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mitzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + that he must carry out to the extent possible, he should offer condolences by phone, since there is some }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mitzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 in that}{\rtlch \af0 \ltrch +\insrsid14948990\charrsid1781117 m}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 and he should not say that since he cannot make it to the mourner's home, he has no obligation at all\'85and as to the }{\rtlch \af0 \ltrch +\insrsid14948990\charrsid1781117 question}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 wh +ether the mourner is allowed to speak on the phone, it is simply that whatever he requires for his physical needs or for those of his household, and for the needs of the }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 minyan}{\rtlch \af0 +\ltrch \insrsid12391429\charrsid1781117 , for which it is permitted for him to speak in his home, it is also allowed by telephone. }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 W}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +hen people phone him to console him, }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 is permitted to go to the phone and receive condolences}{\rtlch \af0 \ltrch +\insrsid14948990\charrsid1781117 .}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 However, }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +as to small talk as well as inquiring about his friends' welfare, or even }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 that of }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 his sons, it is forbidden."}{\rtlch \af0 \ltrch +\cs16\super\insrsid12391429\charrsid1781117 \chftn {\footnote \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\sl360\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid1276346 \rtlch \af0\afs20\alang1037 \ltrch +\fs20\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch \ai\af0 \ltrch \cs16\i\super\insrsid4342917\charrsid1276346 \chftn }{\rtlch \ai\af0 \ltrch \i\insrsid4342917\charrsid1276346 Iggerot Moshe, Orah Hayyim}{\rtlch \af0 \ltrch \insrsid4342917 +, 4:40.}}}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par }\pard \ltrpar\ql \fi360\li0\ri0\sl480\slmult1\widctlpar\tx180\faauto\adjustright\rin0\lin0\itap0\pararsid14948990 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 This means, the complete }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 mi +tzvah}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 + is to go and console the mourner at his home, since the consoler thereby benefits the mourner and can speak to his emotional needs and assuage his sorrow; this is also for the benefit of the dead. }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 A}{ +\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 fter the fact, if one cannot make it to the mourner's home, he should console him by speaking on the phone. +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0 {\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +\par +\par }\pard \ltrpar\ql \li0\ri0\sl480\slmult1\widctlpar\tx360\faauto\adjustright\rin0\lin0\itap0\pararsid14948990 {\rtlch \ab\af0 \ltrch \b\insrsid12391429\charrsid1781117 The Custom Today }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 \emdash T}{ +\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 he custom is t}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 o console the mourner where he is sitting }{\rtlch \ai\af0 \ltrch \i\insrsid12391429\charrsid1781117 shiv\rquote ah}{\rtlch \ai\af0 +\ltrch \i\insrsid14948990\charrsid1781117 ,}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 b}{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 ut if }{\rtlch \af0 \ltrch +\insrsid14948990\charrsid1781117 one }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 cannot get to the mourner's home, }{\rtlch \af0 \ltrch \insrsid14948990\charrsid1781117 he }{\rtlch \af0 \ltrch \insrsid12391429\charrsid1781117 +may offer condolences by phone. +\par }} \ No newline at end of file diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/layout/layout.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/layout/layout.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/layout/layout.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/layout/layout.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -27,6 +27,7 @@ void testTdf117245(); void testTdf109077(); void testTdf109137(); + void testForcepoint76(); void testTdf118058(); void testTdf117188(); void testTdf119875(); @@ -43,6 +44,7 @@ CPPUNIT_TEST(testTdf117245); CPPUNIT_TEST(testTdf109077); CPPUNIT_TEST(testTdf109137); + CPPUNIT_TEST(testForcepoint76); CPPUNIT_TEST(testTdf118058); CPPUNIT_TEST(testTdf117188); CPPUNIT_TEST(testTdf119875); @@ -236,6 +238,9 @@ /*nNumberOfNodes=*/1); } +//just care it doesn't crash/assert +void SwLayoutWriter::testForcepoint76() { createDoc("forcepoint76-1.rtf"); } + void SwLayoutWriter::testTdf118058() { SwDoc* pDoc = createDoc("tdf118058.fodt"); Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sw/qa/extras/mailmerge/data/section_ps.odt and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sw/qa/extras/mailmerge/data/section_ps.odt differ diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/mailmerge/mailmerge.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/mailmerge/mailmerge.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/mailmerge/mailmerge.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/mailmerge/mailmerge.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -858,5 +858,38 @@ CPPUNIT_ASSERT_EQUAL(OUString(""), xParagraph->getString()); } +DECLARE_SHELL_MAILMERGE_TEST(testTdf121168, "section_ps.odt", "4_v01.ods", "Tabelle1") +{ + // A document starting with a section on a page with non-default page style with header + executeMailMerge(); + SwXTextDocument* pTextDoc = dynamic_cast(mxMMComponent.get()); + CPPUNIT_ASSERT(pTextDoc); + // 4 documents 1 page each, starting at odd page numbers => 7 + CPPUNIT_ASSERT_EQUAL(sal_uInt16(7), pTextDoc->GetDocShell()->GetWrtShell()->GetPhyPageNum()); + + SwDoc* pDocMM = pTextDoc->GetDocShell()->GetDoc(); + sal_uLong nSizeMM = pDocMM->GetNodes().GetEndOfContent().GetIndex() + - pDocMM->GetNodes().GetEndOfExtras().GetIndex() - 2; + CPPUNIT_ASSERT_EQUAL(sal_uLong(16), nSizeMM); + + // All even pages should be empty, all sub-documents have one page + const SwRootFrame* pLayout = pDocMM->getIDocumentLayoutAccess().GetCurrentLayout(); + const SwPageFrame* pPageFrm = static_cast(pLayout->Lower()); + while (pPageFrm) + { + sal_uInt16 nPageNum = pPageFrm->GetPhyPageNum(); + bool bOdd = (1 == (nPageNum % 2)); + CPPUNIT_ASSERT_EQUAL(!bOdd, pPageFrm->IsEmptyPage()); + CPPUNIT_ASSERT_EQUAL(sal_uInt16(bOdd ? 1 : 2), pPageFrm->GetVirtPageNum()); + if (bOdd) + { + const SwPageDesc* pDesc = pPageFrm->GetPageDesc(); + CPPUNIT_ASSERT_EQUAL(OUString("Teststyle" + OUString::number(nPageNum / 2 + 1)), + pDesc->GetName()); + } + pPageFrm = static_cast(pPageFrm->GetNext()); + } +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sw/qa/extras/odfexport/data/referencelanguage.odt and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sw/qa/extras/odfexport/data/referencelanguage.odt differ diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/odfexport/odfexport.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/odfexport/odfexport.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/odfexport/odfexport.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1957,7 +1957,7 @@ { // Test loext:reference-language attribute of reference fields // (used from LibreOffice 6.1, and proposed for next ODF) - const char* aFieldTexts[] = { "A 2", "Az 50-esek", + const char* aFieldTexts[] = { "A 2", "Az Isten", "Az 50-esek", "A 2018-asok", "Az egyebek", "A fejezetek", u8"Az „Őseinket...”", "a 2", "Az v", "az 1", "Az e", "az 1", Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/data/tdf121456_tabsOffset.odt and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/data/tdf121456_tabsOffset.odt differ diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -23,6 +23,7 @@ #include #include #include +#include #include @@ -79,6 +80,37 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(4), getProperty< uno::Sequence >(getParagraph(4), "ParaTabStops").getLength()); } +// tdf#121561: make sure w:sdt/w:sdtContent around TOC is written during ODT->DOCX conversion +DECLARE_OOXMLEXPORT_TEST(testTdf121561_tocTitle, "tdf121456_tabsOffset.odt") +{ + xmlDocPtr pXmlDoc = parseExport(); + if (!pXmlDoc) + return; + + assertXPathContent(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p/w:r/w:t", "Inhaltsverzeichnis"); + assertXPathContent(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p/w:r/w:instrText", " TOC \\f \\o \"1-9\" \\h"); + assertXPath(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtPr/w:docPartObj/w:docPartGallery", "val", "Table of Contents"); + assertXPath(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtPr/w:docPartObj/w:docPartUnique", 1); +} + +DECLARE_OOXMLEXPORT_TEST(testTdf121561_tocTitleDocx, "tdf121456_tabsOffset.odt") +{ + xmlDocPtr pXmlDoc = parseExport(); + if (!pXmlDoc) + return; + + // get TOC node + uno::Reference xIndexSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xIndexes(xIndexSupplier->getDocumentIndexes( ), uno::UNO_QUERY); + uno::Reference xTOCIndex(xIndexes->getByIndex(0), uno::UNO_QUERY); + + // ensure TOC title was set in TOC properties + CPPUNIT_ASSERT_EQUAL(OUString("Inhaltsverzeichnis"), getProperty(xTOCIndex, "Title")); + + // ensure TOC end-field mark is placed inside TOC section + assertXPath(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p[16]/w:r/w:fldChar", "fldCharType", "end"); +} + DECLARE_OOXMLEXPORT_TEST(testTdf82065_Ind_start_strict, "tdf82065_Ind_start_strict.docx") { uno::Reference xPropertySet(getStyles("NumberingStyles")->getByName("WWNum1"), uno::UNO_QUERY); diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -722,7 +722,7 @@ return; // Data was lost from this paragraph. - assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[5]/w:r[1]/w:t", "Abstract"); + assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[4]/w:r[1]/w:t", "Abstract"); } DECLARE_OOXMLEXPORT_TEST(testfdo79969_xlsm, "fdo79969_xlsm.docx") diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -144,7 +144,7 @@ // FIXME "p[2]" will have to be "p[1]", once the TOC import code is fixed // not to insert an empty paragraph before TOC. - assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[2]/w:instrText", " TOC \\z \\f \\o \"1-3\" \\u \\h"); + assertXPathContent(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p[1]/w:r[2]/w:instrText", " TOC \\z \\f \\o \"1-3\" \\u \\h"); } DECLARE_OOXMLEXPORT_TEST(testTOCFlag_f, "toc_doc.docx") @@ -161,7 +161,7 @@ // FIXME "p[2]" will have to be "p[1]", once the TOC import code is fixed // not to insert an empty paragraph before TOC. - assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[2]/w:instrText", " TOC \\z \\o \"1-3\" \\u \\h"); + assertXPathContent(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p[1]/w:r[2]/w:instrText", " TOC \\z \\o \"1-3\" \\u \\h"); } DECLARE_OOXMLEXPORT_TEST(testPreserveZfield,"preserve_Z_field_TOC.docx") @@ -191,7 +191,7 @@ // FIXME "p[2]" will have to be "p[1]", once the TOC import code is fixed // not to insert an empty paragraph before TOC. - assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[2]/w:instrText", " TOC \\b \"bookmark111\" \\o \"1-9\" \\h"); + assertXPathContent(pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p[1]/w:r[2]/w:instrText", " TOC \\b \"bookmark111\" \\o \"1-9\" \\h"); } DECLARE_OOXMLEXPORT_TEST(testPreserveXfieldTOC, "PreserveXfieldTOC.docx") @@ -449,7 +449,7 @@ return; // In case of two "Hyperlink" tags in one paragraph and one of them // contains "PAGEREF" field then field end tag was missing from hyperlink. - assertXPath ( pXmlDoc, "/w:document/w:body/w:sdt/w:sdtContent/w:p[2]/w:hyperlink[3]/w:r[5]/w:fldChar", "fldCharType", "end" ); + assertXPath ( pXmlDoc, "/w:document/w:body/w:p[2]/w:hyperlink[3]/w:r[5]/w:fldChar", "fldCharType", "end" ); } Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlimport/data/tdf121804.docx and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlimport/data/tdf121804.docx differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlimport/data/tdf122224.docx and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlimport/data/tdf122224.docx differ diff -Nru libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx --- libreoffice-l10n-6.1.4/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -208,6 +208,24 @@ CPPUNIT_ASSERT_EQUAL(OUString("1696"), aTop); } +DECLARE_OOXMLIMPORT_TEST(testTdf121804, "tdf121804.docx") +{ + uno::Reference xGroup(getShape(1), uno::UNO_QUERY); + uno::Reference xShape(xGroup->getByIndex(0), uno::UNO_QUERY); + uno::Reference xFirstPara = getParagraphOfText(1, xShape->getText()); + uno::Reference xFirstRun = getRun(xFirstPara, 1); + CPPUNIT_ASSERT_EQUAL(static_cast(0), + getProperty(xFirstRun, "CharEscapement")); + // This failed with a NoSuchElementException, super/subscript property was + // lost on import, so the whole paragraph was a single run. + uno::Reference xSecondRun = getRun(xFirstPara, 2); + CPPUNIT_ASSERT_EQUAL(static_cast(30), + getProperty(xSecondRun, "CharEscapement")); + uno::Reference xThirdRun = getRun(xFirstPara, 3); + CPPUNIT_ASSERT_EQUAL(static_cast(-25), + getProperty(xThirdRun, "CharEscapement")); +} + DECLARE_OOXMLIMPORT_TEST(testTdf114217, "tdf114217.docx") { uno::Reference xDrawPageSupplier(mxComponent, uno::UNO_QUERY); @@ -222,6 +240,17 @@ CPPUNIT_ASSERT_EQUAL(OUString("4006"), aTop); } +DECLARE_OOXMLIMPORT_TEST(testTdf122224, "tdf122224.docx") +{ + uno::Reference xTextTablesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xTables(xTextTablesSupplier->getTextTables(), + uno::UNO_QUERY); + uno::Reference xTable(xTables->getByIndex(0), uno::UNO_QUERY); + uno::Reference xCell(xTable->getCellByName("A2"), uno::UNO_QUERY_THROW); + // This was "** Expression is faulty **", because of the unnecessary DOCX number format string + CPPUNIT_ASSERT_EQUAL(OUString("2000"), xCell->getString()); +} + // tests should only be added to ooxmlIMPORT *if* they fail round-tripping in ooxmlEXPORT CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/access/acccell.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/access/acccell.cxx --- libreoffice-l10n-6.1.4/sw/source/core/access/acccell.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/access/acccell.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -91,7 +91,7 @@ if( IsSelected() ) { rStateSet.AddState( AccessibleStateType::SELECTED ); - assert(m_bIsSelected && "bSelected out of sync"); + SAL_WARN_IF(!m_bIsSelected, "sw.a11y", "bSelected out of sync"); ::rtl::Reference < SwAccessibleContext > xThis( this ); GetMap()->SetCursorContext( xThis ); } diff -Nru libreoffice-l10n-6.1.4/sw/source/core/access/accframebase.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/access/accframebase.cxx --- libreoffice-l10n-6.1.4/sw/source/core/access/accframebase.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/access/accframebase.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -82,7 +82,7 @@ if( IsSelected() ) { rStateSet.AddState( AccessibleStateType::SELECTED ); - assert(m_bIsSelected && "bSelected out of sync"); + SAL_WARN_IF(!m_bIsSelected, "sw.a11y", "bSelected out of sync"); ::rtl::Reference < SwAccessibleContext > xThis( this ); GetMap()->SetCursorContext( xThis ); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/doc/doctxm.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/doc/doctxm.cxx --- libreoffice-l10n-6.1.4/sw/source/core/doc/doctxm.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/doc/doctxm.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -333,14 +333,22 @@ } SwTOXBaseSection* SwDoc::InsertTableOf( const SwPosition& rPos, - const SwTOXBase& rTOX, - const SfxItemSet* pSet, - bool bExpand ) + const SwTOXBase& rTOX, + const SfxItemSet* pSet, + bool bExpand) +{ + SwPaM aPam( rPos ); + return InsertTableOf( aPam, rTOX, pSet, bExpand ); +} + +SwTOXBaseSection* SwDoc::InsertTableOf( const SwPaM& aPam, + const SwTOXBase& rTOX, + const SfxItemSet* pSet, + bool bExpand ) { GetIDocumentUndoRedo().StartUndo( SwUndoId::INSTOX, nullptr ); OUString sSectNm = GetUniqueTOXBaseName( *rTOX.GetTOXType(), rTOX.GetTOXName() ); - SwPaM aPam( rPos ); SwSectionData aSectionData( TOX_CONTENT_SECTION, sSectNm ); SwTOXBaseSection *const pNewSection = dynamic_cast( InsertSwSection( aPam, aSectionData, & rTOX, pSet, false )); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/edit/edfcol.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/edit/edfcol.cxx --- libreoffice-l10n-6.1.4/sw/source/core/edit/edfcol.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/edit/edfcol.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1600,6 +1600,7 @@ SwDocShell* pDocShell = GetDoc()->GetDocShell(); if (!pDocShell) return; + const bool bNoWatermark = rWatermark.GetText().isEmpty(); uno::Reference xModel = pDocShell->GetBaseModel(); uno::Reference xStyleFamiliesSupplier(xModel, uno::UNO_QUERY); @@ -1615,7 +1616,12 @@ bool bHeaderIsOn = false; xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn; if (!bHeaderIsOn) + { + if (bNoWatermark) + continue; // the style doesn't have any watermark - no need to do anything + xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_ON, uno::makeAny(true)); + } // backup header height bool bDynamicHeight = true; diff -Nru libreoffice-l10n-6.1.4/sw/source/core/fields/reffld.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/fields/reffld.cxx --- libreoffice-l10n-6.1.4/sw/source/core/fields/reffld.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/fields/reffld.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -286,7 +286,7 @@ 0x00E1, 0x00C1, 0x00E9, 0x00C9, 0x00ED, 0x00CD, 0x00F3, 0x00D3, 0x00F6, 0x00D6, 0x0151, 0x0150, 0x00FA, 0x00DA, 0x00FC, 0x00DC, 0x0171, 0x0170, 0 }; - static OUString sVowels = "aAeEoOuU" + OUString(sVowelsWithDiacritic); + static OUString sVowels = "aAeEiIoOuU" + OUString(sVowelsWithDiacritic); // handle more than 1-letter long Roman numbers and // their possible combinations with letters: diff -Nru libreoffice-l10n-6.1.4/sw/source/core/inc/frame.hxx libreoffice-l10n-6.1.5~rc2/sw/source/core/inc/frame.hxx --- libreoffice-l10n-6.1.4/sw/source/core/inc/frame.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/inc/frame.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -852,7 +852,7 @@ bool IsProtected() const; bool IsColLocked() const { return mbColLocked; } - bool IsDeleteForbidden() const { return mbForbidDelete; } + virtual bool IsDeleteForbidden() const { return mbForbidDelete; } /// this is the only way to delete a SwFrame instance static void DestroyFrame(SwFrame *const pFrame); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/inc/ftnfrm.hxx libreoffice-l10n-6.1.5~rc2/sw/source/core/inc/ftnfrm.hxx --- libreoffice-l10n-6.1.4/sw/source/core/inc/ftnfrm.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/inc/ftnfrm.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -70,6 +70,7 @@ public: SwFootnoteFrame( SwFrameFormat*, SwFrame*, SwContentFrame*, SwTextFootnote* ); + virtual bool IsDeleteForbidden() const override; virtual void Cut() override; virtual void Paste( SwFrame* pParent, SwFrame* pSibling = nullptr ) override; diff -Nru libreoffice-l10n-6.1.4/sw/source/core/layout/calcmove.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/calcmove.cxx --- libreoffice-l10n-6.1.4/sw/source/core/layout/calcmove.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/calcmove.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -242,6 +242,7 @@ StackHack aHack; if ( GetUpper() ) { + SwFrameDeleteGuard aDeleteGuard(this); if ( lcl_IsCalcUpperAllowed( *this ) ) GetUpper()->Calc(pRenderContext); OSL_ENSURE( GetUpper(), ":-( Layout unstable (Upper gone)." ); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/layout/ftnfrm.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/ftnfrm.cxx --- libreoffice-l10n-6.1.4/sw/source/core/layout/ftnfrm.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/ftnfrm.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -473,6 +473,27 @@ } } +bool SwFootnoteFrame::IsDeleteForbidden() const +{ + if (SwLayoutFrame::IsDeleteForbidden()) + return true; + // needs to be in sync with the ::Cut logic + const SwLayoutFrame *pUp = GetUpper(); + if (pUp) + { + if (GetPrev()) + return false; + + // The last footnote takes its container along if it + // is deleted. Cut would put pUp->Lower() to the value + // of GetNext(), so if there is no GetNext then + // Cut would delete pUp. If that condition is true + // here then check if the container is delete-forbidden + return !GetNext() && pUp->IsDeleteForbidden(); + } + return false; +} + void SwFootnoteFrame::Cut() { if ( GetNext() ) @@ -498,7 +519,7 @@ if ( pUp ) { // The last footnote takes its container along - if ( !pUp->Lower() ) + if (!pUp->Lower()) { SwPageFrame *pPage = pUp->FindPageFrame(); if ( pPage ) @@ -1589,7 +1610,8 @@ pNew->Calc(getRootFrame()->GetCurrShell()->GetOut()); // #i57914# - adjust fix #i49383# if ( !bOldFootnoteFrameLocked && !pNew->GetLower() && - !pNew->IsColLocked() && !pNew->IsBackMoveLocked() ) + !pNew->IsColLocked() && !pNew->IsBackMoveLocked() && + !pNew->IsDeleteForbidden() ) { pNew->Cut(); SwFrame::DestroyFrame(pNew); @@ -2194,7 +2216,8 @@ if ( !bLock && bUnlockLastFootnoteFrame && !pLastFootnoteFrame->GetLower() && !pLastFootnoteFrame->IsColLocked() && - !pLastFootnoteFrame->IsBackMoveLocked() ) + !pLastFootnoteFrame->IsBackMoveLocked() && + !pLastFootnoteFrame->IsDeleteForbidden() ) { pLastFootnoteFrame->Cut(); SwFrame::DestroyFrame(pLastFootnoteFrame); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/layout/tabfrm.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/tabfrm.cxx --- libreoffice-l10n-6.1.4/sw/source/core/layout/tabfrm.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/layout/tabfrm.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -852,6 +852,11 @@ // #140081# Make code robust. if ( !pFollowFlowLine || !pLastLine ) return true; + if (pFollowFlowLine->IsDeleteForbidden()) + { + SAL_WARN("sw.layout", "Cannot remove in-use Follow Flow Line"); + return true; + } // Move content lcl_MoveRowContent( *pFollowFlowLine, *static_cast(pLastLine) ); diff -Nru libreoffice-l10n-6.1.4/sw/source/core/unocore/unoidx.cxx libreoffice-l10n-6.1.5~rc2/sw/source/core/unocore/unoidx.cxx --- libreoffice-l10n-6.1.4/sw/source/core/unocore/unoidx.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/core/unocore/unoidx.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1339,10 +1339,6 @@ } UnoActionContext aAction(pDoc); - if (aPam.HasMark()) - { - pDoc->getIDocumentContentOperations().DeleteAndJoin(aPam); - } SwTOXBase & rTOXBase = m_pImpl->m_pProps->GetTOXBase(); SwTOXType const*const pTOXType = rTOXBase.GetTOXType(); @@ -1353,7 +1349,7 @@ } //TODO: apply Section attributes (columns and background) SwTOXBaseSection *const pTOX = - pDoc->InsertTableOf( *aPam.GetPoint(), rTOXBase ); + pDoc->InsertTableOf( aPam, rTOXBase ); pDoc->SetTOXBaseName(*pTOX, m_pImpl->m_pProps->GetTOXBase().GetTOXName()); diff -Nru libreoffice-l10n-6.1.4/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-l10n-6.1.4/sw/source/filter/ww8/docxattributeoutput.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1411,6 +1411,21 @@ m_nFieldsInHyperlink = 0; } + // end ToX fields + for (auto it = m_Fields.rbegin(); it != m_Fields.rend(); ) + { + if (it->bClose && !it->pField) + { + EndField_Impl( pNode, nPos, *it ); + it = decltype(m_Fields)::reverse_iterator(m_Fields.erase(it.base() - 1)); + } + else + { + ++it; + } + } + + DoWriteBookmarksStart(m_rFinalBookmarksStart); DoWriteBookmarksEnd(m_rFinalBookmarksEnd); DoWriteBookmarkEndIfExist(nPos); diff -Nru libreoffice-l10n-6.1.4/sw/source/filter/ww8/wrtw8nds.cxx libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/wrtw8nds.cxx --- libreoffice-l10n-6.1.4/sw/source/filter/ww8/wrtw8nds.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -91,6 +91,8 @@ #include #include #include +#include +#include #include "sprmids.hxx" @@ -3083,7 +3085,101 @@ } } if ( TOX_CONTENT_SECTION == rSection.GetType() ) + { m_bStartTOX = true; + UpdateTocSectionNodeProperties(rSectionNode); + } +} + +// tdf#121561: During export of the ODT file with TOC inside into DOCX format, +// the TOC title is being exported as regular paragraph. We should surround it +// with to make it (TOC title) recognizable +// by MS Word as part of the TOC. +void MSWordExportBase::UpdateTocSectionNodeProperties(const SwSectionNode& rSectionNode) +{ + // check section type + { + const SwSection& rSection = rSectionNode.GetSection(); + if (TOX_CONTENT_SECTION != rSection.GetType()) + return; + + const SwTOXBase* pTOX = rSection.GetTOXBase(); + if (pTOX) + { + TOXTypes type = pTOX->GetType(); + if (type != TOXTypes::TOX_CONTENT) + return; + } + } + + // get section node, skip toc-header node + const SwSectionNode* pSectNd = &rSectionNode; + { + SwNodeIndex aIdxNext( *pSectNd, 1 ); + const SwNode& rNdNext = aIdxNext.GetNode(); + + if (rNdNext.IsSectionNode()) + { + const SwSectionNode* pSectNdNext = static_cast(&rNdNext); + if (TOX_HEADER_SECTION == pSectNdNext->GetSection().GetType() && + pSectNdNext->StartOfSectionNode()->IsSectionNode()) + { + pSectNd = pSectNdNext; + } + } + } + + // get node of the first paragraph inside TOC + SwNodeIndex aIdxNext( *pSectNd, 1 ); + const SwNode& rNdTocPara = aIdxNext.GetNode(); + const SwContentNode* pNode = rNdTocPara.GetContentNode(); + if (!pNode) + return; + + // put required flags into grab bag of the first node in TOC + { + uno::Sequence aDocPropertyValues(comphelper::InitPropertySequence( + { + {"ooxml:CT_SdtDocPart_docPartGallery", uno::makeAny(OUString("Table of Contents"))}, + {"ooxml:CT_SdtDocPart_docPartUnique", uno::makeAny(OUString("true"))}, + })); + + uno::Sequence aSdtPrPropertyValues(comphelper::InitPropertySequence( + { + {"ooxml:CT_SdtPr_docPartObj", uno::makeAny(aDocPropertyValues)}, + })); + + SfxGrabBagItem aGrabBag(RES_PARATR_GRABBAG); + aGrabBag.GetGrabBag()["SdtPr"] <<= aSdtPrPropertyValues; + + // create temp attr set + SwAttrSet aSet(pNode->GetSwAttrSet()); + aSet.Put(aGrabBag); + + // set new attr to node + const_cast(pNode)->SetAttr(aSet); + } + + // set flag for the next node after TOC + // in order to indicate that std area has been finished + // see, DomainMapper::lcl_startParagraphGroup() for the same functionality during load + { + SwNodeIndex aEndTocNext( *rSectionNode.EndOfSectionNode(), 1 ); + const SwNode& rEndTocNextNode = aEndTocNext.GetNode(); + const SwContentNode* pNodeAfterToc = rEndTocNextNode.GetContentNode(); + if (pNodeAfterToc) + { + SfxGrabBagItem aGrabBag(RES_PARATR_GRABBAG); + aGrabBag.GetGrabBag()["ParaSdtEndBefore"] <<= true; + + // create temp attr set + SwAttrSet aSet(pNodeAfterToc->GetSwAttrSet()); + aSet.Put(aGrabBag); + + // set new attr to node + const_cast(pNodeAfterToc)->SetAttr(aSet); + } + } } void WW8Export::AppendSection( const SwPageDesc *pPageDesc, const SwSectionFormat* pFormat, sal_uLong nLnNum ) diff -Nru libreoffice-l10n-6.1.4/sw/source/filter/ww8/wrtww8.hxx libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/wrtww8.hxx --- libreoffice-l10n-6.1.4/sw/source/filter/ww8/wrtww8.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/filter/ww8/wrtww8.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -847,6 +847,7 @@ /// Output SwSectionNode void OutputSectionNode( const SwSectionNode& ); + static void UpdateTocSectionNodeProperties(const SwSectionNode& rSectionNode); virtual void AppendSection( const SwPageDesc *pPageDesc, const SwSectionFormat* pFormat, sal_uLong nLnNum ) = 0; diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/app/apphdl.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/app/apphdl.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/app/apphdl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/app/apphdl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -187,7 +187,8 @@ xConfigItem = pView->GetMailMergeConfigItem(); if (!xConfigItem) rSet.DisableItem(nWhich); - else + else if (xConfigItem->GetConnection().is() + && !xConfigItem->GetConnection()->isClosed()) { bool bFirst, bLast; bool bValid = xConfigItem->IsResultSetFirstLast(bFirst, bLast); @@ -240,6 +241,8 @@ // #i51949# hide e-Mail option if e-Mail is not supported // #i63267# printing might be disabled if (!xConfigItem || + !xConfigItem->GetConnection().is() || + xConfigItem->GetConnection()->isClosed() || !xConfigItem->GetResultSet().is() || xConfigItem->GetCurrentDBData().sDataSource.isEmpty() || xConfigItem->GetCurrentDBData().sCommand.isEmpty() || @@ -778,6 +781,9 @@ if (!xConfigItem) return; + const bool bHadConnection + = xConfigItem->GetConnection().is() && !xConfigItem->GetConnection()->isClosed(); + sal_Int32 nPos = xConfigItem->GetResultSetPosition(); switch (nWhich) { @@ -815,6 +821,15 @@ rBindings.Invalidate(FN_MAILMERGE_LAST_ENTRY); rBindings.Invalidate(FN_MAILMERGE_CURRENT_ENTRY); rBindings.Invalidate(FN_MAILMERGE_EXCLUDE_ENTRY); + if (!bHadConnection && xConfigItem->GetConnection().is() + && !xConfigItem->GetConnection()->isClosed()) + { + // The connection has been activated. Update controls that were disabled + rBindings.Invalidate(FN_MAILMERGE_CREATE_DOCUMENTS); + rBindings.Invalidate(FN_MAILMERGE_SAVE_DOCUMENTS); + rBindings.Invalidate(FN_MAILMERGE_PRINT_DOCUMENTS); + rBindings.Invalidate(FN_MAILMERGE_EMAIL_DOCUMENTS); + } rBindings.Update(); } break; diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/dbui/dbmgr.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/dbui/dbmgr.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/dbui/dbmgr.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1502,6 +1502,15 @@ // ExpFields update during printing, generation of preview, etc. pWorkShell->LockExpFields(); pWorkShell->CalcLayout(); + // tdf#121168: Now force correct page descriptions applied to page frames. Without + // this, e.g., page frames starting with sections could have page descriptions set + // wrong. This would lead to wrong page styles applied in SwDoc::AppendDoc below. + pWorkShell->GetViewOptions()->SetIdle(true); + for (auto aLayout : pWorkShell->GetDoc()->GetAllLayouts()) + { + aLayout->FreezeLayout(false); + aLayout->AllCheckPageDescs(); + } } lcl_emitEvent(SfxEventHintId::SwEventFieldMerge, STR_SW_EVENT_FIELD_MERGE, xWorkDocSh); diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/docvw/edtwin.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/docvw/edtwin.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/docvw/edtwin.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -4761,12 +4761,12 @@ rSh.EnterStdMode(); rSh.SetVisibleCursor(aDocPt); bCallBase = false; - m_aTemplateIdle.Stop(); + m_aTemplateTimer.Stop(); } else if(rMEvt.GetClicks() == 1) { // no selection -> so turn off watering can - m_aTemplateIdle.Start(); + m_aTemplateTimer.Start(); } } } @@ -5007,9 +5007,9 @@ m_aKeyInputFlushTimer.SetInvokeHandler(LINK(this, SwEditWin, KeyInputFlushHandler)); // TemplatePointer for colors should be resetted without - // selection after single click - m_aTemplateIdle.SetPriority(TaskPriority::LOWEST); - m_aTemplateIdle.SetInvokeHandler(LINK(this, SwEditWin, TemplateTimerHdl)); + // selection after single click, but not after double-click (tdf#122442) + m_aTemplateTimer.SetTimeout(GetSettings().GetMouseSettings().GetDoubleClickTime()); + m_aTemplateTimer.SetInvokeHandler(LINK(this, SwEditWin, TemplateTimerHdl)); // temporary solution!!! Should set the font of the current // insert position at every cursor movement! diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/inc/edtwin.hxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/inc/edtwin.hxx --- libreoffice-l10n-6.1.4/sw/source/uibase/inc/edtwin.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/inc/edtwin.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -80,7 +80,7 @@ Point m_aStartPos; Point m_aMovePos; Point m_aRszMvHdlPt; - Idle m_aTemplateIdle; + Timer m_aTemplateTimer; // type/object where the mouse pointer is SwCallMouseEvent m_aSaveCallEvent; diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/shells/textsh1.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/shells/textsh1.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/shells/textsh1.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/shells/textsh1.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -290,6 +290,7 @@ { std::unique_ptr xBuilder(Application::CreateBuilder(pWin, "modules/swriter/ui/queryredlinedialog.ui")); std::unique_ptr xQBox(xBuilder->weld_message_dialog("QueryRedlineDialog")); + xQBox->set_title(SwResId(STR_AUTOCORRECT)); return xQBox->run(); } diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/uno/unotxdoc.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/uno/unotxdoc.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/uno/unotxdoc.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/uno/unotxdoc.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -2630,8 +2630,6 @@ bStateChanged = true; } - // #122919# Force field update before PDF export - pViewShell->SwViewShell::UpdateFields(true); if( bStateChanged ) pRenderDocShell->EnableSetModified(); @@ -2641,6 +2639,9 @@ pViewShell->CalcLayout(); pViewShell->CalcPagesForPrint( pViewShell->GetPageCount() ); + // #122919# Force field update before PDF export, but after layout init (tdf#121962) + pViewShell->SwViewShell::UpdateFields(true); + pViewShell->SetPDFExportOption( false ); // enable view again diff -Nru libreoffice-l10n-6.1.4/sw/source/uibase/wrtsh/wrtundo.cxx libreoffice-l10n-6.1.5~rc2/sw/source/uibase/wrtsh/wrtundo.cxx --- libreoffice-l10n-6.1.4/sw/source/uibase/wrtsh/wrtundo.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/sw/source/uibase/wrtsh/wrtundo.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -25,6 +25,7 @@ #include #include #include +#include // Undo ends all modes. If a selection is emerged by the Undo, // this must be considered for further action. @@ -108,7 +109,7 @@ default:;//prevent warning } - return SvtResId(pResStr) + aUndoStr; + return MnemonicGenerator::EraseAllMnemonicChars(SvtResId(pResStr)) + aUndoStr; } void SwWrtShell::GetDoStrings( DoType eDoType, SfxStringListItem& rStrs ) const Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/curl-7.61.1.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/curl-7.61.1.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/curl-7.63.0.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/curl-7.63.0.tar.gz differ diff -Nru libreoffice-l10n-6.1.4/tarballs/fetch.log libreoffice-l10n-6.1.5~rc2/tarballs/fetch.log --- libreoffice-l10n-6.1.4/tarballs/fetch.log 2018-12-18 16:13:47.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/tarballs/fetch.log 2019-02-14 21:17:25.000000000 +0000 @@ -1,1467 +1,1468 @@ -mardi 18 décembre 2018, 17:03:41 (UTC+0100) ---2018-12-18 17:03:41-- https://dev-www.libreoffice.org/src/libabw-0.1.2.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 318400 (311K) [application/octet-stream] -Enregistre : «./libabw-0.1.2.tar.xz» +Do 14. Feb 21:37:48 CET 2019 +--2019-02-14 21:37:48-- https://dev-www.libreoffice.org/src/libabw-0.1.2.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 318400 (311K) [application/octet-stream] +Wird in »./libabw-0.1.2.tar.xz« gespeichert. - 0K .... 100% 1,50M=0,2s + 0K .... 100% 67,3K=4,6s -2018-12-18 17:03:41 (1,50 MB/s) - «./libabw-0.1.2.tar.xz» enregistré [318400/318400] +2019-02-14 21:37:55 (67,3 KB/s) - »./libabw-0.1.2.tar.xz« gespeichert [318400/318400] ---2018-12-18 17:03:41-- https://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 188536 (184K) [application/octet-stream] -Enregistre : «./commons-logging-1.2-src.tar.gz» +--2019-02-14 21:37:55-- https://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 188536 (184K) [application/octet-stream] +Wird in »./commons-logging-1.2-src.tar.gz« gespeichert. - 0K .. 100% 567K=0,3s + 0K .. 100% 55,2K=3,3s -2018-12-18 17:03:42 (567 KB/s) - «./commons-logging-1.2-src.tar.gz» enregistré [188536/188536] +2019-02-14 21:38:00 (55,2 KB/s) - »./commons-logging-1.2-src.tar.gz« gespeichert [188536/188536] ---2018-12-18 17:03:42-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1031613 (1007K) [application/octet-stream] -Enregistre : «./apr-1.5.2.tar.gz» +--2019-02-14 21:38:00-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1031613 (1007K) [application/octet-stream] +Wird in »./apr-1.5.2.tar.gz« gespeichert. - 0K ........ ....... 100% 794K=1,3s + 0K ........ ....... 100% 51,8K=19s -2018-12-18 17:03:44 (794 KB/s) - «./apr-1.5.2.tar.gz» enregistré [1031613/1031613] +2019-02-14 21:38:20 (51,8 KB/s) - »./apr-1.5.2.tar.gz« gespeichert [1031613/1031613] ---2018-12-18 17:03:44-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 874044 (854K) [application/octet-stream] -Enregistre : «./apr-util-1.5.4.tar.gz» +--2019-02-14 21:38:20-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 874044 (854K) [application/octet-stream] +Wird in »./apr-util-1.5.4.tar.gz« gespeichert. - 0K ........ ..... 100% 913K=0,9s + 0K ........ ..... 100% 50,5K=17s -2018-12-18 17:03:45 (913 KB/s) - «./apr-util-1.5.4.tar.gz» enregistré [874044/874044] +2019-02-14 21:38:39 (50,5 KB/s) - »./apr-util-1.5.4.tar.gz« gespeichert [874044/874044] ---2018-12-18 17:03:45-- https://dev-www.libreoffice.org/src/boost_1_66_0.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 85995778 (82M) [application/octet-stream] -Enregistre : «./boost_1_66_0.tar.bz2» +--2019-02-14 21:38:39-- https://dev-www.libreoffice.org/src/boost_1_66_0.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 85995778 (82M) [application/octet-stream] +Wird in »./boost_1_66_0.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 3% 1,40M 56s - 3072K ........ ........ ........ ........ ........ ........ 7% 1,15M 60s - 6144K ........ ........ ........ ........ ........ ........ 10% 1008K 63s - 9216K ........ ........ ........ ........ ........ ........ 14% 793K 68s - 12288K ........ ........ ........ ........ ........ ........ 18% 661K 73s - 15360K ........ ........ ........ ........ ........ ........ 21% 1,32M 66s - 18432K ........ ........ ........ ........ ........ ........ 25% 1,15M 62s - 21504K ........ ........ ........ ........ ........ ........ 29% 960K 59s - 24576K ........ ........ ........ ........ ........ ........ 32% 709K 59s - 27648K ........ ........ ........ ........ ........ ........ 36% 716K 57s - 30720K ........ ........ ........ ........ ........ ........ 40% 1,03M 53s - 33792K ........ ........ ........ ........ ........ ........ 43% 1,68M 48s - 36864K ........ ........ ........ ........ ........ ........ 47% 1,11M 45s - 39936K ........ ........ ........ ........ ........ ........ 51% 851K 42s - 43008K ........ ........ ........ ........ ........ ........ 54% 1,52M 38s - 46080K ........ ........ ........ ........ ........ ........ 58% 1,70M 34s - 49152K ........ ........ ........ ........ ........ ........ 62% 957K 31s - 52224K ........ ........ ........ ........ ........ ........ 65% 842K 28s - 55296K ........ ........ ........ ........ ........ ........ 69% 785K 26s - 58368K ........ ........ ........ ........ ........ ........ 73% 995K 23s - 61440K ........ ........ ........ ........ ........ ........ 76% 779K 20s - 64512K ........ ........ ........ ........ ........ ........ 80% 868K 17s - 67584K ........ ........ ........ ........ ........ ........ 84% 915K 14s - 70656K ........ ........ ........ ........ ........ ........ 87% 1,04M 10s - 73728K ........ ........ ........ ........ ........ ........ 91% 1,37M 7s - 76800K ........ ........ ........ ........ ........ ........ 95% 1,90M 4s - 79872K ........ ........ ........ ........ ........ ........ 98% 956K 1s - 82944K ........ ........ 100% 1,06M=83s + 0K ........ ........ ........ ........ ........ ........ 3% 53,5K 25m13s + 3072K ........ ........ ........ ........ ........ ........ 7% 114K 17m49s + 6144K ........ ........ ........ ........ ........ ........ 10% 227K 13m14s + 9216K ........ ........ ........ ........ ........ ........ 14% 226K 10m50s + 12288K ........ ........ ........ ........ ........ ........ 18% 202K 9m26s + 15360K ........ ........ ........ ........ ........ ........ 21% 233K 8m17s + 18432K ........ ........ ........ ........ ........ ........ 25% 238K 7m24s + 21504K ........ ........ ........ ........ ........ ........ 29% 222K 6m43s + 24576K ........ ........ ........ ........ ........ ........ 32% 236K 6m6s + 27648K ........ ........ ........ ........ ........ ........ 36% 235K 5m34s + 30720K ........ ........ ........ ........ ........ ........ 40% 231K 5m6s + 33792K ........ ........ ........ ........ ........ ........ 43% 210K 4m42s + 36864K ........ ........ ........ ........ ........ ........ 47% 232K 4m18s + 39936K ........ ........ ........ ........ ........ ........ 51% 224K 3m56s + 43008K ........ ........ ........ ........ ........ ........ 54% 215K 3m35s + 46080K ........ ........ ........ ........ ........ ........ 58% 229K 3m15s + 49152K ........ ........ ........ ........ ........ ........ 62% 237K 2m55s + 52224K ........ ........ ........ ........ ........ ........ 65% 220K 2m37s + 55296K ........ ........ ........ ........ ........ ........ 69% 239K 2m18s + 58368K ........ ........ ........ ........ ........ ........ 73% 232K 2m0s + 61440K ........ ........ ........ ........ ........ ........ 76% 221K 1m43s + 64512K ........ ........ ........ ........ ........ ........ 80% 239K 86s + 67584K ........ ........ ........ ........ ........ ........ 84% 227K 70s + 70656K ........ ........ ........ ........ ........ ........ 87% 237K 53s + 73728K ........ ........ ........ ........ ........ ........ 91% 227K 37s + 76800K ........ ........ ........ ........ ........ ........ 95% 231K 21s + 79872K ........ ........ ........ ........ ........ ........ 98% 235K 5s + 82944K ........ ........ 100% 241K=7m6s -2018-12-18 17:05:09 (1008 KB/s) - «./boost_1_66_0.tar.bz2» enregistré [85995778/85995778] +2019-02-14 21:45:46 (197 KB/s) - »./boost_1_66_0.tar.bz2« gespeichert [85995778/85995778] ---2018-12-18 17:05:09-- https://dev-www.libreoffice.org/src/breakpad.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 14897049 (14M) [application/zip] -Enregistre : «./breakpad.zip» +--2019-02-14 21:45:46-- https://dev-www.libreoffice.org/src/breakpad.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 14897049 (14M) [application/zip] +Wird in »./breakpad.zip« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 21% 824K 14s - 3072K ........ ........ ........ ........ ........ ........ 42% 873K 10s - 6144K ........ ........ ........ ........ ........ ........ 63% 1008K 6s - 9216K ........ ........ ........ ........ ........ ........ 84% 762K 3s - 12288K ........ ........ ........ ........ ... 100% 940K=17s + 0K ........ ........ ........ ........ ........ ........ 21% 236K 49s + 3072K ........ ........ ........ ........ ........ ........ 42% 232K 36s + 6144K ........ ........ ........ ........ ........ ........ 63% 238K 23s + 9216K ........ ........ ........ ........ ........ ........ 84% 229K 10s + 12288K ........ ........ ........ ........ ... 100% 233K=62s -2018-12-18 17:05:26 (870 KB/s) - «./breakpad.zip» enregistré [14897049/14897049] +2019-02-14 21:46:49 (234 KB/s) - »./breakpad.zip« gespeichert [14897049/14897049] ---2018-12-18 17:05:26-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1997625 (1,9M) [application/zip] -Enregistre : «./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip» +--2019-02-14 21:46:49-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 635K=3,1s + 0K ........ ........ ........ ...... 100% 208K=9,4s -2018-12-18 17:05:30 (635 KB/s) - «./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip» enregistré [1997625/1997625] +2019-02-14 21:46:59 (208 KB/s) - »./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip« gespeichert [1997625/1997625] ---2018-12-18 17:05:30-- https://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 782025 (764K) [application/octet-stream] -Enregistre : «./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz» +--2019-02-14 21:46:59-- https://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 782025 (764K) [application/octet-stream] +Wird in »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert. - 0K ........ ... 100% 950K=0,8s + 0K ........ ... 100% 223K=3,4s -2018-12-18 17:05:31 (950 KB/s) - «./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz» enregistré [782025/782025] +2019-02-14 21:47:03 (223 KB/s) - »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert [782025/782025] ---2018-12-18 17:05:31-- https://dev-www.libreoffice.org/src/cairo-1.14.10.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 36251788 (35M) [application/octet-stream] -Enregistre : «./cairo-1.14.10.tar.xz» +--2019-02-14 21:47:03-- https://dev-www.libreoffice.org/src/cairo-1.14.10.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 36251788 (35M) [application/octet-stream] +Wird in »./cairo-1.14.10.tar.xz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 1,17M 27s - 3072K ........ ........ ........ ........ ........ ........ 17% 1,20M 24s - 6144K ........ ........ ........ ........ ........ ........ 26% 1,18M 22s - 9216K ........ ........ ........ ........ ........ ........ 34% 783K 22s - 12288K ........ ........ ........ ........ ........ ........ 43% 699K 21s - 15360K ........ ........ ........ ........ ........ ........ 52% 867K 18s - 18432K ........ ........ ........ ........ ........ ........ 60% 1,04M 14s - 21504K ........ ........ ........ ........ ........ ........ 69% 1,03M 11s - 24576K ........ ........ ........ ........ ........ ........ 78% 1,02M 8s - 27648K ........ ........ ........ ........ ........ ........ 86% 774K 5s - 30720K ........ ........ ........ ........ ........ ........ 95% 711K 2s - 33792K ........ ........ ........ . 100% 1,17M=38s + 0K ........ ........ ........ ........ ........ ........ 8% 237K 2m17s + 3072K ........ ........ ........ ........ ........ ........ 17% 236K 2m4s + 6144K ........ ........ ........ ........ ........ ........ 26% 232K 1m52s + 9216K ........ ........ ........ ........ ........ ........ 34% 229K 99s + 12288K ........ ........ ........ ........ ........ ........ 43% 238K 86s + 15360K ........ ........ ........ ........ ........ ........ 52% 238K 72s + 18432K ........ ........ ........ ........ ........ ........ 60% 227K 59s + 21504K ........ ........ ........ ........ ........ ........ 69% 235K 46s + 24576K ........ ........ ........ ........ ........ ........ 78% 235K 33s + 27648K ........ ........ ........ ........ ........ ........ 86% 232K 20s + 30720K ........ ........ ........ ........ ........ ........ 95% 217K 7s + 33792K ........ ........ ........ . 100% 227K=2m33s -2018-12-18 17:06:09 (935 KB/s) - «./cairo-1.14.10.tar.xz» enregistré [36251788/36251788] +2019-02-14 21:49:36 (232 KB/s) - »./cairo-1.14.10.tar.xz« gespeichert [36251788/36251788] ---2018-12-18 17:06:09-- https://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 878784 (858K) [application/octet-stream] -Enregistre : «./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz» +--2019-02-14 21:49:37-- https://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 878784 (858K) [application/octet-stream] +Wird in »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert. - 0K ........ ..... 100% 776K=1,1s + 0K ........ ..... 100% 224K=3,8s -2018-12-18 17:06:11 (776 KB/s) - «./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz» enregistré [878784/878784] +2019-02-14 21:49:41 (224 KB/s) - »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert [878784/878784] ---2018-12-18 17:06:11-- https://dev-www.libreoffice.org/src/libcdr-0.1.4.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 609592 (595K) [application/octet-stream] -Enregistre : «./libcdr-0.1.4.tar.xz» +--2019-02-14 21:49:41-- https://dev-www.libreoffice.org/src/libcdr-0.1.4.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 609592 (595K) [application/octet-stream] +Wird in »./libcdr-0.1.4.tar.xz« gespeichert. - 0K ........ . 100% 845K=0,7s + 0K ........ . 100% 240K=2,5s -2018-12-18 17:06:12 (845 KB/s) - «./libcdr-0.1.4.tar.xz» enregistré [609592/609592] +2019-02-14 21:49:44 (240 KB/s) - »./libcdr-0.1.4.tar.xz« gespeichert [609592/609592] ---2018-12-18 17:06:12-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2241498 (2,1M) [application/octet-stream] -Enregistre : «./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz» +--2019-02-14 21:49:44-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2241498 (2,1M) [application/octet-stream] +Wird in »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert. - 0K ........ ........ ........ ........ .. 100% 1,14M=1,9s + 0K ........ ........ ........ ........ .. 100% 239K=9,1s -2018-12-18 17:06:14 (1,14 MB/s) - «./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz» enregistré [2241498/2241498] +2019-02-14 21:49:53 (239 KB/s) - »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert [2241498/2241498] ---2018-12-18 17:06:14-- https://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 767701 (750K) [application/octet-stream] -Enregistre : «./libcmis-0.5.1.tar.gz» +--2019-02-14 21:49:53-- https://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 767701 (750K) [application/octet-stream] +Wird in »./libcmis-0.5.1.tar.gz« gespeichert. - 0K ........ ... 100% 361K=2,1s + 0K ........ ... 100% 244K=3,1s -2018-12-18 17:06:17 (361 KB/s) - «./libcmis-0.5.1.tar.gz» enregistré [767701/767701] +2019-02-14 21:49:57 (244 KB/s) - »./libcmis-0.5.1.tar.gz« gespeichert [767701/767701] ---2018-12-18 17:06:17-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 10343849 (9,9M) [application/octet-stream] -Enregistre : «./CoinMP-1.7.6.tgz» +--2019-02-14 21:49:57-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 10343849 (9,9M) [application/octet-stream] +Wird in »./CoinMP-1.7.6.tgz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 30% 893K 8s - 3072K ........ ........ ........ ........ ........ ........ 60% 565K 6s - 6144K ........ ........ ........ ........ ........ ........ 91% 855K 1s - 9216K ........ ..... 100% 636K=14s + 0K ........ ........ ........ ........ ........ ........ 30% 217K 32s + 3072K ........ ........ ........ ........ ........ ........ 60% 237K 17s + 6144K ........ ........ ........ ........ ........ ........ 91% 239K 4s + 9216K ........ ..... 100% 239K=44s -2018-12-18 17:06:31 (729 KB/s) - «./CoinMP-1.7.6.tgz» enregistré [10343849/10343849] +2019-02-14 21:50:41 (231 KB/s) - »./CoinMP-1.7.6.tgz« gespeichert [10343849/10343849] ---2018-12-18 17:06:31-- https://dev-www.libreoffice.org/src/cppunit-1.14.0.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 959716 (937K) [application/octet-stream] -Enregistre : «./cppunit-1.14.0.tar.gz» +--2019-02-14 21:50:41-- https://dev-www.libreoffice.org/src/cppunit-1.14.0.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 959716 (937K) [application/octet-stream] +Wird in »./cppunit-1.14.0.tar.gz« gespeichert. - 0K ........ ...... 100% 570K=1,6s + 0K ........ ...... 100% 212K=4,4s -2018-12-18 17:06:33 (570 KB/s) - «./cppunit-1.14.0.tar.gz» enregistré [959716/959716] +2019-02-14 21:50:46 (212 KB/s) - »./cppunit-1.14.0.tar.gz« gespeichert [959716/959716] ---2018-12-18 17:06:33-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 49659 (48K) [application/octet-stream] -Enregistre : «./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt» +--2019-02-14 21:50:46-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 49659 (48K) [application/octet-stream] +Wird in »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert. - 0K 100% 352K=0,1s + 0K 100% 305K=0,2s -2018-12-18 17:06:34 (352 KB/s) - «./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt» enregistré [49659/49659] +2019-02-14 21:50:47 (305 KB/s) - »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert [49659/49659] ---2018-12-18 17:06:34-- https://dev-www.libreoffice.org/src/curl-7.61.1.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 3986062 (3,8M) [application/octet-stream] -Enregistre : «./curl-7.61.1.tar.gz» +--2019-02-14 21:50:47-- https://dev-www.libreoffice.org/src/curl-7.63.0.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 4024015 (3,8M) [application/octet-stream] +Wird in »./curl-7.63.0.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 78% 892K 1s - 3072K ........ .... 100% 982K=4,3s + 0K ........ ........ ........ ........ ........ ........ 78% 236K 4s + 3072K ........ ..... 100% 237K=17s -2018-12-18 17:06:38 (910 KB/s) - «./curl-7.61.1.tar.gz» enregistré [3986062/3986062] +2019-02-14 21:51:04 (237 KB/s) - »./curl-7.63.0.tar.gz« gespeichert [4024015/4024015] ---2018-12-18 17:06:38-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 416268 (407K) [application/octet-stream] -Enregistre : «./libe-book-0.1.3.tar.xz» +--2019-02-14 21:51:04-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 416268 (407K) [application/octet-stream] +Wird in »./libe-book-0.1.3.tar.xz« gespeichert. - 0K ...... 100% 869K=0,5s + 0K ...... 100% 237K=1,7s -2018-12-18 17:06:39 (869 KB/s) - «./libe-book-0.1.3.tar.xz» enregistré [416268/416268] +2019-02-14 21:51:06 (237 KB/s) - »./libe-book-0.1.3.tar.xz« gespeichert [416268/416268] ---2018-12-18 17:06:39-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 463264 (452K) [application/octet-stream] -Enregistre : «./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz» +--2019-02-14 21:51:06-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 463264 (452K) [application/octet-stream] +Wird in »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert. - 0K ....... 100% 808K=0,6s + 0K ....... 100% 237K=1,9s -2018-12-18 17:06:40 (808 KB/s) - «./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz» enregistré [463264/463264] +2019-02-14 21:51:09 (237 KB/s) - »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert [463264/463264] ---2018-12-18 17:06:40-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 324380 (317K) [application/octet-stream] -Enregistre : «./libepubgen-0.1.1.tar.xz» +--2019-02-14 21:51:09-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 324380 (317K) [application/octet-stream] +Wird in »./libepubgen-0.1.1.tar.xz« gespeichert. - 0K .... 100% 654K=0,5s + 0K .... 100% 236K=1,3s -2018-12-18 17:06:41 (654 KB/s) - «./libepubgen-0.1.1.tar.xz» enregistré [324380/324380] +2019-02-14 21:51:11 (236 KB/s) - »./libepubgen-0.1.1.tar.xz« gespeichert [324380/324380] ---2018-12-18 17:06:41-- https://dev-www.libreoffice.org/src/libetonyek-0.1.8.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1324868 (1,3M) [application/octet-stream] -Enregistre : «./libetonyek-0.1.8.tar.xz» +--2019-02-14 21:51:11-- https://dev-www.libreoffice.org/src/libetonyek-0.1.8.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1324868 (1,3M) [application/octet-stream] +Wird in »./libetonyek-0.1.8.tar.xz« gespeichert. - 0K ........ ........ .... 100% 545K=2,4s + 0K ........ ........ .... 100% 235K=5,5s -2018-12-18 17:06:44 (545 KB/s) - «./libetonyek-0.1.8.tar.xz» enregistré [1324868/1324868] +2019-02-14 21:51:16 (235 KB/s) - »./libetonyek-0.1.8.tar.xz« gespeichert [1324868/1324868] ---2018-12-18 17:06:44-- https://dev-www.libreoffice.org/src/expat-2.2.5.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 510868 (499K) [application/octet-stream] -Enregistre : «./expat-2.2.5.tar.bz2» +--2019-02-14 21:51:17-- https://dev-www.libreoffice.org/src/expat-2.2.5.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 510868 (499K) [application/octet-stream] +Wird in »./expat-2.2.5.tar.bz2« gespeichert. - 0K ....... 100% 397K=1,3s + 0K ....... 100% 241K=2,1s -2018-12-18 17:06:45 (397 KB/s) - «./expat-2.2.5.tar.bz2» enregistré [510868/510868] +2019-02-14 21:51:19 (241 KB/s) - »./expat-2.2.5.tar.bz2« gespeichert [510868/510868] ---2018-12-18 17:06:45-- https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 9552809 (9,1M) [application/octet-stream] -Enregistre : «./Firebird-3.0.0.32483-0.tar.bz2» +--2019-02-14 21:51:19-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 9552809 (9,1M) [application/octet-stream] +Wird in »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 32% 693K 9s - 3072K ........ ........ ........ ........ ........ ........ 65% 1,12M 4s - 6144K ........ ........ ........ ........ ........ ........ 98% 774K 0s - 9216K . 100% 1,08M=11s + 0K ........ ........ ........ ........ ........ ........ 32% 239K 26s + 3072K ........ ........ ........ ........ ........ ........ 65% 237K 13s + 6144K ........ ........ ........ ........ ........ ........ 98% 230K 0s + 9216K . 100% 239K=40s -2018-12-18 17:06:57 (834 KB/s) - «./Firebird-3.0.0.32483-0.tar.bz2» enregistré [9552809/9552809] +2019-02-14 21:51:59 (235 KB/s) - »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert [9552809/9552809] ---2018-12-18 17:06:57-- https://dev-www.libreoffice.org/src/fontconfig-2.12.6.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1624683 (1,5M) [application/octet-stream] -Enregistre : «./fontconfig-2.12.6.tar.bz2» +--2019-02-14 21:51:59-- https://dev-www.libreoffice.org/src/fontconfig-2.12.6.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1624683 (1,5M) [application/octet-stream] +Wird in »./fontconfig-2.12.6.tar.bz2« gespeichert. - 0K ........ ........ ........ 100% 836K=1,9s + 0K ........ ........ ........ 100% 215K=7,4s -2018-12-18 17:06:59 (836 KB/s) - «./fontconfig-2.12.6.tar.bz2» enregistré [1624683/1624683] +2019-02-14 21:52:07 (215 KB/s) - »./fontconfig-2.12.6.tar.bz2« gespeichert [1624683/1624683] ---2018-12-18 17:06:59-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 516132 (504K) [application/octet-stream] -Enregistre : «./libfreehand-0.1.2.tar.xz» +--2019-02-14 21:52:07-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 516132 (504K) [application/octet-stream] +Wird in »./libfreehand-0.1.2.tar.xz« gespeichert. - 0K ....... 100% 643K=0,8s + 0K ....... 100% 229K=2,2s -2018-12-18 17:07:00 (643 KB/s) - «./libfreehand-0.1.2.tar.xz» enregistré [516132/516132] +2019-02-14 21:52:10 (229 KB/s) - »./libfreehand-0.1.2.tar.xz« gespeichert [516132/516132] ---2018-12-18 17:07:00-- https://dev-www.libreoffice.org/src/freetype-2.8.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1886443 (1,8M) [application/octet-stream] -Enregistre : «./freetype-2.8.1.tar.bz2» +--2019-02-14 21:52:10-- https://dev-www.libreoffice.org/src/freetype-2.8.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1886443 (1,8M) [application/octet-stream] +Wird in »./freetype-2.8.1.tar.bz2« gespeichert. - 0K ........ ........ ........ .... 100% 973K=1,9s + 0K ........ ........ ........ .... 100% 239K=7,7s -2018-12-18 17:07:02 (973 KB/s) - «./freetype-2.8.1.tar.bz2» enregistré [1886443/1886443] +2019-02-14 21:52:18 (239 KB/s) - »./freetype-2.8.1.tar.bz2« gespeichert [1886443/1886443] ---2018-12-18 17:07:03-- https://dev-www.libreoffice.org/src/libepoxy-1.3.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 820119 (801K) [application/octet-stream] -Enregistre : «./libepoxy-1.3.1.tar.bz2» +--2019-02-14 21:52:18-- https://dev-www.libreoffice.org/src/libepoxy-1.3.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 820119 (801K) [application/octet-stream] +Wird in »./libepoxy-1.3.1.tar.bz2« gespeichert. - 0K ........ .... 100% 702K=1,1s + 0K ........ .... 100% 244K=3,3s -2018-12-18 17:07:04 (702 KB/s) - «./libepoxy-1.3.1.tar.bz2» enregistré [820119/820119] +2019-02-14 21:52:22 (244 KB/s) - »./libepoxy-1.3.1.tar.bz2« gespeichert [820119/820119] ---2018-12-18 17:07:04-- https://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5290295 (5,0M) [application/zip] -Enregistre : «./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip» +--2019-02-14 21:52:22-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 5290295 (5,0M) [application/zip] +Wird in »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 59% 699K 3s - 3072K ........ ........ ........ ........ 100% 688K=7,4s + 0K ........ ........ ........ ........ ........ ........ 59% 234K 9s + 3072K ........ ........ ........ ........ 100% 204K=23s -2018-12-18 17:07:12 (695 KB/s) - «./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip» enregistré [5290295/5290295] +2019-02-14 21:52:46 (221 KB/s) - »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert [5290295/5290295] ---2018-12-18 17:07:12-- https://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1344222 (1,3M) [application/octet-stream] -Enregistre : «./gpgme-1.9.0.tar.bz2» +--2019-02-14 21:52:46-- https://dev-www.libreoffice.org/src/gpgme-1.9.0.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1344222 (1,3M) [application/octet-stream] +Wird in »./gpgme-1.9.0.tar.bz2« gespeichert. - 0K ........ ........ .... 100% 640K=2,0s + 0K ........ ........ .... 100% 237K=5,5s -2018-12-18 17:07:14 (640 KB/s) - «./gpgme-1.9.0.tar.bz2» enregistré [1344222/1344222] +2019-02-14 21:52:52 (237 KB/s) - »./gpgme-1.9.0.tar.bz2« gespeichert [1344222/1344222] ---2018-12-18 17:07:14-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.10.tgz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 155690 (152K) [application/octet-stream] -Enregistre : «./graphite2-minimal-1.3.10.tgz» +--2019-02-14 21:52:52-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.10.tgz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 155690 (152K) [application/octet-stream] +Wird in »./graphite2-minimal-1.3.10.tgz« gespeichert. - 0K .. 100% 753K=0,2s + 0K .. 100% 268K=0,6s -2018-12-18 17:07:15 (753 KB/s) - «./graphite2-minimal-1.3.10.tgz» enregistré [155690/155690] +2019-02-14 21:52:53 (268 KB/s) - »./graphite2-minimal-1.3.10.tgz« gespeichert [155690/155690] ---2018-12-18 17:07:15-- https://dev-www.libreoffice.org/src/harfbuzz-1.8.4.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 3829479 (3,7M) [application/octet-stream] -Enregistre : «./harfbuzz-1.8.4.tar.bz2» +--2019-02-14 21:52:53-- https://dev-www.libreoffice.org/src/harfbuzz-1.8.4.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 3829479 (3,7M) [application/octet-stream] +Wird in »./harfbuzz-1.8.4.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 82% 1,34M 0s - 3072K ........ .. 100% 1,82M=2,6s + 0K ........ ........ ........ ........ ........ ........ 82% 208K 3s + 3072K ........ .. 100% 221K=18s -2018-12-18 17:07:18 (1,41 MB/s) - «./harfbuzz-1.8.4.tar.bz2» enregistré [3829479/3829479] +2019-02-14 21:53:11 (210 KB/s) - »./harfbuzz-1.8.4.tar.bz2« gespeichert [3829479/3829479] ---2018-12-18 17:07:18-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 3519470 (3,4M) [application/zip] -Enregistre : «./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip» +--2019-02-14 21:53:11-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 1,21M 0s - 3072K ..... 100% 710K=3,0s + 0K ........ ........ ........ ........ ........ ........ 89% 206K 2s + 3072K ..... 100% 201K=17s -2018-12-18 17:07:21 (1,12 MB/s) - «./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip» enregistré [3519470/3519470] +2019-02-14 21:53:29 (205 KB/s) - »./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip« gespeichert [3519470/3519470] ---2018-12-18 17:07:21-- https://dev-www.libreoffice.org/src/hunspell-1.6.2.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 721165 (704K) [application/octet-stream] -Enregistre : «./hunspell-1.6.2.tar.gz» +--2019-02-14 21:53:29-- https://dev-www.libreoffice.org/src/hunspell-1.6.2.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 721165 (704K) [application/octet-stream] +Wird in »./hunspell-1.6.2.tar.gz« gespeichert. - 0K ........ ... 100% 639K=1,1s + 0K ........ ... 100% 196K=3,6s -2018-12-18 17:07:23 (639 KB/s) - «./hunspell-1.6.2.tar.gz» enregistré [721165/721165] +2019-02-14 21:53:33 (196 KB/s) - »./hunspell-1.6.2.tar.gz« gespeichert [721165/721165] ---2018-12-18 17:07:23-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 638369 (623K) [application/octet-stream] -Enregistre : «./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz» +--2019-02-14 21:53:33-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 638369 (623K) [application/octet-stream] +Wird in »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert. - 0K ........ . 100% 886K=0,7s + 0K ........ . 100% 245K=2,5s -2018-12-18 17:07:24 (886 KB/s) - «./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz» enregistré [638369/638369] +2019-02-14 21:53:36 (245 KB/s) - »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert [638369/638369] ---2018-12-18 17:07:24-- https://dev-www.libreoffice.org/src/icu4c-61_1-src.tgz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 23400587 (22M) [application/octet-stream] -Enregistre : «./icu4c-61_1-src.tgz» +--2019-02-14 21:53:36-- https://dev-www.libreoffice.org/src/icu4c-61_1-src.tgz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 23400587 (22M) [application/octet-stream] +Wird in »./icu4c-61_1-src.tgz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 13% 1,01M 19s - 3072K ........ ........ ........ ........ ........ ........ 26% 781K 19s - 6144K ........ ........ ........ ........ ........ ........ 40% 699K 17s - 9216K ........ ........ ........ ........ ........ ........ 53% 776K 13s - 12288K ........ ........ ........ ........ ........ ........ 67% 667K 10s - 15360K ........ ........ ........ ........ ........ ........ 80% 610K 6s - 18432K ........ ........ ........ ........ ........ ........ 94% 494K 2s - 21504K ........ ........ ..... 100% 545K=34s + 0K ........ ........ ........ ........ ........ ........ 13% 231K 86s + 3072K ........ ........ ........ ........ ........ ........ 26% 209K 76s + 6144K ........ ........ ........ ........ ........ ........ 40% 238K 61s + 9216K ........ ........ ........ ........ ........ ........ 53% 231K 47s + 12288K ........ ........ ........ ........ ........ ........ 67% 222K 33s + 15360K ........ ........ ........ ........ ........ ........ 80% 228K 20s + 18432K ........ ........ ........ ........ ........ ........ 94% 215K 6s + 21504K ........ ........ ..... 100% 233K=1m42s -2018-12-18 17:07:58 (680 KB/s) - «./icu4c-61_1-src.tgz» enregistré [23400587/23400587] +2019-02-14 21:55:18 (225 KB/s) - »./icu4c-61_1-src.tgz« gespeichert [23400587/23400587] ---2018-12-18 17:07:58-- https://dev-www.libreoffice.org/src/icu4c-61_1-data.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 15996818 (15M) [application/zip] -Enregistre : «./icu4c-61_1-data.zip» +--2019-02-14 21:55:18-- https://dev-www.libreoffice.org/src/icu4c-61_1-data.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 15996818 (15M) [application/zip] +Wird in »./icu4c-61_1-data.zip« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 19% 1,19M 10s - 3072K ........ ........ ........ ........ ........ ........ 39% 690K 11s - 6144K ........ ........ ........ ........ ........ ........ 58% 755K 8s - 9216K ........ ........ ........ ........ ........ ........ 78% 429K 5s - 12288K ........ ........ ........ ........ ........ ........ 98% 720K 0s - 15360K .... 100% 473K=23s + 0K ........ ........ ........ ........ ........ ........ 19% 221K 57s + 3072K ........ ........ ........ ........ ........ ........ 39% 239K 41s + 6144K ........ ........ ........ ........ ........ ........ 58% 231K 28s + 9216K ........ ........ ........ ........ ........ ........ 78% 199K 15s + 12288K ........ ........ ........ ........ ........ ........ 98% 226K 1s + 15360K .... 100% 255K=70s -2018-12-18 17:08:21 (679 KB/s) - «./icu4c-61_1-data.zip» enregistré [15996818/15996818] +2019-02-14 21:56:28 (223 KB/s) - »./icu4c-61_1-data.zip« gespeichert [15996818/15996818] ---2018-12-18 17:08:21-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 743031 (726K) [application/zip] -Enregistre : «./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip» +--2019-02-14 21:56:29-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 413K=1,8s + 0K ........ ... 100% 245K=3,0s -2018-12-18 17:08:23 (413 KB/s) - «./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip» enregistré [743031/743031] +2019-02-14 21:56:35 (245 KB/s) - »./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip« gespeichert [743031/743031] ---2018-12-18 17:08:23-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 207563 (203K) [application/zip] -Enregistre : «./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip» +--2019-02-14 21:56:35-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 207563 (203K) [application/zip] +Wird in »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert. - 0K ... 100% 423K=0,5s + 0K ... 100% 260K=0,8s -2018-12-18 17:08:24 (423 KB/s) - «./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip» enregistré [207563/207563] +2019-02-14 21:56:37 (260 KB/s) - »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert [207563/207563] ---2018-12-18 17:08:24-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 427800 (418K) [application/zip] -Enregistre : «./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip» +--2019-02-14 21:56:37-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 427800 (418K) [application/zip] +Wird in »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert. - 0K ...... 100% 442K=0,9s + 0K ...... 100% 249K=1,7s -2018-12-18 17:08:25 (442 KB/s) - «./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip» enregistré [427800/427800] +2019-02-14 21:56:39 (249 KB/s) - »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert [427800/427800] ---2018-12-18 17:08:25-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5750610 (5,5M) [application/zip] -Enregistre : «./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip» +--2019-02-14 21:56:39-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 5750610 (5,5M) [application/zip] +Wird in »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 701K 4s - 3072K ........ ........ ........ ........ ....... 100% 670K=8,2s + 0K ........ ........ ........ ........ ........ ........ 54% 237K 11s + 3072K ........ ........ ........ ........ ....... 100% 239K=24s -2018-12-18 17:08:34 (687 KB/s) - «./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip» enregistré [5750610/5750610] +2019-02-14 21:57:03 (238 KB/s) - »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert [5750610/5750610] ---2018-12-18 17:08:34-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1180582 (1,1M) [application/zip] -Enregistre : «./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip» +--2019-02-14 21:57:03-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 882K=1,3s + 0K ........ ........ .. 100% 241K=4,8s -2018-12-18 17:08:36 (882 KB/s) - «./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip» enregistré [1180582/1180582] +2019-02-14 21:57:08 (241 KB/s) - »./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip« gespeichert [1180582/1180582] ---2018-12-18 17:08:36-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1396007 (1,3M) [application/zip] -Enregistre : «./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip» +--2019-02-14 21:57:08-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1396007 (1,3M) [application/zip] +Wird in »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert. - 0K ........ ........ ..... 100% 1,20M=1,1s + 0K ........ ........ ..... 100% 241K=5,7s -2018-12-18 17:08:37 (1,20 MB/s) - «./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip» enregistré [1396007/1396007] +2019-02-14 21:57:14 (241 KB/s) - »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert [1396007/1396007] ---2018-12-18 17:08:37-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2938721 (2,8M) [application/zip] -Enregistre : «./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip» +--2019-02-14 21:57:14-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 684K=4,2s + 0K ........ ........ ........ ........ ........ .... 100% 209K=14s -2018-12-18 17:08:42 (684 KB/s) - «./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip» enregistré [2938721/2938721] +2019-02-14 21:57:29 (209 KB/s) - »./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip« gespeichert [2938721/2938721] ---2018-12-18 17:08:42-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 762419 (745K) [application/zip] -Enregistre : «./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip» +--2019-02-14 21:57:29-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 762419 (745K) [application/zip] +Wird in »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert. - 0K ........ ... 100% 577K=1,3s + 0K ........ ... 100% 237K=3,1s -2018-12-18 17:08:43 (577 KB/s) - «./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip» enregistré [762419/762419] +2019-02-14 21:57:32 (237 KB/s) - »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert [762419/762419] ---2018-12-18 17:08:43-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 211919 (207K) [application/zip] -Enregistre : «./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip» +--2019-02-14 21:57:32-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 577K=0,4s + 0K ... 100% 166K=1,2s -2018-12-18 17:08:44 (577 KB/s) - «./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip» enregistré [211919/211919] +2019-02-14 21:57:34 (166 KB/s) - »./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip« gespeichert [211919/211919] ---2018-12-18 17:08:44-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2929311 (2,8M) [application/zip] -Enregistre : «./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip» +--2019-02-14 21:57:34-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 735K=3,9s + 0K ........ ........ ........ ........ ........ .... 100% 210K=14s -2018-12-18 17:08:48 (735 KB/s) - «./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip» enregistré [2929311/2929311] +2019-02-14 21:57:49 (210 KB/s) - »./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip« gespeichert [2929311/2929311] ---2018-12-18 17:08:48-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 153157 (150K) [application/zip] -Enregistre : «./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip» +--2019-02-14 21:57:50-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 153157 (150K) [application/zip] +Wird in »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert. - 0K .. 100% 1004K=0,1s + 0K .. 100% 268K=0,6s -2018-12-18 17:08:49 (1004 KB/s) - «./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip» enregistré [153157/153157] +2019-02-14 21:57:50 (268 KB/s) - »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert [153157/153157] ---2018-12-18 17:08:49-- https://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.2.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1657235 (1,6M) [application/octet-stream] -Enregistre : «./libjpeg-turbo-1.5.2.tar.gz» +--2019-02-14 21:57:51-- https://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.2.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1657235 (1,6M) [application/octet-stream] +Wird in »./libjpeg-turbo-1.5.2.tar.gz« gespeichert. - 0K ........ ........ ........ . 100% 1,06M=1,5s + 0K ........ ........ ........ . 100% 217K=7,5s -2018-12-18 17:08:51 (1,06 MB/s) - «./libjpeg-turbo-1.5.2.tar.gz» enregistré [1657235/1657235] +2019-02-14 21:57:58 (217 KB/s) - »./libjpeg-turbo-1.5.2.tar.gz« gespeichert [1657235/1657235] ---2018-12-18 17:08:51-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 37482428 (36M) [application/octet-stream] -Enregistre : «./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2» +--2019-02-14 21:57:58-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 37482428 (36M) [application/octet-stream] +Wird in »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 1,68M 19s - 3072K ........ ........ ........ ........ ........ ........ 16% 964K 25s - 6144K ........ ........ ........ ........ ........ ........ 25% 1,31M 22s - 9216K ........ ........ ........ ........ ........ ........ 33% 783K 22s - 12288K ........ ........ ........ ........ ........ ........ 41% 654K 22s - 15360K ........ ........ ........ ........ ........ ........ 50% 639K 20s - 18432K ........ ........ ........ ........ ........ ........ 58% 774K 17s - 21504K ........ ........ ........ ........ ........ ........ 67% 660K 14s - 24576K ........ ........ ........ ........ ........ ........ 75% 821K 11s - 27648K ........ ........ ........ ........ ........ ........ 83% 1,08M 7s - 30720K ........ ........ ........ ........ ........ ........ 92% 712K 3s - 33792K ........ ........ ........ ........ ........ ... 100% 1,20M=42s + 0K ........ ........ ........ ........ ........ ........ 8% 230K 2m26s + 3072K ........ ........ ........ ........ ........ ........ 16% 237K 2m11s + 6144K ........ ........ ........ ........ ........ ........ 25% 238K 1m57s + 9216K ........ ........ ........ ........ ........ ........ 33% 238K 1m43s + 12288K ........ ........ ........ ........ ........ ........ 41% 238K 90s + 15360K ........ ........ ........ ........ ........ ........ 50% 237K 77s + 18432K ........ ........ ........ ........ ........ ........ 58% 215K 65s + 21504K ........ ........ ........ ........ ........ ........ 67% 227K 52s + 24576K ........ ........ ........ ........ ........ ........ 75% 237K 38s + 27648K ........ ........ ........ ........ ........ ........ 83% 224K 25s + 30720K ........ ........ ........ ........ ........ ........ 92% 190K 12s + 33792K ........ ........ ........ ........ ........ ... 100% 233K=2m41s -2018-12-18 17:09:33 (862 KB/s) - «./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2» enregistré [37482428/37482428] +2019-02-14 22:00:40 (228 KB/s) - »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert [37482428/37482428] ---2018-12-18 17:09:34-- https://dev-www.libreoffice.org/src/lcms2-2.8.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 6687005 (6,4M) [application/octet-stream] -Enregistre : «./lcms2-2.8.tar.gz» +--2019-02-14 22:00:40-- https://dev-www.libreoffice.org/src/lcms2-2.9.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 10974649 (10M) [application/octet-stream] +Wird in »./lcms2-2.9.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 1,20M 3s - 3072K ........ ........ ........ ........ ........ ........ 94% 647K 0s - 6144K ...... 100% 976K=7,6s + 0K ........ ........ ........ ........ ........ ........ 28% 206K 37s + 3072K ........ ........ ........ ........ ........ ........ 57% 227K 21s + 6144K ........ ........ ........ ........ ........ ........ 85% 206K 7s + 9216K ........ ........ ....... 100% 235K=50s -2018-12-18 17:09:42 (854 KB/s) - «./lcms2-2.8.tar.gz» enregistré [6687005/6687005] +2019-02-14 22:01:30 (216 KB/s) - »./lcms2-2.9.tar.gz« gespeichert [10974649/10974649] ---2018-12-18 17:09:42-- https://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 319388 (312K) [application/zip] -Enregistre : «./libatomic_ops-7_2d.zip» +--2019-02-14 22:01:30-- https://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 693K=0,5s + 0K .... 100% 206K=1,5s -2018-12-18 17:09:42 (693 KB/s) - «./libatomic_ops-7_2d.zip» enregistré [319388/319388] +2019-02-14 22:01:32 (206 KB/s) - »./libatomic_ops-7_2d.zip« gespeichert [319388/319388] ---2018-12-18 17:09:42-- https://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 564857 (552K) [application/octet-stream] -Enregistre : «./libassuan-2.5.1.tar.bz2» +--2019-02-14 22:01:32-- https://dev-www.libreoffice.org/src/libassuan-2.5.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 564857 (552K) [application/octet-stream] +Wird in »./libassuan-2.5.1.tar.bz2« gespeichert. - 0K ........ 100% 788K=0,7s + 0K ........ 100% 202K=2,7s -2018-12-18 17:09:43 (788 KB/s) - «./libassuan-2.5.1.tar.bz2» enregistré [564857/564857] +2019-02-14 22:01:36 (202 KB/s) - »./libassuan-2.5.1.tar.bz2« gespeichert [564857/564857] ---2018-12-18 17:09:44-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 260288 (254K) [application/octet-stream] -Enregistre : «./libeot-0.01.tar.bz2» +--2019-02-14 22:01:36-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 260288 (254K) [application/octet-stream] +Wird in »./libeot-0.01.tar.bz2« gespeichert. - 0K ... 100% 730K=0,3s + 0K ... 100% 141K=1,8s -2018-12-18 17:09:44 (730 KB/s) - «./libeot-0.01.tar.bz2» enregistré [260288/260288] +2019-02-14 22:01:38 (141 KB/s) - »./libeot-0.01.tar.bz2« gespeichert [260288/260288] ---2018-12-18 17:09:44-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1041268 (1017K) [application/octet-stream] -Enregistre : «./libexttextcat-3.4.5.tar.xz» +--2019-02-14 22:01:38-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1041268 (1017K) [application/octet-stream] +Wird in »./libexttextcat-3.4.5.tar.xz« gespeichert. - 0K ........ ....... 100% 794K=1,3s + 0K ........ ....... 100% 238K=4,3s -2018-12-18 17:09:46 (794 KB/s) - «./libexttextcat-3.4.5.tar.xz» enregistré [1041268/1041268] +2019-02-14 22:01:43 (238 KB/s) - »./libexttextcat-3.4.5.tar.xz« gespeichert [1041268/1041268] ---2018-12-18 17:09:46-- https://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 813060 (794K) [application/octet-stream] -Enregistre : «./libgpg-error-1.27.tar.bz2» +--2019-02-14 22:01:43-- https://dev-www.libreoffice.org/src/libgpg-error-1.27.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 813060 (794K) [application/octet-stream] +Wird in »./libgpg-error-1.27.tar.bz2« gespeichert. - 0K ........ .... 100% 572K=1,4s + 0K ........ .... 100% 229K=3,5s -2018-12-18 17:09:48 (572 KB/s) - «./libgpg-error-1.27.tar.bz2» enregistré [813060/813060] +2019-02-14 22:01:47 (229 KB/s) - »./libgpg-error-1.27.tar.bz2« gespeichert [813060/813060] ---2018-12-18 17:09:48-- https://dev-www.libreoffice.org/src/language-subtag-registry-2018-04-23.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 75201 (73K) [application/octet-stream] -Enregistre : «./language-subtag-registry-2018-04-23.tar.bz2» +--2019-02-14 22:01:47-- https://dev-www.libreoffice.org/src/language-subtag-registry-2018-04-23.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 75201 (73K) [application/octet-stream] +Wird in »./language-subtag-registry-2018-04-23.tar.bz2« gespeichert. - 0K . 100% 703K=0,1s + 0K . 100% 264K=0,3s -2018-12-18 17:09:48 (703 KB/s) - «./language-subtag-registry-2018-04-23.tar.bz2» enregistré [75201/75201] +2019-02-14 22:01:48 (264 KB/s) - »./language-subtag-registry-2018-04-23.tar.bz2« gespeichert [75201/75201] ---2018-12-18 17:09:48-- https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 766080 (748K) [application/octet-stream] -Enregistre : «./liblangtag-0.6.2.tar.bz2» +--2019-02-14 22:01:48-- https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 766080 (748K) [application/octet-stream] +Wird in »./liblangtag-0.6.2.tar.bz2« gespeichert. - 0K ........ ... 100% 738K=1,0s + 0K ........ ... 100% 189K=4,0s -2018-12-18 17:09:49 (738 KB/s) - «./liblangtag-0.6.2.tar.bz2» enregistré [766080/766080] +2019-02-14 22:01:52 (189 KB/s) - »./liblangtag-0.6.2.tar.bz2« gespeichert [766080/766080] ---2018-12-18 17:09:49-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.4.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 279980 (273K) [application/octet-stream] -Enregistre : «./libnumbertext-1.0.4.tar.xz» +--2019-02-14 22:01:52-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.4.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 279980 (273K) [application/octet-stream] +Wird in »./libnumbertext-1.0.4.tar.xz« gespeichert. - 0K .... 100% 479K=0,6s + 0K .... 100% 185K=1,5s -2018-12-18 17:09:50 (479 KB/s) - «./libnumbertext-1.0.4.tar.xz» enregistré [279980/279980] +2019-02-14 22:01:54 (185 KB/s) - »./libnumbertext-1.0.4.tar.xz« gespeichert [279980/279980] ---2018-12-18 17:09:50-- https://dev-www.libreoffice.org/src/libpng-1.6.34.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 997968 (975K) [application/octet-stream] -Enregistre : «./libpng-1.6.34.tar.xz» +--2019-02-14 22:01:54-- https://dev-www.libreoffice.org/src/libpng-1.6.34.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 997968 (975K) [application/octet-stream] +Wird in »./libpng-1.6.34.tar.xz« gespeichert. - 0K ........ ....... 100% 635K=1,5s + 0K ........ ....... 100% 238K=4,1s -2018-12-18 17:09:52 (635 KB/s) - «./libpng-1.6.34.tar.xz» enregistré [997968/997968] +2019-02-14 22:01:58 (238 KB/s) - »./libpng-1.6.34.tar.xz« gespeichert [997968/997968] ---2018-12-18 17:09:52-- https://dev-www.libreoffice.org/src/ltm-1.0.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2542693 (2,4M) [application/zip] -Enregistre : «./ltm-1.0.zip» +--2019-02-14 22:01:59-- https://dev-www.libreoffice.org/src/ltm-1.0.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 563K=4,4s + 0K ........ ........ ........ ........ ...... 100% 239K=10s -2018-12-18 17:09:57 (563 KB/s) - «./ltm-1.0.zip» enregistré [2542693/2542693] +2019-02-14 22:02:09 (239 KB/s) - »./ltm-1.0.zip« gespeichert [2542693/2542693] ---2018-12-18 17:09:57-- https://dev-www.libreoffice.org/src/libxml2-2.9.8.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5469097 (5,2M) [application/octet-stream] -Enregistre : «./libxml2-2.9.8.tar.gz» +--2019-02-14 22:02:09-- https://dev-www.libreoffice.org/src/libxml2-2.9.9.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 5476717 (5,2M) [application/octet-stream] +Wird in »./libxml2-2.9.9.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 57% 612K 4s - 3072K ........ ........ ........ ........ ... 100% 992K=7,3s + 0K ........ ........ ........ ........ ........ ........ 57% 209K 11s + 3072K ........ ........ ........ ........ ... 100% 227K=25s -2018-12-18 17:10:05 (731 KB/s) - «./libxml2-2.9.8.tar.gz» enregistré [5469097/5469097] +2019-02-14 22:02:35 (216 KB/s) - »./libxml2-2.9.9.tar.gz« gespeichert [5476717/5476717] ---2018-12-18 17:10:05-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.25.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1839160 (1,8M) [application/octet-stream] -Enregistre : «./xmlsec1-1.2.25.tar.gz» +--2019-02-14 22:02:35-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.25.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1839160 (1,8M) [application/octet-stream] +Wird in »./xmlsec1-1.2.25.tar.gz« gespeichert. - 0K ........ ........ ........ .... 100% 591K=3,0s + 0K ........ ........ ........ .... 100% 223K=8,1s -2018-12-18 17:10:08 (591 KB/s) - «./xmlsec1-1.2.25.tar.gz» enregistré [1839160/1839160] +2019-02-14 22:02:43 (223 KB/s) - »./xmlsec1-1.2.25.tar.gz« gespeichert [1839160/1839160] ---2018-12-18 17:10:08-- https://dev-www.libreoffice.org/src/libxslt-1.1.32.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 3440715 (3,3M) [application/octet-stream] -Enregistre : «./libxslt-1.1.32.tar.gz» +--2019-02-14 22:02:43-- https://dev-www.libreoffice.org/src/libxslt-1.1.33.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 3444093 (3,3M) [application/octet-stream] +Wird in »./libxslt-1.1.33.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 91% 1,11M 0s - 3072K .... 100% 1,11M=3,0s + 0K ........ ........ ........ ........ ........ ........ 91% 209K 1s + 3072K .... 100% 289K=16s -2018-12-18 17:10:11 (1,11 MB/s) - «./libxslt-1.1.32.tar.gz» enregistré [3440715/3440715] +2019-02-14 22:02:59 (214 KB/s) - »./libxslt-1.1.33.tar.gz« gespeichert [3444093/3444093] ---2018-12-18 17:10:12-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 769268 (751K) [application/octet-stream] -Enregistre : «./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz» +--2019-02-14 22:02:59-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 769268 (751K) [application/octet-stream] +Wird in »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert. - 0K ........ ... 100% 715K=1,1s + 0K ........ ... 100% 244K=3,1s -2018-12-18 17:10:13 (715 KB/s) - «./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz» enregistré [769268/769268] +2019-02-14 22:03:03 (244 KB/s) - »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert [769268/769268] ---2018-12-18 17:10:13-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2380804 (2,3M) [application/octet-stream] -Enregistre : «./lxml-4.1.1.tgz» +--2019-02-14 22:03:03-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2380804 (2,3M) [application/octet-stream] +Wird in »./lxml-4.1.1.tgz« gespeichert. - 0K ........ ........ ........ ........ .... 100% 758K=3,1s + 0K ........ ........ ........ ........ .... 100% 231K=10s -2018-12-18 17:10:16 (758 KB/s) - «./lxml-4.1.1.tgz» enregistré [2380804/2380804] +2019-02-14 22:03:13 (231 KB/s) - »./lxml-4.1.1.tgz« gespeichert [2380804/2380804] ---2018-12-18 17:10:16-- https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1923436 (1,8M) [application/octet-stream] -Enregistre : «./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz» +--2019-02-14 22:03:13-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1923436 (1,8M) [application/octet-stream] +Wird in »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert. - 0K ........ ........ ........ ..... 100% 1,18M=1,6s + 0K ........ ........ ........ ..... 100% 193K=9,7s -2018-12-18 17:10:18 (1,18 MB/s) - «./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz» enregistré [1923436/1923436] +2019-02-14 22:03:24 (193 KB/s) - »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert [1923436/1923436] ---2018-12-18 17:10:18-- https://dev-www.libreoffice.org/src/mdds-1.4.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 317460 (310K) [application/octet-stream] -Enregistre : «./mdds-1.4.1.tar.bz2» +--2019-02-14 22:03:24-- https://dev-www.libreoffice.org/src/mdds-1.4.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 317460 (310K) [application/octet-stream] +Wird in »./mdds-1.4.1.tar.bz2« gespeichert. - 0K .... 100% 1,07M=0,3s + 0K .... 100% 237K=1,3s -2018-12-18 17:10:19 (1,07 MB/s) - «./mdds-1.4.1.tar.bz2» enregistré [317460/317460] +2019-02-14 22:03:25 (237 KB/s) - »./mdds-1.4.1.tar.bz2« gespeichert [317460/317460] ---2018-12-18 17:10:19-- https://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2157791 (2,1M) [application/octet-stream] -Enregistre : «./mDNSResponder-576.30.4.tar.gz» +--2019-02-14 22:03:25-- https://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2157791 (2,1M) [application/octet-stream] +Wird in »./mDNSResponder-576.30.4.tar.gz« gespeichert. - 0K ........ ........ ........ ........ 100% 1,57M=1,3s + 0K ........ ........ ........ ........ 100% 209K=10s -2018-12-18 17:10:21 (1,57 MB/s) - «./mDNSResponder-576.30.4.tar.gz» enregistré [2157791/2157791] +2019-02-14 22:03:36 (209 KB/s) - »./mDNSResponder-576.30.4.tar.gz« gespeichert [2157791/2157791] ---2018-12-18 17:10:21-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 112756 (110K) [application/octet-stream] -Enregistre : «./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz» +--2019-02-14 22:03:36-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 112756 (110K) [application/octet-stream] +Wird in »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert. - 0K . 100% 1,02M=0,1s + 0K . 100% 234K=0,5s -2018-12-18 17:10:21 (1,02 MB/s) - «./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz» enregistré [112756/112756] +2019-02-14 22:03:37 (234 KB/s) - »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert [112756/112756] ---2018-12-18 17:10:21-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1169488 (1,1M) [application/octet-stream] -Enregistre : «./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz» +--2019-02-14 22:03:37-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1169488 (1,1M) [application/octet-stream] +Wird in »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert. - 0K ........ ........ . 100% 1,39M=0,8s + 0K ........ ........ . 100% 228K=5,0s -2018-12-18 17:10:22 (1,39 MB/s) - «./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz» enregistré [1169488/1169488] +2019-02-14 22:03:42 (228 KB/s) - »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert [1169488/1169488] ---2018-12-18 17:10:22-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5522795 (5,3M) [application/zip] -Enregistre : «./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip» +--2019-02-14 22:03:42-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 603K 4s - 3072K ........ ........ ........ ........ .... 100% 1,10M=7,2s + 0K ........ ........ ........ ........ ........ ........ 56% 159K 15s + 3072K ........ ........ ........ ........ .... 100% 228K=29s -2018-12-18 17:10:30 (753 KB/s) - «./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip» enregistré [5522795/5522795] +2019-02-14 22:04:12 (183 KB/s) - »./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip« gespeichert [5522795/5522795] ---2018-12-18 17:10:30-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 811606 (793K) [application/zip] -Enregistre : «./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip» +--2019-02-14 22:04:12-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 811606 (793K) [application/zip] +Wird in »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert. - 0K ........ .... 100% 1,06M=0,7s + 0K ........ .... 100% 221K=3,6s -2018-12-18 17:10:31 (1,06 MB/s) - «./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip» enregistré [811606/811606] +2019-02-14 22:04:16 (221 KB/s) - »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert [811606/811606] ---2018-12-18 17:10:31-- https://dev-www.libreoffice.org/src/134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1333593 (1,3M) [application/octet-stream] -Enregistre : «./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz» +--2019-02-14 22:04:16-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1333593 (1,3M) [application/octet-stream] +Wird in »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert. - 0K ........ ........ .... 100% 1,04M=1,2s + 0K ........ ........ .... 100% 229K=5,7s -2018-12-18 17:10:33 (1,04 MB/s) - «./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz» enregistré [1333593/1333593] +2019-02-14 22:04:23 (229 KB/s) - »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert [1333593/1333593] ---2018-12-18 17:10:33-- https://dev-www.libreoffice.org/src/5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2285857 (2,2M) [application/octet-stream] -Enregistre : «./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz» +--2019-02-14 22:04:23-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2285857 (2,2M) [application/octet-stream] +Wird in »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert. - 0K ........ ........ ........ ........ .. 100% 624K=3,6s + 0K ........ ........ ........ ........ .. 100% 239K=9,3s -2018-12-18 17:10:37 (624 KB/s) - «./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz» enregistré [2285857/2285857] +2019-02-14 22:04:32 (239 KB/s) - »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert [2285857/2285857] ---2018-12-18 17:10:37-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 6651982 (6,3M) [application/zip] -Enregistre : «./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip» +--2019-02-14 22:04:33-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 570K 6s - 3072K ........ ........ ........ ........ ........ ........ 94% 1,15M 0s - 6144K ..... 100% 1,65M=8,2s + 0K ........ ........ ........ ........ ........ ........ 47% 227K 15s + 3072K ........ ........ ........ ........ ........ ........ 94% 198K 2s + 6144K ..... 100% 242K=30s -2018-12-18 17:10:45 (791 KB/s) - «./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip» enregistré [6651982/6651982] +2019-02-14 22:05:03 (213 KB/s) - »./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip« gespeichert [6651982/6651982] ---2018-12-18 17:10:45-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1338551 (1,3M) [application/octet-stream] -Enregistre : «./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz» +--2019-02-14 22:05:04-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1338551 (1,3M) [application/octet-stream] +Wird in »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert. - 0K ........ ........ .... 100% 1017K=1,3s + 0K ........ ........ .... 100% 184K=7,1s -2018-12-18 17:10:47 (1017 KB/s) - «./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz» enregistré [1338551/1338551] +2019-02-14 22:05:11 (184 KB/s) - »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert [1338551/1338551] ---2018-12-18 17:10:47-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1098827 (1,0M) [application/octet-stream] -Enregistre : «./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz» +--2019-02-14 22:05:11-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1098827 (1,0M) [application/octet-stream] +Wird in »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert. - 0K ........ ........ 100% 1,29M=0,8s + 0K ........ ........ 100% 212K=5,1s -2018-12-18 17:10:48 (1,29 MB/s) - «./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz» enregistré [1098827/1098827] +2019-02-14 22:05:17 (212 KB/s) - »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert [1098827/1098827] ---2018-12-18 17:10:48-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2961759 (2,8M) [application/octet-stream] -Enregistre : «./EmojiOneColor-SVGinOT-1.3.tar.gz» +--2019-02-14 22:05:17-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2961759 (2,8M) [application/octet-stream] +Wird in »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 1,12M=2,5s + 0K ........ ........ ........ ........ ........ ..... 100% 191K=15s -2018-12-18 17:10:51 (1,12 MB/s) - «./EmojiOneColor-SVGinOT-1.3.tar.gz» enregistré [2961759/2961759] +2019-02-14 22:05:32 (191 KB/s) - »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert [2961759/2961759] ---2018-12-18 17:10:51-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 6646182 (6,3M) [application/octet-stream] -Enregistre : «./noto-fonts-20171024.tar.gz» +--2019-02-14 22:05:32-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 6646182 (6,3M) [application/octet-stream] +Wird in »./noto-fonts-20171024.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 891K 4s - 3072K ........ ........ ........ ........ ........ ........ 94% 808K 0s - 6144K ..... 100% 758K=7,7s + 0K ........ ........ ........ ........ ........ ........ 47% 215K 16s + 3072K ........ ........ ........ ........ ........ ........ 94% 199K 2s + 6144K ..... 100% 157K=32s -2018-12-18 17:10:59 (842 KB/s) - «./noto-fonts-20171024.tar.gz» enregistré [6646182/6646182] +2019-02-14 22:06:05 (203 KB/s) - »./noto-fonts-20171024.tar.gz« gespeichert [6646182/6646182] ---2018-12-18 17:10:59-- https://dev-www.libreoffice.org/src/culmus-0.131.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1076737 (1,0M) [application/octet-stream] -Enregistre : «./culmus-0.131.tar.gz» +--2019-02-14 22:06:05-- https://dev-www.libreoffice.org/src/culmus-0.131.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1076737 (1,0M) [application/octet-stream] +Wird in »./culmus-0.131.tar.gz« gespeichert. - 0K ........ ........ 100% 705K=1,5s + 0K ........ ........ 100% 212K=5,0s -2018-12-18 17:11:01 (705 KB/s) - «./culmus-0.131.tar.gz» enregistré [1076737/1076737] +2019-02-14 22:06:11 (212 KB/s) - »./culmus-0.131.tar.gz« gespeichert [1076737/1076737] ---2018-12-18 17:11:01-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 531276 (519K) [application/octet-stream] -Enregistre : «./libre-hebrew-1.0.tar.gz» +--2019-02-14 22:06:11-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 531276 (519K) [application/octet-stream] +Wird in »./libre-hebrew-1.0.tar.gz« gespeichert. - 0K ........ 100% 798K=0,7s + 0K ........ 100% 247K=2,1s -2018-12-18 17:11:02 (798 KB/s) - «./libre-hebrew-1.0.tar.gz» enregistré [531276/531276] +2019-02-14 22:06:14 (247 KB/s) - »./libre-hebrew-1.0.tar.gz« gespeichert [531276/531276] ---2018-12-18 17:11:02-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 93498 (91K) [application/octet-stream] -Enregistre : «./alef-1.001.tar.gz» +--2019-02-14 22:06:14-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 93498 (91K) [application/octet-stream] +Wird in »./alef-1.001.tar.gz« gespeichert. - 0K . 100% 991K=0,09s + 0K . 100% 293K=0,3s -2018-12-18 17:11:02 (991 KB/s) - «./alef-1.001.tar.gz» enregistré [93498/93498] +2019-02-14 22:06:15 (293 KB/s) - »./alef-1.001.tar.gz« gespeichert [93498/93498] ---2018-12-18 17:11:02-- https://dev-www.libreoffice.org/src/Amiri-0.111.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1423863 (1,4M) [application/zip] -Enregistre : «./Amiri-0.111.zip» +--2019-02-14 22:06:15-- https://dev-www.libreoffice.org/src/Amiri-0.111.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1423863 (1,4M) [application/zip] +Wird in »./Amiri-0.111.zip« gespeichert. - 0K ........ ........ ..... 100% 680K=2,0s + 0K ........ ........ ..... 100% 179K=7,8s -2018-12-18 17:11:05 (680 KB/s) - «./Amiri-0.111.zip» enregistré [1423863/1423863] +2019-02-14 22:06:23 (179 KB/s) - »./Amiri-0.111.zip« gespeichert [1423863/1423863] ---2018-12-18 17:11:05-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 407400 (398K) [application/octet-stream] -Enregistre : «./ttf-kacst_2.01+mry.tar.gz» +--2019-02-14 22:06:23-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 407400 (398K) [application/octet-stream] +Wird in »./ttf-kacst_2.01+mry.tar.gz« gespeichert. - 0K ...... 100% 773K=0,5s + 0K ...... 100% 162K=2,5s -2018-12-18 17:11:06 (773 KB/s) - «./ttf-kacst_2.01+mry.tar.gz» enregistré [407400/407400] +2019-02-14 22:06:26 (162 KB/s) - »./ttf-kacst_2.01+mry.tar.gz« gespeichert [407400/407400] ---2018-12-18 17:11:06-- https://dev-www.libreoffice.org/src/ReemKufi-0.7.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 153832 (150K) [application/zip] -Enregistre : «./ReemKufi-0.7.zip» +--2019-02-14 22:06:26-- https://dev-www.libreoffice.org/src/ReemKufi-0.7.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 153832 (150K) [application/zip] +Wird in »./ReemKufi-0.7.zip« gespeichert. - 0K .. 100% 465K=0,3s + 0K .. 100% 234K=0,6s -2018-12-18 17:11:07 (465 KB/s) - «./ReemKufi-0.7.zip» enregistré [153832/153832] +2019-02-14 22:06:27 (234 KB/s) - »./ReemKufi-0.7.zip« gespeichert [153832/153832] ---2018-12-18 17:11:07-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1114645 (1,1M) [application/zip] -Enregistre : «./Scheherazade-2.100.zip» +--2019-02-14 22:06:27-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1114645 (1,1M) [application/zip] +Wird in »./Scheherazade-2.100.zip« gespeichert. - 0K ........ ........ . 100% 425K=2,6s + 0K ........ ........ . 100% 218K=5,0s -2018-12-18 17:11:10 (425 KB/s) - «./Scheherazade-2.100.zip» enregistré [1114645/1114645] +2019-02-14 22:06:32 (218 KB/s) - »./Scheherazade-2.100.zip« gespeichert [1114645/1114645] ---2018-12-18 17:11:10-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 377472 (369K) [application/octet-stream] -Enregistre : «./libmspub-0.1.4.tar.xz» +--2019-02-14 22:06:33-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 377472 (369K) [application/octet-stream] +Wird in »./libmspub-0.1.4.tar.xz« gespeichert. - 0K ..... 100% 592K=0,6s + 0K ..... 100% 213K=1,7s -2018-12-18 17:11:11 (592 KB/s) - «./libmspub-0.1.4.tar.xz» enregistré [377472/377472] +2019-02-14 22:06:35 (213 KB/s) - »./libmspub-0.1.4.tar.xz« gespeichert [377472/377472] ---2018-12-18 17:11:11-- https://dev-www.libreoffice.org/src/libmwaw-0.3.14.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1276240 (1,2M) [application/octet-stream] -Enregistre : «./libmwaw-0.3.14.tar.xz» +--2019-02-14 22:06:35-- https://dev-www.libreoffice.org/src/libmwaw-0.3.14.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1276240 (1,2M) [application/octet-stream] +Wird in »./libmwaw-0.3.14.tar.xz« gespeichert. - 0K ........ ........ ... 100% 508K=2,5s + 0K ........ ........ ... 100% 197K=6,3s -2018-12-18 17:11:14 (508 KB/s) - «./libmwaw-0.3.14.tar.xz» enregistré [1276240/1276240] +2019-02-14 22:06:52 (197 KB/s) - »./libmwaw-0.3.14.tar.xz« gespeichert [1276240/1276240] ---2018-12-18 17:11:14-- https://dev-www.libreoffice.org/src/7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 506106 (494K) [application/octet-stream] -Enregistre : «./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz» +--2019-02-14 22:06:52-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 506106 (494K) [application/octet-stream] +Wird in »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert. - 0K ....... 100% 560K=0,9s + 0K ....... 100% 207K=2,4s -2018-12-18 17:11:15 (560 KB/s) - «./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz» enregistré [506106/506106] +2019-02-14 22:06:58 (207 KB/s) - »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert [506106/506106] ---2018-12-18 17:11:15-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 4910303 (4,7M) [application/octet-stream] -Enregistre : «./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz» +--2019-02-14 22:06:58-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 4910303 (4,7M) [application/octet-stream] +Wird in »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 64% 795K 2s - 3072K ........ ........ ........ .. 100% 892K=5,8s + 0K ........ ........ ........ ........ ........ ........ 64% 196K 9s + 3072K ........ ........ ........ .. 100% 222K=23s -2018-12-18 17:11:21 (828 KB/s) - «./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz» enregistré [4910303/4910303] +2019-02-14 22:07:22 (205 KB/s) - »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert [4910303/4910303] ---2018-12-18 17:11:21-- https://dev-www.libreoffice.org/src/neon-0.30.2.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 932779 (911K) [application/octet-stream] -Enregistre : «./neon-0.30.2.tar.gz» +--2019-02-14 22:07:22-- https://dev-www.libreoffice.org/src/neon-0.30.2.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 932779 (911K) [application/octet-stream] +Wird in »./neon-0.30.2.tar.gz« gespeichert. - 0K ........ ...... 100% 681K=1,3s + 0K ........ ...... 100% 224K=4,1s -2018-12-18 17:11:23 (681 KB/s) - «./neon-0.30.2.tar.gz» enregistré [932779/932779] +2019-02-14 22:07:26 (224 KB/s) - »./neon-0.30.2.tar.gz« gespeichert [932779/932779] ---2018-12-18 17:11:23-- https://dev-www.libreoffice.org/src/nss-3.38-with-nspr-4.19.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 24423714 (23M) [application/octet-stream] -Enregistre : «./nss-3.38-with-nspr-4.19.tar.gz» +--2019-02-14 22:07:26-- https://dev-www.libreoffice.org/src/nss-3.38-with-nspr-4.19.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 24423714 (23M) [application/octet-stream] +Wird in »./nss-3.38-with-nspr-4.19.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 12% 705K 29s - 3072K ........ ........ ........ ........ ........ ........ 25% 801K 24s - 6144K ........ ........ ........ ........ ........ ........ 38% 762K 19s - 9216K ........ ........ ........ ........ ........ ........ 51% 699K 16s - 12288K ........ ........ ........ ........ ........ ........ 64% 814K 11s - 15360K ........ ........ ........ ........ ........ ........ 77% 1,04M 7s - 18432K ........ ........ ........ ........ ........ ........ 90% 840K 3s - 21504K ........ ........ ........ ........ .... 100% 928K=29s + 0K ........ ........ ........ ........ ........ ........ 12% 197K 1m46s + 3072K ........ ........ ........ ........ ........ ........ 25% 208K 88s + 6144K ........ ........ ........ ........ ........ ........ 38% 193K 74s + 9216K ........ ........ ........ ........ ........ ........ 51% 177K 60s + 12288K ........ ........ ........ ........ ........ ........ 64% 238K 42s + 15360K ........ ........ ........ ........ ........ ........ 77% 221K 27s + 18432K ........ ........ ........ ........ ........ ........ 90% 208K 11s + 21504K ........ ........ ........ ........ .... 100% 227K=1m56s -2018-12-18 17:11:53 (809 KB/s) - «./nss-3.38-with-nspr-4.19.tar.gz» enregistré [24423714/24423714] +2019-02-14 22:09:22 (206 KB/s) - »./nss-3.38-with-nspr-4.19.tar.gz« gespeichert [24423714/24423714] ---2018-12-18 17:11:53-- https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 446705 (436K) [application/octet-stream] -Enregistre : «./libodfgen-0.1.6.tar.bz2» +--2019-02-14 22:09:22-- https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 446705 (436K) [application/octet-stream] +Wird in »./libodfgen-0.1.6.tar.bz2« gespeichert. - 0K ...... 100% 663K=0,7s + 0K ...... 100% 214K=2,0s -2018-12-18 17:11:54 (663 KB/s) - «./libodfgen-0.1.6.tar.bz2» enregistré [446705/446705] +2019-02-14 22:09:25 (214 KB/s) - »./libodfgen-0.1.6.tar.bz2« gespeichert [446705/446705] ---2018-12-18 17:11:54-- https://dev-www.libreoffice.org/src/openldap-2.4.45.tgz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5672845 (5,4M) [application/octet-stream] -Enregistre : «./openldap-2.4.45.tgz» +--2019-02-14 22:09:25-- https://dev-www.libreoffice.org/src/openldap-2.4.45.tgz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 5672845 (5,4M) [application/octet-stream] +Wird in »./openldap-2.4.45.tgz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 55% 1,01M 2s - 3072K ........ ........ ........ ........ ...... 100% 1,45M=4,6s + 0K ........ ........ ........ ........ ........ ........ 55% 194K 13s + 3072K ........ ........ ........ ........ ...... 100% 173K=30s -2018-12-18 17:11:59 (1,17 MB/s) - «./openldap-2.4.45.tgz» enregistré [5672845/5672845] +2019-02-14 22:09:56 (184 KB/s) - »./openldap-2.4.45.tgz« gespeichert [5672845/5672845] ---2018-12-18 17:11:59-- https://dev-www.libreoffice.org/src/openssl-1.0.2p.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 5338192 (5,1M) [application/octet-stream] -Enregistre : «./openssl-1.0.2p.tar.gz» +--2019-02-14 22:09:56-- https://dev-www.libreoffice.org/src/openssl-1.0.2p.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 5338192 (5,1M) [application/octet-stream] +Wird in »./openssl-1.0.2p.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 58% 1,17M 2s - 3072K ........ ........ ........ ........ . 100% 1,09M=4,5s + 0K ........ ........ ........ ........ ........ ........ 58% 188K 11s + 3072K ........ ........ ........ ........ . 100% 157K=30s -2018-12-18 17:12:04 (1,13 MB/s) - «./openssl-1.0.2p.tar.gz» enregistré [5338192/5338192] +2019-02-14 22:10:26 (174 KB/s) - »./openssl-1.0.2p.tar.gz« gespeichert [5338192/5338192] ---2018-12-18 17:12:04-- https://dev-www.libreoffice.org/src/liborcus-0.14.0.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2448266 (2,3M) [application/octet-stream] -Enregistre : «./liborcus-0.14.0.tar.gz» +--2019-02-14 22:10:26-- https://dev-www.libreoffice.org/src/liborcus-0.14.0.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2448266 (2,3M) [application/octet-stream] +Wird in »./liborcus-0.14.0.tar.gz« gespeichert. - 0K ........ ........ ........ ........ ..... 100% 1,12M=2,1s + 0K ........ ........ ........ ........ ..... 100% 184K=13s -2018-12-18 17:12:06 (1,12 MB/s) - «./liborcus-0.14.0.tar.gz» enregistré [2448266/2448266] +2019-02-14 22:10:40 (184 KB/s) - »./liborcus-0.14.0.tar.gz« gespeichert [2448266/2448266] ---2018-12-18 17:12:06-- https://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 760676 (743K) [application/octet-stream] -Enregistre : «./owncloud-android-library-0.9.4-no-binary-deps.tar.gz» +--2019-02-14 22:10:40-- https://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) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 760676 (743K) [application/octet-stream] +Wird in »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert. - 0K ........ ... 100% 1,10M=0,7s + 0K ........ ... 100% 179K=4,2s -2018-12-18 17:12:07 (1,10 MB/s) - «./owncloud-android-library-0.9.4-no-binary-deps.tar.gz» enregistré [760676/760676] +2019-02-14 22:10:44 (179 KB/s) - »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert [760676/760676] ---2018-12-18 17:12:07-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 306496 (299K) [application/octet-stream] -Enregistre : «./libpagemaker-0.0.4.tar.xz» +--2019-02-14 22:10:44-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 306496 (299K) [application/octet-stream] +Wird in »./libpagemaker-0.0.4.tar.xz« gespeichert. - 0K .... 100% 656K=0,5s + 0K .... 100% 197K=1,5s -2018-12-18 17:12:08 (656 KB/s) - «./libpagemaker-0.0.4.tar.xz» enregistré [306496/306496] +2019-02-14 22:10:46 (197 KB/s) - »./libpagemaker-0.0.4.tar.xz« gespeichert [306496/306496] ---2018-12-18 17:12:08-- https://dev-www.libreoffice.org/src/pdfium-3426.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 6348500 (6,1M) [application/octet-stream] -Enregistre : «./pdfium-3426.tar.bz2» +--2019-02-14 22:10:46-- https://dev-www.libreoffice.org/src/pdfium-3426.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 6348500 (6,1M) [application/octet-stream] +Wird in »./pdfium-3426.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 49% 774K 4s - 3072K ........ ........ ........ ........ ........ ........ 99% 857K 0s - 6144K 100% 2,29M=7,6s + 0K ........ ........ ........ ........ ........ ........ 49% 170K 18s + 3072K ........ ........ ........ ........ ........ ........ 99% 190K 0s + 6144K 100% 312K=34s -2018-12-18 17:12:16 (818 KB/s) - «./pdfium-3426.tar.bz2» enregistré [6348500/6348500] +2019-02-14 22:11:21 (180 KB/s) - »./pdfium-3426.tar.bz2« gespeichert [6348500/6348500] ---2018-12-18 17:12:16-- https://dev-www.libreoffice.org/src/poppler-0.66.0.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1457420 (1,4M) [application/octet-stream] -Enregistre : «./poppler-0.66.0.tar.xz» +--2019-02-14 22:11:21-- https://dev-www.libreoffice.org/src/poppler-0.73.0.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1507068 (1,4M) [application/octet-stream] +Wird in »./poppler-0.73.0.tar.xz« gespeichert. - 0K ........ ........ ...... 100% 990K=1,4s + 0K ........ ........ ...... 100% 231K=6,4s -2018-12-18 17:12:18 (990 KB/s) - «./poppler-0.66.0.tar.xz» enregistré [1457420/1457420] +2019-02-14 22:11:28 (231 KB/s) - »./poppler-0.73.0.tar.xz« gespeichert [1507068/1507068] ---2018-12-18 17:12:18-- https://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 16113737 (15M) [application/octet-stream] -Enregistre : «./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2» +--2019-02-14 22:11:28-- https://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 16113737 (15M) [application/octet-stream] +Wird in »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 19% 1,13M 11s - 3072K ........ ........ ........ ........ ........ ........ 39% 556K 13s - 6144K ........ ........ ........ ........ ........ ........ 58% 695K 9s - 9216K ........ ........ ........ ........ ........ ........ 78% 755K 5s - 12288K ........ ........ ........ ........ ........ ........ 97% 684K 1s - 15360K ..... 100% 675K=22s + 0K ........ ........ ........ ........ ........ ........ 19% 218K 58s + 3072K ........ ........ ........ ........ ........ ........ 39% 117K 63s + 6144K ........ ........ ........ ........ ........ ........ 58% 235K 38s + 9216K ........ ........ ........ ........ ........ ........ 78% 228K 19s + 12288K ........ ........ ........ ........ ........ ........ 97% 215K 2s + 15360K ..... 100% 242K=83s -2018-12-18 17:12:40 (725 KB/s) - «./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2» enregistré [16113737/16113737] +2019-02-14 22:12:51 (190 KB/s) - »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert [16113737/16113737] ---2018-12-18 17:12:40-- https://dev-www.libreoffice.org/src/Python-3.5.5.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 15351440 (15M) [application/octet-stream] -Enregistre : «./Python-3.5.5.tar.xz» +--2019-02-14 22:12:51-- https://dev-www.libreoffice.org/src/Python-3.5.5.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 15351440 (15M) [application/octet-stream] +Wird in »./Python-3.5.5.tar.xz« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 20% 1,22M 10s - 3072K ........ ........ ........ ........ ........ ........ 40% 1007K 8s - 6144K ........ ........ ........ ........ ........ ........ 61% 1,13M 5s - 9216K ........ ........ ........ ........ ........ ........ 81% 1,20M 2s - 12288K ........ ........ ........ ........ ........ .. 100% 1,19M=13s + 0K ........ ........ ........ ........ ........ ........ 20% 217K 55s + 3072K ........ ........ ........ ........ ........ ........ 40% 195K 43s + 6144K ........ ........ ........ ........ ........ ........ 61% 202K 28s + 9216K ........ ........ ........ ........ ........ ........ 81% 208K 13s + 12288K ........ ........ ........ ........ ........ .. 100% 180K=75s -2018-12-18 17:12:53 (1,14 MB/s) - «./Python-3.5.5.tar.xz» enregistré [15351440/15351440] +2019-02-14 22:14:10 (200 KB/s) - »./Python-3.5.5.tar.xz« gespeichert [15351440/15351440] ---2018-12-18 17:12:53-- https://dev-www.libreoffice.org/src/libqxp-0.0.1.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 340184 (332K) [application/octet-stream] -Enregistre : «./libqxp-0.0.1.tar.xz» +--2019-02-14 22:14:10-- https://dev-www.libreoffice.org/src/libqxp-0.0.1.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 340184 (332K) [application/octet-stream] +Wird in »./libqxp-0.0.1.tar.xz« gespeichert. - 0K ..... 100% 1,04M=0,3s + 0K ..... 100% 236K=1,4s -2018-12-18 17:12:54 (1,04 MB/s) - «./libqxp-0.0.1.tar.xz» enregistré [340184/340184] +2019-02-14 22:14:12 (236 KB/s) - »./libqxp-0.0.1.tar.xz« gespeichert [340184/340184] ---2018-12-18 17:12:54-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1886657 (1,8M) [application/octet-stream] -Enregistre : «./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz» +--2019-02-14 22:14:12-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1886657 (1,8M) [application/octet-stream] +Wird in »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert. - 0K ........ ........ ........ .... 100% 847K=2,2s + 0K ........ ........ ........ .... 100% 222K=8,3s -2018-12-18 17:12:56 (847 KB/s) - «./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz» enregistré [1886657/1886657] +2019-02-14 22:14:21 (222 KB/s) - »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert [1886657/1886657] ---2018-12-18 17:12:56-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1595647 (1,5M) [application/octet-stream] -Enregistre : «./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz» +--2019-02-14 22:14:21-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1595647 (1,5M) [application/octet-stream] +Wird in »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert. - 0K ........ ........ ........ 100% 1,05M=1,4s + 0K ........ ........ ........ 100% 217K=7,2s -2018-12-18 17:12:58 (1,05 MB/s) - «./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz» enregistré [1595647/1595647] +2019-02-14 22:14:28 (217 KB/s) - »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert [1595647/1595647] ---2018-12-18 17:12:58-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1621566 (1,5M) [application/octet-stream] -Enregistre : «./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz» +--2019-02-14 22:14:28-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1621566 (1,5M) [application/octet-stream] +Wird in »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert. - 0K ........ ........ ........ 100% 1,08M=1,4s + 0K ........ ........ ........ 100% 218K=7,3s -2018-12-18 17:13:00 (1,08 MB/s) - «./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz» enregistré [1621566/1621566] +2019-02-14 22:14:36 (218 KB/s) - »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert [1621566/1621566] ---2018-12-18 17:13:00-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 529833 (517K) [application/octet-stream] -Enregistre : «./librevenge-0.0.4.tar.bz2» +--2019-02-14 22:14:36-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 529833 (517K) [application/octet-stream] +Wird in »./librevenge-0.0.4.tar.bz2« gespeichert. - 0K ........ 100% 925K=0,6s + 0K ........ 100% 224K=2,3s -2018-12-18 17:13:01 (925 KB/s) - «./librevenge-0.0.4.tar.bz2» enregistré [529833/529833] +2019-02-14 22:14:39 (224 KB/s) - »./librevenge-0.0.4.tar.bz2« gespeichert [529833/529833] ---2018-12-18 17:13:01-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 1521926 (1,5M) [application/zip] -Enregistre : «./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip» +--2019-02-14 22:14:39-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 1521926 (1,5M) [application/zip] +Wird in »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert. - 0K ........ ........ ....... 100% 853K=1,7s + 0K ........ ........ ....... 100% 192K=7,8s -2018-12-18 17:13:03 (853 KB/s) - «./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip» enregistré [1521926/1521926] +2019-02-14 22:14:47 (192 KB/s) - »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert [1521926/1521926] ---2018-12-18 17:13:03-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 9796 (9,6K) [application/zip] -Enregistre : «./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip» +--2019-02-14 22:14:47-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 161M=0s + 0K 100% 291M=0s -2018-12-18 17:13:03 (161 MB/s) - «./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip» enregistré [9796/9796] +2019-02-14 22:14:48 (291 MB/s) - »./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip« gespeichert [9796/9796] ---2018-12-18 17:13:03-- https://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 190464 (186K) [application/octet-stream] -Enregistre : «./serf-1.2.1.tar.bz2» +--2019-02-14 22:14:48-- https://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 190464 (186K) [application/octet-stream] +Wird in »./serf-1.2.1.tar.bz2« gespeichert. - 0K .. 100% 864K=0,2s + 0K .. 100% 233K=0,8s -2018-12-18 17:13:04 (864 KB/s) - «./serf-1.2.1.tar.bz2» enregistré [190464/190464] +2019-02-14 22:14:49 (233 KB/s) - »./serf-1.2.1.tar.bz2« gespeichert [190464/190464] ---2018-12-18 17:13:04-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 706324 (690K) [application/octet-stream] -Enregistre : «./libstaroffice-0.0.6.tar.xz» +--2019-02-14 22:14:49-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.6.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 706324 (690K) [application/octet-stream] +Wird in »./libstaroffice-0.0.6.tar.xz« gespeichert. - 0K ........ .. 100% 885K=0,8s + 0K ........ .. 100% 152K=4,5s -2018-12-18 17:13:05 (885 KB/s) - «./libstaroffice-0.0.6.tar.xz» enregistré [706324/706324] +2019-02-14 22:14:54 (152 KB/s) - »./libstaroffice-0.0.6.tar.xz« gespeichert [706324/706324] ---2018-12-18 17:13:05-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 96939 (95K) [application/octet-stream] -Enregistre : «./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz» +--2019-02-14 22:14:54-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 96939 (95K) [application/octet-stream] +Wird in »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert. - 0K . 100% 1,00M=0,09s + 0K . 100% 236K=0,4s -2018-12-18 17:13:05 (1,00 MB/s) - «./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz» enregistré [96939/96939] +2019-02-14 22:14:55 (236 KB/s) - »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert [96939/96939] ---2018-12-18 17:13:06-- https://dev-www.libreoffice.org/src/libvisio-0.1.6.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 676396 (661K) [application/octet-stream] -Enregistre : «./libvisio-0.1.6.tar.xz» +--2019-02-14 22:14:55-- https://dev-www.libreoffice.org/src/libvisio-0.1.6.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 676396 (661K) [application/octet-stream] +Wird in »./libvisio-0.1.6.tar.xz« gespeichert. - 0K ........ .. 100% 830K=0,8s + 0K ........ .. 100% 191K=3,5s -2018-12-18 17:13:07 (830 KB/s) - «./libvisio-0.1.6.tar.xz» enregistré [676396/676396] +2019-02-14 22:14:59 (191 KB/s) - »./libvisio-0.1.6.tar.xz« gespeichert [676396/676396] ---2018-12-18 17:13:07-- https://dev-www.libreoffice.org/src/libwpd-0.10.2.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 536400 (524K) [application/octet-stream] -Enregistre : «./libwpd-0.10.2.tar.xz» +--2019-02-14 22:14:59-- https://dev-www.libreoffice.org/src/libwpd-0.10.2.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 536400 (524K) [application/octet-stream] +Wird in »./libwpd-0.10.2.tar.xz« gespeichert. - 0K ........ 100% 1010K=0,5s + 0K ........ 100% 217K=2,4s -2018-12-18 17:13:07 (1010 KB/s) - «./libwpd-0.10.2.tar.xz» enregistré [536400/536400] +2019-02-14 22:15:02 (217 KB/s) - »./libwpd-0.10.2.tar.xz« gespeichert [536400/536400] ---2018-12-18 17:13:07-- https://dev-www.libreoffice.org/src/libwpg-0.3.2.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 326840 (319K) [application/octet-stream] -Enregistre : «./libwpg-0.3.2.tar.xz» +--2019-02-14 22:15:02-- https://dev-www.libreoffice.org/src/libwpg-0.3.2.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 326840 (319K) [application/octet-stream] +Wird in »./libwpg-0.3.2.tar.xz« gespeichert. - 0K .... 100% 902K=0,4s + 0K .... 100% 171K=1,9s -2018-12-18 17:13:08 (902 KB/s) - «./libwpg-0.3.2.tar.xz» enregistré [326840/326840] +2019-02-14 22:15:04 (171 KB/s) - »./libwpg-0.3.2.tar.xz« gespeichert [326840/326840] ---2018-12-18 17:13:08-- https://dev-www.libreoffice.org/src/libwps-0.4.9.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 673784 (658K) [application/octet-stream] -Enregistre : «./libwps-0.4.9.tar.xz» +--2019-02-14 22:15:04-- https://dev-www.libreoffice.org/src/libwps-0.4.9.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 673784 (658K) [application/octet-stream] +Wird in »./libwps-0.4.9.tar.xz« gespeichert. - 0K ........ .. 100% 815K=0,8s + 0K ........ .. 100% 237K=2,8s -2018-12-18 17:13:09 (815 KB/s) - «./libwps-0.4.9.tar.xz» enregistré [673784/673784] +2019-02-14 22:15:07 (237 KB/s) - »./libwps-0.4.9.tar.xz« gespeichert [673784/673784] ---2018-12-18 17:13:09-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 23150 (23K) [application/zip] -Enregistre : «./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip» +--2019-02-14 22:15:07-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … 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% 124M=0s + 0K 100% 922K=0,02s -2018-12-18 17:13:10 (124 MB/s) - «./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip» enregistré [23150/23150] +2019-02-14 22:15:08 (922 KB/s) - »./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip« gespeichert [23150/23150] ---2018-12-18 17:13:10-- https://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 467960 (457K) [application/octet-stream] -Enregistre : «./zlib-1.2.11.tar.xz» +--2019-02-14 22:15:08-- https://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 467960 (457K) [application/octet-stream] +Wird in »./zlib-1.2.11.tar.xz« gespeichert. - 0K ....... 100% 833K=0,5s + 0K ....... 100% 208K=2,2s -2018-12-18 17:13:11 (833 KB/s) - «./zlib-1.2.11.tar.xz» enregistré [467960/467960] +2019-02-14 22:15:11 (208 KB/s) - »./zlib-1.2.11.tar.xz« gespeichert [467960/467960] ---2018-12-18 17:13:11-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 320952 (313K) [application/octet-stream] -Enregistre : «./libzmf-0.0.2.tar.xz» +--2019-02-14 22:15:11-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 320952 (313K) [application/octet-stream] +Wird in »./libzmf-0.0.2.tar.xz« gespeichert. - 0K .... 100% 844K=0,4s + 0K .... 100% 178K=1,8s -2018-12-18 17:13:11 (844 KB/s) - «./libzmf-0.0.2.tar.xz» enregistré [320952/320952] +2019-02-14 22:15:13 (178 KB/s) - »./libzmf-0.0.2.tar.xz« gespeichert [320952/320952] ---2018-12-18 17:13:11-- https://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 12288 (12K) [application/octet-stream] -Enregistre : «./185d60944ea767075d27247c3162b3bc-unowinreg.dll» +--2019-02-14 22:15:13-- https://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 12288 (12K) [application/octet-stream] +Wird in »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert. - 0K 100% 180M=0s + 0K 100% 280M=0s -2018-12-18 17:13:11 (180 MB/s) - «./185d60944ea767075d27247c3162b3bc-unowinreg.dll» enregistré [12288/12288] +2019-02-14 22:15:13 (280 MB/s) - »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert [12288/12288] ---2018-12-18 17:13:12-- https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 207400 (203K) [application/octet-stream] -Enregistre : «./49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf» +--2019-02-14 22:15:13-- https://dev-www.libreoffice.org/extern/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 207400 (203K) [application/octet-stream] +Wird in »./49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf« gespeichert. - 0K ... 100% 752K=0,3s + 0K ... 100% 199K=1,0s -2018-12-18 17:13:12 (752 KB/s) - «./49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf» enregistré [207400/207400] +2019-02-14 22:15:15 (199 KB/s) - »./49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf« gespeichert [207400/207400] ---2018-12-18 17:13:12-- https://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 23988041 (23M) [application/java-archive] -Enregistre : «./odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar» +--2019-02-14 22:15:15-- https://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 23988041 (23M) [application/java-archive] +Wird in »./odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 13% 836K 24s - 3072K ........ ........ ........ ........ ........ ........ 26% 820K 21s - 6144K ........ ........ ........ ........ ........ ........ 39% 846K 17s - 9216K ........ ........ ........ ........ ........ ........ 52% 1,00M 13s - 12288K ........ ........ ........ ........ ........ ........ 65% 659K 10s - 15360K ........ ........ ........ ........ ........ ........ 78% 517K 7s - 18432K ........ ........ ........ ........ ........ ........ 91% 919K 3s - 21504K ........ ........ ........ ...... 100% 836K=30s + 0K ........ ........ ........ ........ ........ ........ 13% 230K 89s + 3072K ........ ........ ........ ........ ........ ........ 26% 234K 75s + 6144K ........ ........ ........ ........ ........ ........ 39% 174K 68s + 9216K ........ ........ ........ ........ ........ ........ 52% 228K 52s + 12288K ........ ........ ........ ........ ........ ........ 65% 190K 39s + 15360K ........ ........ ........ ........ ........ ........ 78% 189K 24s + 18432K ........ ........ ........ ........ ........ ........ 91% 188K 10s + 21504K ........ ........ ........ ...... 100% 174K=1m58s -2018-12-18 17:13:43 (773 KB/s) - «./odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar» enregistré [23988041/23988041] +2019-02-14 22:17:13 (199 KB/s) - »./odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies+ODFTOOLKIT-460+ODFTOOLKIT-475.jar« gespeichert [23988041/23988041] ---2018-12-18 17:13:43-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar -Résolution de dev-www.libreoffice.org (dev-www.libreoffice.org)… 89.238.68.201, 2a00:1828:a012:201::1 -Connexion à dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443… connecté. -requête HTTP transmise, en attente de la réponse… 200 OK -Taille : 2448421 (2,3M) [application/java-archive] -Enregistre : «./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar» +--2019-02-14 22:17:13-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 +Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. +HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK +Länge: 2448421 (2,3M) [application/java-archive] +Wird in »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert. - 0K ........ ........ ........ ........ ..... 100% 698K=3,4s + 0K ........ ........ ........ ........ ..... 100% 206K=12s -2018-12-18 17:13:47 (698 KB/s) - «./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar» enregistré [2448421/2448421] +2019-02-14 22:17:25 (206 KB/s) - »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert [2448421/2448421] Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/lcms2-2.8.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/lcms2-2.8.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/lcms2-2.9.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/lcms2-2.9.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/libxml2-2.9.8.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/libxml2-2.9.8.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/libxml2-2.9.9.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/libxml2-2.9.9.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/libxslt-1.1.32.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/libxslt-1.1.32.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/libxslt-1.1.33.tar.gz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/libxslt-1.1.33.tar.gz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/poppler-0.66.0.tar.xz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/poppler-0.66.0.tar.xz differ Binary files /tmp/tmp_qkyhl/LgvLqriy6w/libreoffice-l10n-6.1.4/tarballs/poppler-0.73.0.tar.xz and /tmp/tmp_qkyhl/S5IA3enpuG/libreoffice-l10n-6.1.5~rc2/tarballs/poppler-0.73.0.tar.xz differ diff -Nru libreoffice-l10n-6.1.4/toolkit/source/awt/vclxwindow.cxx libreoffice-l10n-6.1.5~rc2/toolkit/source/awt/vclxwindow.cxx --- libreoffice-l10n-6.1.4/toolkit/source/awt/vclxwindow.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/toolkit/source/awt/vclxwindow.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1722,6 +1722,8 @@ WinBits nStyle = pWindow->GetStyle(); sal_uInt16 nTmp = 0; Value >>= nTmp; + // clear any dodgy bits passed in, can come from dodgy extensions + nTmp &= o3tl::typed_flags::mask; WindowBorderStyle nBorder = static_cast(nTmp); if ( !bool(nBorder) ) { diff -Nru libreoffice-l10n-6.1.4/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-18 20:14+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542572090.000000\n" #: BaseWindowState.xcu @@ -22939,15 +22939,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D амодель..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/af/extensions/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/af/extensions/messages.po --- libreoffice-l10n-6.1.4/translations/source/af/extensions/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/af/extensions/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-11-19 16:14+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-22 10:37+0000\n" +"Last-Translator: F Wolff \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548153434.000000\n" #: extensions/inc/command.hrc:29 msgctxt "RID_RSC_ENUM_COMMAND_TYPE" @@ -3106,7 +3109,6 @@ msgstr "Soort ~publikasie" #: extensions/uiconfig/sbibliography/ui/generalpage.ui:321 -#, fuzzy msgctxt "generalpage|university" msgid "University" msgstr "Universiteit" @@ -3296,10 +3298,9 @@ msgstr "I~nstelling" #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:526 -#, fuzzy msgctxt "mappingdialog|label19" msgid "Uni_versity" -msgstr "Universiteit" +msgstr "Uni_versiteit" #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:577 #, fuzzy diff -Nru libreoffice-l10n-6.1.4/translations/source/af/extras/source/gallery/share.po libreoffice-l10n-6.1.5~rc2/translations/source/af/extras/source/gallery/share.po --- libreoffice-l10n-6.1.4/translations/source/af/extras/source/gallery/share.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/af/extras/source/gallery/share.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2013-05-24 10:04+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2019-01-22 10:38+0000\n" +"Last-Translator: F Wolff \n" "Language-Team: LANGUAGE \n" "Language: af\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: 1369389890.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548153502.000000\n" #: gallery_names.ulf msgctxt "" @@ -54,7 +54,7 @@ "education\n" "LngText.text" msgid "School & University" -msgstr "Skool & Universiteit" +msgstr "Skool en universiteit" #: gallery_names.ulf msgctxt "" @@ -111,4 +111,4 @@ "transportation\n" "LngText.text" msgid "Transportation" -msgstr "" +msgstr "Vervoer" diff -Nru libreoffice-l10n-6.1.4/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/af/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 17:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23265,15 +23265,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/af/svx/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/af/svx/messages.po --- libreoffice-l10n-6.1.4/translations/source/af/svx/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/af/svx/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-22 10:37+0000\n" +"Last-Translator: F Wolff \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548153441.000000\n" #: include/svx/strings.hrc:25 #, fuzzy @@ -4708,7 +4711,7 @@ #: include/svx/strings.hrc:977 msgctxt "RID_GALLERYSTR_THEME_EDUCATION" msgid "School & University" -msgstr "Skool & Universiteit" +msgstr "Skool en universiteit" #: include/svx/strings.hrc:978 msgctxt "RID_GALLERYSTR_THEME_TROUBLE" diff -Nru libreoffice-l10n-6.1.4/translations/source/af/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/af/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/af/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/af/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-22 10:37+0000\n" +"Last-Translator: F Wolff \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548153445.000000\n" #: sw/inc/app.hrc:29 #, fuzzy @@ -4009,7 +4012,6 @@ msgstr "Uitgewer" #: sw/inc/strings.hrc:728 -#, fuzzy msgctxt "STR_AUTH_FIELD_SCHOOL" msgid "University" msgstr "Universiteit" diff -Nru libreoffice-l10n-6.1.4/translations/source/am/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/am/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/am/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-10-23 16:57+0000\n" +"PO-Revision-Date: 2018-12-24 19:19+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: 1540313844.000000\n" +"X-POOTLE-MTIME: 1545679142.000000\n" #: 01120000.xhp msgctxt "" @@ -59518,7 +59518,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 "ይህ A3 የያዘው መግለጫ እኩል ከሆነ በ ዜሮ ማካፈያ ጋር እግባር ይመልሳል 2: ምክንያቱም 2 የ ማውጫቁጥር ነው ለ ስህተት ዋጋ #ማካፈያ/0!" +msgstr "ይህ A3 የያዘው መግለጫ እኩል ከሆነ በ ዜሮ ማካፈያ ጋር: ተግባር ይመልሳል 2: ምክንያቱም 2 የ ማውጫቁጥር ነው ለ ስህተት ዋጋ #ማካፈያ/0!" #: func_error_type.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-08 13:15+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: 1539004513.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3ዲ ዘዴ..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 17:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -24816,15 +24816,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-04-23 04:00+0000\n" "Last-Translator: صفا الفليج \n" "Language-Team: LANGUAGE \n" @@ -22953,15 +22953,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "نموذج ثلاثيّ الأبعاد..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/as/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Assamese \n" @@ -23244,15 +23244,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D আৰ্হি..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23240,15 +23240,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/az/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/az/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/az/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/az/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23026,15 +23026,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/be/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-01-16 17:04+0000\n" "Last-Translator: Мікалай Удодаў \n" "Language-Team: Belarusian \n" @@ -22915,15 +22915,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Трохвымерная мадэль..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/filter/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/filter/messages.po --- libreoffice-l10n-6.1.4/translations/source/bg/filter/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/filter/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-21 08:28+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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548059291.000000\n" #: filter/inc/strings.hrc:25 msgctxt "STR_COLUMN_HEADER_NAME" @@ -198,7 +201,7 @@ #: filter/inc/strings.hrc:62 msgctxt "PDF_PROGRESS_BAR" msgid "Export as PDF" -msgstr "Експортиране в PDF" +msgstr "Експортиране като PDF" #. strings used in encryption UI #. password dialog title diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-07-08 18:24+0000\n" +"PO-Revision-Date: 2019-01-19 15:38+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: 1531074242.000000\n" +"X-POOTLE-MTIME: 1547912299.000000\n" #: 00000002.xhp msgctxt "" @@ -28654,7 +28654,7 @@ "par_id3143228\n" "help.text" msgid "n: Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535." -msgstr "n: числов израз, определящ броя на интервалите в низа. Максималната разрешена стойнсот на n е 65535." +msgstr "n: числов израз, определящ броя на интервалите в низа. Максималната разрешена стойност на n е 65535." #: 03120201.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/scalc/00.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/scalc/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/scalc/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-12 14:41+0200\n" -"PO-Revision-Date: 2018-11-22 23:52+0000\n" +"PO-Revision-Date: 2019-01-18 22:55+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: 1542930726.000000\n" +"X-POOTLE-MTIME: 1547852146.000000\n" #: 00000004.xhp msgctxt "" @@ -1375,7 +1375,7 @@ "par_id3144772\n" "help.text" msgid "On Tools bar, click" -msgstr "На лентата Инструменти натиснете" +msgstr "В лентата Инструменти щракнете върху" #: 00000412.xhp msgctxt "" @@ -1415,7 +1415,7 @@ "par_id3155097\n" "help.text" msgid "On Tools bar, click" -msgstr "На лентата Инструменти натиснете" +msgstr "В лентата Инструменти щракнете върху" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-09-17 21:16+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2018-12-19 09:22+0000\n" +"Last-Translator: Mihail Balabanov \n" "Language-Team: LibreOffice на български\n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1537218995.000000\n" +"X-POOTLE-MTIME: 1545211363.000000\n" #: 01120000.xhp msgctxt "" @@ -64767,7 +64767,7 @@ "par_id1000010\n" "help.text" msgid "Input Range: The reference of the range of the data to analyze." -msgstr "Входна област: обръщение към диапазона от данни за анализиране." +msgstr "Входен диапазон: обръщение към диапазона с данни за анализиране." #: stat_data.xhp msgctxt "" @@ -66631,7 +66631,7 @@ "par_id1004010\n" "help.text" msgid "Input range: The reference of the range of the data series to analyze." -msgstr "Входна област: обръщение към областта с поредицата данни за анализиране." +msgstr "Входен диапазон: обръщение към диапазона с поредицата данни за анализиране." #: statistics.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/sdraw/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2018-04-20 08:25+0000\n" +"PO-Revision-Date: 2019-01-18 23:05+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: 1524212700.000000\n" +"X-POOTLE-MTIME: 1547852725.000000\n" #: align_arrange.xhp msgctxt "" @@ -1886,7 +1886,7 @@ "par_id3150716\n" "help.text" msgid "Select the object you want to rotate. On the Mode toolbar in $[officename] Draw or on the Drawing bar in $[officename] Impress, click the Rotate icon." -msgstr "Изберете обекта, който желаете да завъртите. На лентата Режим в $[officename] Draw или на лентата Чертане в $[officename] Impress, натиснете бутона Въртене." +msgstr "Изберете обекта, който искате да завъртите. В лентата Режим в $[officename] Draw или Рисунка в $[officename] Impress щракнете върху иконата Въртене." #: rotate_object.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-08-10 13:21+0000\n" +"PO-Revision-Date: 2019-01-21 08:26+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: 1533907267.000000\n" +"X-POOTLE-MTIME: 1548059211.000000\n" #: 00000001.xhp msgctxt "" @@ -1718,7 +1718,7 @@ "par_id3155336\n" "help.text" msgid "Export Directly as PDF" -msgstr "Директно експортиране в PDF" +msgstr "Директно експортиране като PDF" #: 00000005.xhp msgctxt "" @@ -6270,7 +6270,7 @@ "par_id3155763\n" "help.text" msgid "Export Directly as PDF" -msgstr "Директно експортиране в PDF" +msgstr "Директно експортиране като PDF" #: 00000401.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-11-18 22:59+0000\n" +"PO-Revision-Date: 2019-01-18 22:51+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: 1542581998.000000\n" +"X-POOTLE-MTIME: 1547851899.000000\n" #: 01010000.xhp msgctxt "" @@ -22071,7 +22071,7 @@ "par_id3154370\n" "help.text" msgid "On the Table Bar, click" -msgstr "От лентата Таблица изберете" +msgstr "В лентата Таблица щракнете върху" #: 05100100.xhp msgctxt "" @@ -22135,7 +22135,7 @@ "par_id3154042\n" "help.text" msgid "On the Table Bar, click" -msgstr "От лентата Таблица изберете" +msgstr "В лентата Таблица щракнете върху" #: 05100200.xhp msgctxt "" @@ -41063,7 +41063,7 @@ "par_id3145136\n" "help.text" msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12." -msgstr "За да отпечатате диапазон от страници, задайте ги така: 3-6. За да отпечатате единични страници, посочете ги така: 7;9;11. Ако желаете, можете да отпечатате комбинация от диапазони и единични страници, например 3-6;8;10;12." +msgstr "За да експортирате диапазон от страници, задайте ги така: 3-6. За да експортирате отделни страници, посочете ги така: 7;9;11. Ако искате, можете да експортирате комбинация от диапазони и отделни страници, например 3-6;8;10;12." #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/02.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/02.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-08 15:10+0200\n" -"PO-Revision-Date: 2018-08-10 12:32+0000\n" +"PO-Revision-Date: 2019-01-21 08:29+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: 1533904359.000000\n" +"X-POOTLE-MTIME: 1548059369.000000\n" #: 01110000.xhp msgctxt "" @@ -11191,7 +11191,7 @@ "tit\n" "help.text" msgid "Export Directly as PDF" -msgstr "Директно експортиране в PDF" +msgstr "Директно експортиране като PDF" #: 07090000.xhp msgctxt "" @@ -11199,7 +11199,7 @@ "hd_id3146946\n" "help.text" msgid "Export Directly as PDF" -msgstr "Директно експортиране в PDF" +msgstr "Директно експортиране като PDF" #: 07090000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/shared/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-08-10 13:13+0000\n" +"PO-Revision-Date: 2019-01-27 01:17+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: 1533906832.000000\n" +"X-POOTLE-MTIME: 1548551825.000000\n" #: aaa_start.xhp msgctxt "" @@ -6215,7 +6215,7 @@ "par_id5734733\n" "help.text" msgid "Click to open the View Certificate dialog." -msgstr "Щракнете, за да отворите диалоговия прозореца Преглед на сертификат." +msgstr "Щракнете, за да отворите диалоговия прозорец „Преглед на сертификат“." #: digitalsign_send.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/simpress/00.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/simpress/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/simpress/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2018-05-08 08:42+0000\n" +"PO-Revision-Date: 2019-01-18 22:45+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: 1525768963.000000\n" +"X-POOTLE-MTIME: 1547851542.000000\n" #: 00000004.xhp msgctxt "" @@ -542,7 +542,7 @@ "par_id3144769\n" "help.text" msgid "On the Insert toolbar, click" -msgstr "На лентата Вмъкване, натиснете" +msgstr "В лентата Вмъкване щракнете върху" #: 00000404.xhp msgctxt "" @@ -574,7 +574,7 @@ "par_id3153958\n" "help.text" msgid "On the Insert toolbar, click" -msgstr "На лентата Вмъкване, натиснете" +msgstr "В лентата Вмъкване щракнете върху" #: 00000404.xhp msgctxt "" @@ -782,7 +782,7 @@ "tit\n" "help.text" msgid "Slide Show Menu" -msgstr "Меню - Прожекция" +msgstr "Меню Прожекция" #: 00000407.xhp msgctxt "" @@ -790,7 +790,7 @@ "hd_id3150541\n" "help.text" msgid "Slide Show Menu" -msgstr "Меню - Прожекция" +msgstr "Меню Прожекция" #: 00000407.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/simpress/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/simpress/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-07-08 19:00+0000\n" +"PO-Revision-Date: 2019-01-17 08:53+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: 1531076424.000000\n" +"X-POOTLE-MTIME: 1547715217.000000\n" #: 3d_create.xhp msgctxt "" @@ -1510,7 +1510,7 @@ "par_id0919200803041298\n" "help.text" msgid "If the Glue Point Relative icon is active, the gluepoint moves when you resize the object to keep its position relative to the object borders." -msgstr "Еко е активна иконата Относителна точка за съединяване, точката за съединяване ще се мести, когато преоразмерявате обекта, запазвайки позицията си спрямо очертанията му." +msgstr "Ако е активна иконата Относителна точка за съединяване, точката за съединяване ще се мести, когато преоразмерявате обекта, запазвайки позицията си спрямо очертанията му." #: gluepoints.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/00.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/00.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n" -"PO-Revision-Date: 2017-10-26 19:56+0000\n" +"PO-Revision-Date: 2019-01-18 22:46+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: 1509047769.000000\n" +"X-POOTLE-MTIME: 1547851576.000000\n" #: 00000004.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_id3149127\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" @@ -134,7 +134,7 @@ "par_id3156398\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" @@ -166,7 +166,7 @@ "par_id3149878\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id3147169\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_id3149289\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" @@ -462,7 +462,7 @@ "par_id3145268\n" "help.text" msgid "On the Tools bar, click" -msgstr "От лентата с инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/01.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-07-19 10:17+0000\n" +"PO-Revision-Date: 2019-01-19 00:28+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: 1531995451.000000\n" +"X-POOTLE-MTIME: 1547857720.000000\n" #: 02080000.xhp msgctxt "" @@ -4575,7 +4575,7 @@ "par_id3149966\n" "help.text" msgid "The standard centralized formulas can be aligned to the left without using the Format - Alignment menu. To do this, place an empty character string, that is, the inverted commas which surround any text \"\", before the section of formula that you want to align. For example, typing \"\" a+b newline \"\" c+d results in both equations being left-aligned instead of centered." -msgstr "Стандарните центрирани формули могат да се подравнят отляво с менюто Форматиране - Подравняване. За тази цел поставете празен знаков низ, т.е. обърнати кавички без текст между тях (\"\") преди частта от формулата, която искате да подравните. Например, въведете \"\" a+b newline \"\" c+d, за да получите две подравнени отляво, а не центрирани уравнения." +msgstr "Стандартните центрирани формули могат да се подравнят отляво, без да се използва менюто Форматиране - Подравняване. За тази цел поставете празен знаков низ, т.е. обърнати кавички без текст между тях (\"\") преди частта от формулата, която искате да подравните. Например, въведете \"\" a+b newline \"\" c+d, за да получите две подравнени отляво, а не центрирани уравнения." #: 03090700.xhp msgctxt "" @@ -5591,7 +5591,7 @@ "par_id3149054\n" "help.text" msgid "Braces \"{}\" are used to group expressions together to form one new expression. For example, \"sqrt {x * y}\" is the square root of the entire product x*y, while \"sqrt x * y\" is the square root of x multiplied by y. Braces do not require an extra space." -msgstr "Фигурните скоби, \"{}\", служат за групиране на изрази, които трябва да се движат заедно, формирайки цялостен нов израз. Например, \"sqrt {x * y}\" е квадратният корен на цялото произведение x*y, а \"sqrt x * y\" е квадратният корен на x, умножен по y. Фигурните скоби не заемат място." +msgstr "Фигурните скоби, „{}“, служат за групиране на няколко израза, така че от тях да се образува един нов израз. Например, „sqrt {x * y}“ е квадратният корен на цялото произведение x*y, а „sqrt x * y“ е квадратният корен на x, умножен по y. Фигурните скоби не заемат място." #: 03091100.xhp msgctxt "" @@ -5607,7 +5607,7 @@ "par_id3147403\n" "help.text" msgid "There are a total of eight (8) different types of brackets available. The \"ceil\" and \"floor\" brackets are often used for rounding up or down the argument to the next integer: \"lceil -3.7 rceil = -3\" or \"lfloor -3.7 rfloor = -4\"." -msgstr "Имате на разположение общо осем вида скоби. Скобите \"ceil\" и \"floor\" се ползват често за обозначаване на закръгляване съответно нагоре или надолу до цяло число: \"lceil -3.7 rceil = -3\" или \"lfloor -3.7 rfloor = -4\"." +msgstr "Имате на разположение общо осем вида скоби. Със скобите „ceil“ и „floor“ често се обозначава закръгляване на аргумента съответно нагоре или надолу до цяло число: „lceil -3.7 rceil = -3“ или „lfloor -3.7 rfloor = -4“." #: 03091100.xhp msgctxt "" @@ -5831,7 +5831,7 @@ "par_id3152952\n" "help.text" msgid "Group operations in sequence are treated as if every single operation is enclosed by braces. They are nested, and in every level there can be no more than one operation. Here is an example of a formula with many group operations: \"size 12 color red font sans size -5 (a + size 8 b)\" like \"{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}\"." -msgstr "Няколко последователни операции с група се обработват като че ли всяка от тях е затворена във фигурни скоби. Те са вложени и на всяко ниво има не повече от една операция. Ето пример за формула с много операции върху група: „size 12 color red font sans size -5 (a + size 8 b)“, което се тълкува като: „{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}“." +msgstr "Последователните операции с група се обработват все едно всяка отделна операция е оградена с фигурни скоби. Те са вложени и на всяко ниво има не повече от една операция. Ето пример за формула с много операции върху група: „size 12 color red font sans size -5 (a + size 8 b)“, което се тълкува като: „{size 12{color red{font sans{size -5 (a + {size 8 b})}}}}“." #: 03091100.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/smath/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/smath/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n" -"PO-Revision-Date: 2017-10-26 19:56+0000\n" +"PO-Revision-Date: 2019-01-19 00:16+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: 1509047791.000000\n" +"X-POOTLE-MTIME: 1547856991.000000\n" #: align.xhp msgctxt "" @@ -62,7 +62,7 @@ "par_id3153912\n" "help.text" msgid "To create empty groups, enter curly brackets {} in the Commands window. In the following example, the goal is to achieve a line break so that the plus signs are beneath one another, even though one less character is entered in the upper line:" -msgstr "За да създадете празна група, въведете фигурни скоби - {} - в прозореца Команди. В следващия пример целта е да постигнем пренасяне на реда, така че знаците „плюс“ да са един под друг, въпреки, че на горния ред има един знак по-малко:" +msgstr "За да създадете празна група, въведете фигурни скоби – {} – в прозореца Команди. В следващия пример целта е да постигнем такова пренасяне на реда, че знаците „плюс“ да са един под друг, въпреки че на горния ред има един знак по-малко:" #: align.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/00.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-11-22 23:53+0000\n" +"PO-Revision-Date: 2019-01-18 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: 1542930828.000000\n" +"X-POOTLE-MTIME: 1547852060.000000\n" #: 00000004.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_id3143228\n" "help.text" msgid "On the Insert toolbar, click" -msgstr "От лентата с инструменти Вмъкване изберете" +msgstr "В лентата „Вмъкване“ щракнете върху" #: 00000402.xhp msgctxt "" @@ -606,7 +606,7 @@ "par_id3147174\n" "help.text" msgid "On Insert toolbar, click" -msgstr "От лентата с инструменти Вмъкване изберете" +msgstr "В лентата „Вмъкване“ щракнете върху" #: 00000404.xhp msgctxt "" @@ -1542,7 +1542,7 @@ "par_id3149562\n" "help.text" msgid "On the Image Bar (when images are selected), click" -msgstr "От лентата с инструменти Изображение (когато са избрани изображения) изберете" +msgstr "В лентата с инструменти Изображение (когато са избрани изображения) щракнете върху" #: 00000405.xhp msgctxt "" @@ -1806,7 +1806,7 @@ "par_id3154370\n" "help.text" msgid "On the Table Bar, click" -msgstr "От лентата Таблица изберете" +msgstr "В лентата Таблица щракнете върху" #: 00000405.xhp msgctxt "" @@ -1838,7 +1838,7 @@ "par_id3154042\n" "help.text" msgid "On the Table Bar, click" -msgstr "От лентата Таблица изберете" +msgstr "В лентата Таблица щракнете върху" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-08-26 20:25+0000\n" +"PO-Revision-Date: 2019-01-18 22:46+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: .\n" "Language: bg\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: 1535315107.000000\n" +"X-POOTLE-MTIME: 1547851595.000000\n" #: 01120000.xhp msgctxt "" @@ -447,7 +447,7 @@ "par_id3149804\n" "help.text" msgid "Enter the extent of the outline levels to be copied to the new document. For example, if you choose 4 levels, all paragraphs formatted with Heading 1 to Heading 4 are included, along with the number of subsequent paragraphs specified in Subpoints per Level." -msgstr "Въведете обхвата на нивата на плана които ще се копират в новия документ. Например, ако изберете 4 нива, всички абзаци форматирани с Заглавие 1 до Заглавие 4 ще бъдат включени, заедно с част от подчинените им абзаци, определени от Подточки на ниво." +msgstr "Въведете броя на нивата от плана, които да се копират в новия документ. Например, ако изберете 4 нива, ще бъдат включени всички абзаци със стилове от „Заглавие 1“ до „Заглавие 4“ заедно с толкова от следващите ги абзаци, колкото е зададено в Подточки на ниво." #: 01160300.xhp msgctxt "" @@ -12783,7 +12783,7 @@ "par_id3153511\n" "help.text" msgid "On the Insert toolbar, click the Table icon to open the Insert Table dialog, where you can insert a table in the current document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell." -msgstr "От лентата с инструменти Вмъкване, щракнете на иконата Таблица за да отворите диалога Вмъкване на таблица, откъдето можете да вмъкнете таблица в документа. Можете също да щракнете на стрелката до бутона, и с изтегляне да изберете броя колони и редове на вмъкваната таблица, и щраквайки на последната клетка да я вмъкнете." +msgstr "В лентата с инструменти „Вмъкване“ щракнете върху иконата Таблица, за да отворите диалога Вмъкване на таблица, с който можете да вмъкнете таблица в документа. Можете също да щракнете върху стрелката до бутона, да изберете с плъзгане броя колони и редове на вмъкваната таблица и после да щракнете в последната клетка." #: 04150000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/02.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-6.1.4/translations/source/bg/helpcontent2/source/text/swriter/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/helpcontent2/source/text/swriter/02.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-03-13 12:11+0100\n" -"PO-Revision-Date: 2018-07-08 21:20+0000\n" +"PO-Revision-Date: 2019-01-18 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: 1531084817.000000\n" +"X-POOTLE-MTIME: 1547852064.000000\n" #: 02110000.xhp msgctxt "" @@ -3126,7 +3126,7 @@ "par_id3151133\n" "help.text" msgid "On Tools bar, click" -msgstr "От лентата Инструменти изберете" +msgstr "В лентата с инструменти щракнете върху" #: 18130000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-22 20:46+0000\n" "Last-Translator: Mihail Balabanov \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: 1542919612.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Триизмерен модел..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-6.1.4/translations/source/bg/officecfg/registry/data/org/openoffice/Office.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/officecfg/registry/data/org/openoffice/Office.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-03-02 11:47+0000\n" +"PO-Revision-Date: 2019-01-17 08:14+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: 1519991229.000000\n" +"X-POOTLE-MTIME: 1547712840.000000\n" #: Addons.xcu msgctxt "" @@ -1598,7 +1598,7 @@ "Left\n" "value.text" msgid "Home" -msgstr "Инициализиране" +msgstr "Home" #: PresenterScreen.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/bg/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/bg/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/bg/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bg/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-07-05 12:17+0000\n" +"PO-Revision-Date: 2018-12-19 09:18+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1530793020.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545211129.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -15087,7 +15087,7 @@ #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:108 msgctxt "analysisofvariancedialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:122 msgctxt "analysisofvariancedialog|output-range-label" @@ -15308,7 +15308,7 @@ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:42 msgctxt "chisquaretestdialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:80 msgctxt "chisquaretestdialog|output-range-label" @@ -16053,7 +16053,7 @@ #: sc/uiconfig/scalc/ui/correlationdialog.ui:100 msgctxt "correlationdialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/correlationdialog.ui:114 msgctxt "correlationdialog|output-range-label" @@ -16088,7 +16088,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:42 msgctxt "covariancedialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/covariancedialog.ui:80 msgctxt "covariancedialog|output-range-label" @@ -16943,7 +16943,7 @@ #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:42 msgctxt "descriptivestatisticsdialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:80 msgctxt "descriptivestatisticsdialog|output-range-label" @@ -17048,7 +17048,7 @@ #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:48 msgctxt "exponentialsmoothingdialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:86 msgctxt "exponentialsmoothingdialog|output-range-label" @@ -18128,7 +18128,7 @@ #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:49 msgctxt "movingaveragedialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:87 msgctxt "movingaveragedialog|output-range-label" @@ -20544,7 +20544,7 @@ #: sc/uiconfig/scalc/ui/samplingdialog.ui:113 msgctxt "samplingdialog|input-range-label" msgid "Input range:" -msgstr "Входен обхват:" +msgstr "Входен диапазон:" #: sc/uiconfig/scalc/ui/samplingdialog.ui:151 msgctxt "samplingdialog|output-range-label" diff -Nru libreoffice-l10n-6.1.4/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23265,15 +23265,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Bengali (India) \n" @@ -23251,15 +23251,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D মডেল..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23259,15 +23259,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23078,15 +23078,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Patrom mod 3M..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23280,15 +23280,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 12:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23248,15 +23248,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-12 06:24+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: 1536733465.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ca/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/ca/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/ca/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ca/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-02 06:23+0000\n" +"PO-Revision-Date: 2019-01-22 14:42+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: 1530512619.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548168133.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1280,7 +1280,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "No s'ha pogut validar el certificat i el document només està signat parcialment." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-01-29 07:53+0000\n" "Last-Translator: joamuran \n" "Language-Team: LANGUAGE \n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-04 16:34+0000\n" "Last-Translator: raal \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: 1536078854.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/cs/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/cs/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/cs/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/cs/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-14 20:23+0000\n" +"PO-Revision-Date: 2019-01-12 21:04+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -13,8 +13,8 @@ "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: LibreOffice\n" -"X-POOTLE-MTIME: 1531599800.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547327042.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Certifikát nelze ověřit a dokument je podepsán pouze částečně." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-06 08:48+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-22 16:16+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: 1536223710.000000\n" +"X-POOTLE-MTIME: 1548173811.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7016,7 +7016,7 @@ "Label\n" "value.text" msgid "~Rehearse Timings" -msgstr "~Ymarfer Amseri" +msgstr "~Ymarfer Amseriad" #: DrawImpressCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/cy/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/cy/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/cy/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/cy/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-26 12:55+0000\n" +"PO-Revision-Date: 2018-12-13 09:31+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1532609718.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544693512.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Nid oedd modd dilysu'r dystysgrif a dim ond yn rhannol mae'r ddogfen wedi ei llofnodi." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/da/formula/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/da/formula/messages.po --- libreoffice-l10n-6.1.4/translations/source/da/formula/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/da/formula/messages.po 2019-01-30 17:56:45.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: 2018-10-09 13:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2018-04-23 18:10+0200\n" +"PO-Revision-Date: 2019-01-14 19:04+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" -"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: 1547492698.000000\n" #: formula/inc/core_resource.hrc:2258 msgctxt "RID_STRLIST_FUNCTION_NAMES" @@ -484,6 +487,11 @@ msgid "NORMSDIST" msgstr "STANDARDNORMFORDELING" +#: formula/inc/core_resource.hrc:2352 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NORM.S.DIST" +msgstr "STANDARD.NORM.FORDELING" + #: formula/inc/core_resource.hrc:2353 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FISHER" @@ -1379,6 +1387,11 @@ #: formula/inc/core_resource.hrc:2531 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NEGBINOMDIST" +msgstr "NEGBINOMFORDELING" + +#: formula/inc/core_resource.hrc:2532 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NEGBINOM.DIST" msgstr "NEGBINOM.FORDELING" #: formula/inc/core_resource.hrc:2533 diff -Nru libreoffice-l10n-6.1.4/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/da/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-05 17:50+0000\n" "Last-Translator: David Lamhauge \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: 1536169800.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/da/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/da/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/da/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/da/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-05 17:23+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2018-12-13 22:17+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: 1530811423.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544739439.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Certifikatet kunne ikke valideres, og dokumentet er kun delvist signeret." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-11-05 11:10+0000\n" +"PO-Revision-Date: 2019-01-13 17:29+0000\n" "Last-Translator: Sophia Schröder \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: 1541416202.000000\n" +"X-POOTLE-MTIME: 1547400567.000000\n" #: 01120000.xhp msgctxt "" @@ -3430,7 +3430,7 @@ "par_id8007446\n" "help.text" msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the OASIS web site." -msgstr "Von der OASIS-Website können Sie die vollständige ODFF (OpenDocument Format Formula)-Spezifikation herunterladen." +msgstr "Von der OASIS-Webseite können Sie die vollständige ODFF (OpenDocument Format Formula)-Spezifikation herunterladen." #: 04060000.xhp msgctxt "" @@ -64718,7 +64718,7 @@ "par_id121158\n" "help.text" msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions." -msgstr "Sie können weitere Solver-Maschinen (falls verfügbar) als Erweiterungen installieren. Öffnen Sie Tools - Extension Manager und rufen Sie die Website \"Extensions\" (Erweiterungen) auf, um nach Erweiterungen zu suchen." +msgstr "Sie können weitere Solver-Maschinen (falls verfügbar) als Erweiterungen installieren. Öffnen Sie Tools - Extension Manager und rufen Sie die Webseite \"Extensions\" (Erweiterungen) auf, um nach Erweiterungen zu suchen." #: solver_options.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-11-05 12:37+0000\n" +"PO-Revision-Date: 2019-01-13 12:58+0000\n" "Last-Translator: Sophia Schröder \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: 1541421463.000000\n" +"X-POOTLE-MTIME: 1547384290.000000\n" #: 00000001.xhp msgctxt "" @@ -1070,7 +1070,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 "HTML-Seiten enthalten bestimmte Struktur- und Formatanweisungen, die Tags genannt werden. Tags sind in spitzen Klammern eingeschlossene Schlüsselworte der Dokumentbeschreibungssprache HTML. Viele Tags umfassen einen Text oder eine Hyperlinkreferenz zwischen der öffnenden und der schließenden Klammer. So werden beispielsweise Überschriften durch die Tags

am Anfang und

am Ende des Überschriftentexts gekennzeichnet. Einige Tags kommen nur einzeln vor, beispielsweise
als Zeichen für einen Zeilenumbruch oder zum Einbinden einer Grafik." +msgstr "HTML-Seiten enthalten bestimmte Struktur- und Formatanweisungen, die Tags genannt werden. Tags sind in spitzen Klammern eingeschlossene Schlüsselworte der Dokumentbeschreibungssprache HTML. Viele Tags umfassen einen Text oder eine Hyperlinkreferenz zwischen der öffnenden und der schließenden Klammer. So werden beispielsweise Überschriften durch die Tags

am Anfang und

am Ende des Überschriftentextes gekennzeichnet. Einige Tags kommen nur einzeln vor, beispielsweise
als Zeichen für einen Zeilenumbruch oder zum Einbinden einer Grafik." #: 00000002.xhp msgctxt "" @@ -2974,7 +2974,7 @@ "par_id3149578\n" "help.text" msgid "When exporting to HTML, the character set selected in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning." -msgstr "Wenn eine Datei nach HTML exportiert wird, wird der Zeichensatz verwendet, der unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML-Kompatibilität eingestellt wurde. Zeichen, die dort nicht vorhanden sind, werden in einer Ersatzform geschrieben, welche in modernen Web-Browser korrekt angezeigt werden. Wenn Sie solche Zeichen exportieren, erhalten Sie einen entsprechenden Warnhinweis." +msgstr "Wenn eine Datei nach HTML exportiert wird, wird der Zeichensatz verwendet, der unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - HTML-Kompatibilität eingestellt wurde. Zeichen, die dort nicht vorhanden sind, werden in einer Ersatzform geschrieben, welche in modernen Webbrowsern korrekt angezeigt werden. Wenn Sie solche Zeichen exportieren, erhalten Sie einen entsprechenden Warnhinweis." #: 00000020.xhp msgctxt "" @@ -3822,7 +3822,7 @@ "par_id3154068\n" "help.text" msgid "By default, content.xml is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the Expert configuration by setting the property /org.openoffice.Office.Common/Save/Document PrettyPrinting to true." -msgstr "Standardmäßig wird content.xml ohne Formatierungselemente wie Einzug oder Zeilenumbrüche gespeichert, um die Zeit für das Speichern und Öffnen des Dokuments zu minimieren. Die Verwendung von Einzügen und Zeilenumbrüche kann in den Experteneinstellungen durch das Ändern des Wertes der Eigenschaft /org.openoffice.Office.Common/Save/Document PrettyPrinting auf true aktivieren." +msgstr "Standardmäßig wird content.xml ohne Formatierungselemente wie Einzug oder Zeilenumbrüche gespeichert, um die Zeit für das Speichern und Öffnen des Dokuments zu minimieren. Die Verwendung von Einzügen und Zeilenumbrüche kann in den Experteneinstellungen durch das Ändern des Wertes der Eigenschaft /org.openoffice.Office.Common/Save/Document PrettyPrinting auf true aktiviert werden." #: 00000021.xhp msgctxt "" @@ -3886,7 +3886,7 @@ "par_idN10AAD\n" "help.text" msgid "The schema for the OpenDocument formats can be found on the www.oasis-open.org web site." -msgstr "Das Schema für die OpenDocument-Formate finden Sie auf der Website www.oasis-open.org." +msgstr "Das Schema für die OpenDocument-Formate finden Sie auf der Webseite www.oasis-open.org." #: 00000021.xhp msgctxt "" @@ -8726,7 +8726,7 @@ "par_id3153808\n" "help.text" msgid "Choose Help - Registration (this is a direct link to an external website)" -msgstr "Wählen Sie Hilfe - Registrierung (dies ist ein direkter Link zu einer externen Website)" +msgstr "Wählen Sie Hilfe - Registrierung (dies ist ein direkter Link zu einer externen Webseite)" #: 00000409.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-11-05 18:50+0000\n" +"PO-Revision-Date: 2019-01-26 05:38+0000\n" "Last-Translator: Sophia Schröder \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: 1541443808.000000\n" +"X-POOTLE-MTIME: 1548481107.000000\n" #: 01010000.xhp msgctxt "" @@ -1686,7 +1686,7 @@ "par_id3148563\n" "help.text" msgid "Enter the address of your company's internet homepage." -msgstr "Geben Sie die Adresse Ihrer Firmen-Website ein." +msgstr "Geben Sie die Adresse Ihrer Firmen-Webseite ein." #: 01020000.xhp msgctxt "" @@ -9374,7 +9374,7 @@ "par_id3153683\n" "help.text" msgid "file:///c|/Readme.txt" -msgstr "file:///c|/Liesmich.txt" +msgstr "file:///C:/Liesmich.txt" #: 02210101.xhp msgctxt "" @@ -10110,7 +10110,7 @@ "par_id3157969\n" "help.text" msgid "Enter the URL for the file that you want to open when you click the selected hotspot. If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"." -msgstr "Geben Sie eine URL für die Datei ein, die durch Klicken auf den ausgewählten Hotspot geöffnet werden soll. Für einen Sprung zu einem Anker im Dokument muss die Adresse die Form \"file:///C/Dokumentname#Ankername\" aufweisen." +msgstr "Geben Sie eine URL für die Datei ein, die durch Klicken auf den ausgewählten Hotspot geöffnet werden soll. Für einen Sprung zu einem Anker im Dokument muss die Adresse die Form \"file:///C:/Dokumentname#Ankername\" aufweisen." #: 02220000.xhp msgctxt "" @@ -10238,7 +10238,7 @@ "par_id3155831\n" "help.text" msgid "Enter the URL for the file that you want to open when you click the selected hotspot. If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"." -msgstr "Geben Sie eine URL für die Datei ein, die durch Klicken auf den ausgewählten Hotspot geöffnet werden soll. Soll als Sprungziel ein benannter Anker innerhalb des aktuellen Dokuments verwendet werden, müssen Sie die Adresse in der Form \"file:///C/[aktuelles_Dokument]#Ankername\" eingeben." +msgstr "Geben Sie eine URL für die Datei ein, die durch Klicken auf den ausgewählten Hotspot geöffnet werden soll. Soll als Sprungziel ein benannter Anker innerhalb des aktuellen Dokuments verwendet werden, müssen Sie die Adresse in der Form \"file:///C:/[aktuelles_Dokument]#Ankername\" eingeben." #: 02220100.xhp msgctxt "" @@ -38174,7 +38174,7 @@ "par_id3949095\n" "help.text" msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser." -msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension Manager heruntergeladen werden. Um die Extension von einer bestimmten Website herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser." +msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension Manager heruntergeladen werden. Um die Extension von einer bestimmten Webseite herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser." #: extensionupdate.xhp msgctxt "" @@ -38182,7 +38182,7 @@ "par_id3729056\n" "help.text" msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately." -msgstr "Der Extension Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Website. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können." +msgstr "Der Extension Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Webseite. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können." #: extensionupdate.xhp msgctxt "" @@ -39926,7 +39926,7 @@ "par_id7857905\n" "help.text" msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the https://extensions.libreoffice.org/ page." -msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Web-Browser zu öffnen und die Seite https://extensions.libreoffice.org/ zu anzuzeigen." +msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Webbrowser zu öffnen und die Seite https://extensions.libreoffice.org/ zu anzuzeigen." #: packagemanager.xhp msgctxt "" @@ -39958,7 +39958,7 @@ "par_id5269020\n" "help.text" msgid "On a web page, click a hyperlink to an *.oxt file (if your web browser can be configured to start the Extension Manager for this file type)." -msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer *.oxt-Datei (wenn Ihr Web-Browser zum Starten des Extension Managers für diesen Dateityp konfiguriert werden kann)." +msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer *.oxt-Datei (wenn Ihr Webbrowser zum Starten des Extension Managers für diesen Dateityp konfiguriert werden kann)." #: packagemanager.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/05.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/05.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/05.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-12 14:41+0200\n" -"PO-Revision-Date: 2018-09-12 04:48+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2019-01-13 12:44+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: 1536727722.000000\n" +"X-POOTLE-MTIME: 1547383485.000000\n" #: 00000001.xhp msgctxt "" @@ -70,7 +70,7 @@ "par_id1318380\n" "help.text" msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at www.libreoffice.org/community/nlc/. You can find help and support in English language on the %PRODUCTNAME website at www.libreoffice.org." -msgstr "Die Lokalisierungsprojekte von %PRODUCTNAME bieten Unterstützungsseiten in den jeweiligen Sprachen an. Sie finden eine Übersicht der muttersprachlichen Projekte auf https://de.libreoffice.org/community/nlc/. Sie können Hilfe und Unterstützung in englischer Sprache auf der %PRODUCTNAME-Website unter https://www.libreoffice.org/get-help/community-support/ finden." +msgstr "Die Lokalisierungsprojekte von %PRODUCTNAME bieten Unterstützungsseiten in den jeweiligen Sprachen an. Sie finden eine Übersicht der muttersprachlichen Projekte auf https://de.libreoffice.org/community/nlc/. Sie können Hilfe und Unterstützung in englischer Sprache auf der %PRODUCTNAME-Webseite unter https://www.libreoffice.org/get-help/community-support/ finden." #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-07-22 04:34+0000\n" +"PO-Revision-Date: 2019-01-13 12:45+0000\n" "Last-Translator: Sophia Schröder \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: 1532234048.000000\n" +"X-POOTLE-MTIME: 1547383525.000000\n" #: 02000000.xhp msgctxt "" @@ -7830,7 +7830,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 "Stellen Sie unter UNIX sicher, dass der Oracle-Datenbankclient mit JDBC-Unterstützung installiert ist. Die JDBC-Treiberklasse für den Solaris Oracle-Client, Version 8.x, befindet sich im Verzeichnis /product/jdbc/lib/classes111.zip. Die neueste Version steht auf der Oracle-Website zum Herunterladen bereit." +msgstr "Stellen Sie unter UNIX sicher, dass der Oracle-Datenbankclient mit JDBC-Unterstützung installiert ist. Die JDBC-Treiberklasse für den Solaris Oracle-Client, Version 8.x, befindet sich im Verzeichnis /product/jdbc/lib/classes111.zip. Die neueste Version steht auf der Oracle-Webseite zum Herunterladen bereit." #: dabawiz02jdbc.xhp msgctxt "" @@ -8398,7 +8398,7 @@ "par_idN105D4\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 of the driver from the Oracle web site." -msgstr "Stellen Sie unter UNIX sicher, dass der Oracle-Datenbankclient mit JDBC-Unterstützung installiert ist. Die JDBC-Treiberklasse für den Solaris Oracle-Client, Version 8.x, befindet sich im Verzeichnis /product/jdbc/lib/classes111.zip. Sie können die neueste Version des Treibers auch von der Oracle-Website herunterladen:" +msgstr "Stellen Sie unter UNIX sicher, dass der Oracle-Datenbankclient mit JDBC-Unterstützung installiert ist. Die JDBC-Treiberklasse für den Solaris Oracle-Client, Version 8.x, befindet sich im Verzeichnis /product/jdbc/lib/classes111.zip. Sie können die neueste Version des Treibers auch von der Oracle-Webseite herunterladen." #: dabawiz02oracle.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-07-21 15:12+0000\n" +"PO-Revision-Date: 2019-01-13 12:45+0000\n" "Last-Translator: Sophia Schröder \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: 1532185977.000000\n" +"X-POOTLE-MTIME: 1547383541.000000\n" #: aaa_start.xhp msgctxt "" @@ -5558,7 +5558,7 @@ "par_idN1067B\n" "help.text" msgid "You can compare the public key with the public key that is published on the web site of the certificate authority." -msgstr "Sie können den öffentlichen Schlüssel mit dem auf der Website der Zertifizierungsstelle veröffentlichten vergleichen." +msgstr "Sie können den öffentlichen Schlüssel mit dem auf der Webseite der Zertifizierungsstelle veröffentlichten vergleichen." #: digital_signatures.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/shared/optionen.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-08-24 04:30+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2019-01-26 05:38+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: 1535085033.000000\n" +"X-POOTLE-MTIME: 1548481114.000000\n" #: 01000000.xhp msgctxt "" @@ -822,7 +822,7 @@ "par_id3154361\n" "help.text" msgid "file:///c|/work/images/img.jpg" -msgstr "file:///c:/work/images/img.jpg" +msgstr "file:///C:/work/images/img.jpg" #: 01010200.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-09-15 04:52+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2019-01-23 20:46+0000\n" +"Last-Translator: Sophia Schröder \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: LibreOffice\n" -"X-POOTLE-MTIME: 1536987179.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548276363.000000\n" #: 01120000.xhp msgctxt "" @@ -13790,7 +13790,7 @@ "par_id3151181\n" "help.text" msgid "Select the formatting style that you want to apply to the drop caps. To use the formatting style of the current paragraph, select [None]." -msgstr "Wählen Sie die für die Initialien zu verwendende Formatvorlage aus. Um die Formatvorlage des aktuellen Absatzes zu verwenden, wählen Sie [Keine]." +msgstr "Wählen Sie die für die Initialen zu verwendende Formatvorlage aus. Um die Formatvorlage des aktuellen Absatzes zu verwenden, wählen Sie [Keine]." #: 05030800.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-6.1.4/translations/source/de/helpcontent2/source/text/swriter/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-09-15 04:53+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2019-01-13 12:59+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: 1536987214.000000\n" +"X-POOTLE-MTIME: 1547384340.000000\n" #: anchor_object.xhp msgctxt "" @@ -13038,7 +13038,7 @@ "par_id7814264\n" "help.text" msgid "Click a Smart Tag *.oxt file link on a web page and open the link with the default application. This requires a properly configured Web browser." -msgstr "Klicken Sie auf den Link zu einer *.oxt-Datei für SmartTags auf einer Webseite und öffnen Sie den Link mit der Standard-Anwendung. Ihr Web-Browser muss dazu korrekt konfiguriert sein." +msgstr "Klicken Sie auf den Link zu einer *.oxt-Datei für SmartTags auf einer Webseite und öffnen Sie den Link mit der Standard-Anwendung. Ihr Webbrowser muss dazu korrekt konfiguriert sein." #: smarttags.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-10-19 19:47+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-12 06: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: 1539978435.000000\n" +"X-POOTLE-MTIME: 1547272946.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -4595,7 +4595,7 @@ "UIName\n" "value.text" msgid "Insert Cell" -msgstr "Zelle einfügen" +msgstr "Zellen einfügen" #: CalcWindowState.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-~Modell..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/readlicense_oo/docs.po libreoffice-l10n-6.1.5~rc2/translations/source/de/readlicense_oo/docs.po --- libreoffice-l10n-6.1.4/translations/source/de/readlicense_oo/docs.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/readlicense_oo/docs.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-04 15:42+0200\n" -"PO-Revision-Date: 2018-07-08 16:37+0000\n" +"PO-Revision-Date: 2019-01-12 12:41+0000\n" "Last-Translator: Sophia Schröder \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: 1531067877.000000\n" +"X-POOTLE-MTIME: 1547296862.000000\n" #: readme.xrm msgctxt "" @@ -678,7 +678,7 @@ "support1\n" "readmeitem.text" msgid "The main support page offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at https://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at https://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 "Die Seite zur Anwenderunterstützung https://de.libreoffice.org/get-help/community-support/ listet verschiedene Möglichkeiten auf, Hilfe zu ${PRODUCTNAME} zu erhalten. Ihre Frage ist vielleicht schon beantwortet, schauen Sie unter https://de.libreoffice.org/get-help/nabble/ nach oder senden Sie Ihre Fragen an users@de.libreoffice.org. Falls Sie die Liste abbonnieren möchten (um E-Mail-Antworten zu erhalten), senden Sie eine leere E-Mail an: users+subscribe@de.libreoffice.org." +msgstr "Die Seite zur Anwenderunterstützung https://de.libreoffice.org/get-help/community-support/ listet verschiedene Möglichkeiten auf, Hilfe zu ${PRODUCTNAME} zu erhalten. Ihre Frage ist vielleicht schon beantwortet, schauen Sie unter https://de.libreoffice.org/get-help/nabble/ nach oder senden Sie Ihre Fragen an users@de.libreoffice.org. Falls Sie die Liste abonnieren möchten (um E-Mail-Antworten zu erhalten), senden Sie eine leere E-Mail an: users+subscribe@de.libreoffice.org." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/de/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/de/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/de/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/de/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-12-10 17:53+0000\n" -"Last-Translator: Sophia Schröder \n" +"PO-Revision-Date: 2019-01-02 08:32+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: 1544464381.000000\n" +"X-POOTLE-MTIME: 1546417975.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -17898,12 +17898,12 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:238 msgctxt "insertsheet|countft" msgid "N_o. of sheets:" -msgstr "Tabellen_anzahl:" +msgstr "Tabellenan_zahl:" #: sc/uiconfig/scalc/ui/insertsheet.ui:252 msgctxt "insertsheet|nameft" msgid "Na_me:" -msgstr "_Name:" +msgstr "Na_me:" #: sc/uiconfig/scalc/ui/insertsheet.ui:282 msgctxt "insertsheet|nameed" @@ -17913,7 +17913,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:315 msgctxt "insertsheet|fromfile" msgid "_From file" -msgstr "_Aus Datei erstellen" +msgstr "Aus _Datei erstellen" #: sc/uiconfig/scalc/ui/insertsheet.ui:388 msgctxt "insertsheet|tables-atkobject" diff -Nru libreoffice-l10n-6.1.4/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 13:58+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23312,15 +23312,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 14:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23263,15 +23263,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-27 08:17+0000\n" "Last-Translator: Andras Timar \n" "Language-Team: team@lists.gnome.gr\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: 1540628255.000000\n" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Μοντέλο 3Δ..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/el/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/el/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/el/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/el/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-03 10:30+0000\n" +"PO-Revision-Date: 2018-12-24 16:01+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: 1530613853.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545667290.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Το πιστοποιητικό δεν μπόρεσε να επικυρωθεί και το έγγραφο είναι μερικώς υπογεγραμμένο." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-05 17:32+0000\n" "Last-Translator: Stuart Swales \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: 1536168744.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3-D Model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/en-GB/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/en-GB/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/en-GB/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/en-GB/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-02 15:21+0000\n" +"PO-Revision-Date: 2018-12-13 09:37+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: 1530544876.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544693824.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "The certificate could not be validated and the document is only partially signed." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-21 22:12+0000\n" "Last-Translator: dwayne \n" "Language-Team: LANGUAGE \n" @@ -23256,15 +23256,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-07-16 08:53+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-modelo" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/chart2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/chart2/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/chart2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/chart2/messages.po 2019-01-30 17:56:45.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: 2018-05-22 13:16+0200\n" -"PO-Revision-Date: 2018-10-22 01:33+0000\n" +"POT-Creation-Date: 2018-11-19 16:56+0100\n" +"PO-Revision-Date: 2019-01-27 09:16+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,12 +14,12 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1540172016.000000\n" +"X-POOTLE-MTIME: 1548580606.000000\n" #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" msgid "Chart Wizard" -msgstr "Asistente de diagramas" +msgstr "Asistente de gráficos" #: chart2/inc/strings.hrc:25 msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES" @@ -34,12 +34,12 @@ #: chart2/inc/strings.hrc:27 msgctxt "STR_DLG_REMOVE_DATA_TABLE" msgid "This chart currently contains an internal data table. Do you want to proceed, deleting the internal data table, and set a new data range?" -msgstr "Este diagrama contiene una tabla de datos interna. ¿Quiere eliminar la tabla de datos interna y definir un intervalo de datos nuevo?" +msgstr "Este gráfico contiene una tabla de datos interna. ¿Quiere eliminar la tabla de datos interna y definir un intervalo de datos nuevo?" #: chart2/inc/strings.hrc:28 msgctxt "STR_PAGE_CHARTTYPE" msgid "Chart Type" -msgstr "Tipo de diagrama" +msgstr "Tipo de gráfico" #: chart2/inc/strings.hrc:29 msgctxt "STR_PAGE_DATA_RANGE" @@ -49,7 +49,7 @@ #: chart2/inc/strings.hrc:30 msgctxt "STR_PAGE_CHART_ELEMENTS" msgid "Chart Elements" -msgstr "Elementos del diagrama" +msgstr "Elementos del gráfico" #: chart2/inc/strings.hrc:31 msgctxt "STR_PAGE_LINE" @@ -375,22 +375,22 @@ #: chart2/inc/strings.hrc:95 msgctxt "STR_OBJECT_PAGE" msgid "Chart Area" -msgstr "Área del diagrama" +msgstr "Área del gráfico" #: chart2/inc/strings.hrc:96 msgctxt "STR_OBJECT_DIAGRAM" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: chart2/inc/strings.hrc:97 msgctxt "STR_OBJECT_DIAGRAM_WALL" msgid "Chart Wall" -msgstr "Plano lateral del diagrama" +msgstr "Plano lateral del gráfico" #: chart2/inc/strings.hrc:98 msgctxt "STR_OBJECT_DIAGRAM_FLOOR" msgid "Chart Floor" -msgstr "Base del diagrama" +msgstr "Base del gráfico" #: chart2/inc/strings.hrc:99 msgctxt "STR_OBJECT_SHAPE" @@ -446,7 +446,7 @@ #: chart2/inc/strings.hrc:109 msgctxt "STR_ACTION_EDIT_CHARTTYPE" msgid "Edit chart type" -msgstr "Editar tipo de diagrama" +msgstr "Editar tipo de gráfico" #: chart2/inc/strings.hrc:110 msgctxt "STR_ACTION_EDIT_DATA_RANGES" @@ -461,7 +461,7 @@ #: chart2/inc/strings.hrc:112 msgctxt "STR_ACTION_EDIT_CHART_DATA" msgid "Edit chart data" -msgstr "Editar datos del diagrama" +msgstr "Editar datos del gráfico" #: chart2/inc/strings.hrc:113 msgctxt "STR_ACTION_TOGGLE_LEGEND" @@ -706,12 +706,12 @@ #: chart2/inc/strings.hrc:162 msgctxt "STR_PIE_EXPLODED" msgid "Exploded Pie Chart" -msgstr "Diagrama circular esparcido" +msgstr "Gráfico circular esparcido" #: chart2/inc/strings.hrc:163 msgctxt "STR_DONUT_EXPLODED" msgid "Exploded Donut Chart" -msgstr "Diagrama de anillos esparcido" +msgstr "Gráfico de anillos esparcido" #: chart2/inc/strings.hrc:164 msgctxt "STR_DONUT" @@ -776,22 +776,22 @@ #: chart2/inc/strings.hrc:176 msgctxt "STR_STOCK_1" msgid "Stock Chart 1" -msgstr "Diagrama de cotización 1" +msgstr "Gráfico de cotización 1" #: chart2/inc/strings.hrc:177 msgctxt "STR_STOCK_2" msgid "Stock Chart 2" -msgstr "Diagrama de cotización 2" +msgstr "Gráfico de cotización 2" #: chart2/inc/strings.hrc:178 msgctxt "STR_STOCK_3" msgid "Stock Chart 3" -msgstr "Diagrama de cotización 3" +msgstr "Gráfico de cotización 3" #: chart2/inc/strings.hrc:179 msgctxt "STR_STOCK_4" msgid "Stock Chart 4" -msgstr "Diagrama de cotización 4" +msgstr "Gráfico de cotización 4" #: chart2/inc/strings.hrc:180 msgctxt "STR_NORMAL" @@ -826,7 +826,7 @@ #: chart2/inc/strings.hrc:186 msgctxt "STR_BUBBLE_1" msgid "Bubble Chart" -msgstr "Diagrama de burbujas" +msgstr "Gráfico de burbujas" #: chart2/inc/strings.hrc:187 msgctxt "STR_TYPE_GL3D_BAR" @@ -836,7 +836,7 @@ #: chart2/inc/strings.hrc:188 msgctxt "STR_GL3D_BAR" msgid "GL3D Bar Chart" -msgstr "Diagrama de barras GL3D" +msgstr "Gráfico de barras GL3D" #: chart2/inc/strings.hrc:190 msgctxt "STR_INVALID_NUMBER" @@ -946,7 +946,7 @@ #: chart2/uiconfig/ui/charttypedialog.ui:8 msgctxt "charttypedialog|ChartTypeDialog" msgid "Chart Type" -msgstr "Tipo de diagrama" +msgstr "Tipo de gráfico" #: chart2/uiconfig/ui/datarangedialog.ui:8 msgctxt "datarangedialog|DataRangeDialog" @@ -2161,7 +2161,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:53 msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD" msgid "Choose a Chart Type" -msgstr "Elija un tipo de diagrama" +msgstr "Elija un tipo de gráfico" #: chart2/uiconfig/ui/tp_ChartType.ui:102 msgctxt "tp_ChartType|3dlook" @@ -2681,7 +2681,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:179 msgctxt "tp_RangeChooser|CB_TIME_BASED" msgid "Time based charting" -msgstr "Diagrama basado en el tiempo" +msgstr "Graficación basada en el tiempo" #: chart2/uiconfig/ui/tp_RangeChooser.ui:233 msgctxt "tp_RangeChooser|label1" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-09-18 11:07+0000\n" +"PO-Revision-Date: 2019-01-27 09:17+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: 1537268863.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548580624.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -1603,7 +1603,7 @@ #: cui/inc/strings.hrc:367 msgctxt "RID_SVXSTR_APPLYPERSONA" msgid "Applying Theme..." -msgstr "Aplicando el tema…" +msgstr "Se está aplicando el tema…" #: cui/inc/strings.hrc:369 msgctxt "RID_SVXSTR_TABLE_PRESET_NONE" @@ -2043,7 +2043,7 @@ #: cui/inc/treeopt.hrc:135 msgctxt "SID_SCH_EDITOPTIONS_RES" msgid "Charts" -msgstr "Diagramas" +msgstr "Gráficos" #: cui/inc/treeopt.hrc:136 msgctxt "SID_SCH_EDITOPTIONS_RES" @@ -7517,7 +7517,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:42 msgctxt "optchartcolorspage|label20" msgid "Chart Colors" -msgstr "Colores del diagrama" +msgstr "Colores del gráfico" #: cui/uiconfig/ui/optchartcolorspage.ui:128 msgctxt "optchartcolorspage|default" @@ -10020,7 +10020,7 @@ #: cui/uiconfig/ui/querydeletechartcolordialog.ui:14 msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog" msgid "Do you really want to delete the chart color?" -msgstr "¿Confirma que quiere eliminar el color del diagrama?" +msgstr "¿Confirma que quiere eliminar el color del gráfico?" #: cui/uiconfig/ui/querydeletechartcolordialog.ui:15 msgctxt "querydeletechartcolordialog|QueryDeleteChartColorDialog" @@ -10470,7 +10470,7 @@ #: cui/uiconfig/ui/signatureline.ui:137 msgctxt "signatureline|edit_email" msgid "john.doe@example.org" -msgstr "juan.perez@ejemplo.org" +msgstr "agueda.vera@ejemplo.org" #. Suggested Signer Name #: cui/uiconfig/ui/signatureline.ui:149 @@ -11525,7 +11525,7 @@ #: cui/uiconfig/ui/twolinespage.ui:34 msgctxt "twolinespage|liststore1" msgid "Other Characters..." -msgstr "Otros caracteres..." +msgstr "Otros caracteres…" #: cui/uiconfig/ui/twolinespage.ui:48 msgctxt "twolinespage|liststore2" @@ -11555,7 +11555,7 @@ #: cui/uiconfig/ui/twolinespage.ui:68 msgctxt "twolinespage|liststore2" msgid "Other Characters..." -msgstr "Otros caracteres..." +msgstr "Otros caracteres…" #: cui/uiconfig/ui/twolinespage.ui:93 msgctxt "twolinespage|twolines" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/editeng/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/editeng/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/editeng/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/editeng/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-09-18 11:07+0000\n" +"PO-Revision-Date: 2019-01-21 06:27+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: 1537268872.000000\n" +"X-POOTLE-MTIME: 1548052026.000000\n" #: editeng/uiconfig/ui/spellmenu.ui:12 msgctxt "spellmenu|ignore" @@ -193,17 +193,17 @@ #: include/editeng/editrids.hrc:60 msgctxt "RID_SVXITEMS_ITALIC_NONE" msgid "Not Italic" -msgstr "Sin cursiva" +msgstr "Sin itálica" #: include/editeng/editrids.hrc:61 msgctxt "RID_SVXITEMS_ITALIC_OBLIQUE" msgid "Oblique italic" -msgstr "Cursiva oblicua" +msgstr "Cursiva itálica" #: include/editeng/editrids.hrc:62 msgctxt "RID_SVXITEMS_ITALIC_NORMAL" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #. enum FontWeight ------------------------------------------------------- #: include/editeng/editrids.hrc:65 diff -Nru libreoffice-l10n-6.1.4/translations/source/es/extensions/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/extensions/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/extensions/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/extensions/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:14+0100\n" -"PO-Revision-Date: 2018-08-22 09:21+0000\n" +"PO-Revision-Date: 2019-01-21 06:27+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: 1534929678.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548052034.000000\n" #: extensions/inc/command.hrc:29 msgctxt "RID_RSC_ENUM_COMMAND_TYPE" @@ -1696,13 +1696,13 @@ #: extensions/inc/strings.hrc:238 msgctxt "RID_STR_FONTSTYLE_BOLD_ITALIC" msgid "Bold Italic" -msgstr "Negrita cursiva" +msgstr "Negrita itálica" #. To translators: That's the 'Italic' as used for a font style, so please use a consistent translation. #: extensions/inc/strings.hrc:240 msgctxt "RID_STR_FONTSTYLE_ITALIC" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #. To translators: That's the 'Bold' as used for a font style, so please use a consistent translation." #: extensions/inc/strings.hrc:242 diff -Nru libreoffice-l10n-6.1.4/translations/source/es/extras/source/autocorr/emoji.po libreoffice-l10n-6.1.5~rc2/translations/source/es/extras/source/autocorr/emoji.po --- libreoffice-l10n-6.1.4/translations/source/es/extras/source/autocorr/emoji.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/extras/source/autocorr/emoji.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-20 08:16+0100\n" -"PO-Revision-Date: 2018-10-15 22:32+0000\n" +"PO-Revision-Date: 2019-01-27 09:17+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: 1539642732.000000\n" +"X-POOTLE-MTIME: 1548580660.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6980,7 +6980,7 @@ "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" "LngText.text" msgid "chart4" -msgstr "diagrama4" +msgstr "gráfico4" #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7115,7 +7115,7 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "chart" -msgstr "diagrama" +msgstr "gráfico" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7124,7 +7124,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "diagrama2" +msgstr "gráfico2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7133,7 +7133,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "diagrama3" +msgstr "gráfico3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10040,7 +10040,7 @@ "JOYSTICK\n" "LngText.text" msgid "joystick" -msgstr "" +msgstr "palanca de mando" #. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10220,7 +10220,7 @@ "CARD_INDEX_DIVIDERS\n" "LngText.text" msgid "index" -msgstr "" +msgstr "fichas de colores" #. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10229,7 +10229,7 @@ "SPIRAL_NOTE_PAD\n" "LngText.text" msgid "notepad" -msgstr "" +msgstr "bloc de notas" #. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10517,7 +10517,7 @@ "STOCK_CHART\n" "LngText.text" msgid "chart5" -msgstr "" +msgstr "gráfico5" #. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-6.1.4/translations/source/es/filter/source/config/fragments/filters.po libreoffice-l10n-6.1.5~rc2/translations/source/es/filter/source/config/fragments/filters.po --- libreoffice-l10n-6.1.4/translations/source/es/filter/source/config/fragments/filters.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/filter/source/config/fragments/filters.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-09-19 11:42+0000\n" +"PO-Revision-Date: 2019-01-27 09: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: 1537357337.000000\n" +"X-POOTLE-MTIME: 1548580684.000000\n" #: ADO_rowset_XML.xcu msgctxt "" @@ -941,7 +941,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Report Chart" -msgstr "Diagrama de informe de OpenOffice.org 1.0" +msgstr "Gráfico de informe de OpenOffice.org 1.0" #: StarOffice_Drawing.xcu msgctxt "" @@ -1004,7 +1004,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Chart" -msgstr "Diagrama de OpenOffice.org 1.0" +msgstr "Gráfico de OpenOffice.org 1.0" #: StarOffice_XML__Draw_.xcu msgctxt "" @@ -1373,7 +1373,7 @@ "UIName\n" "value.text" msgid "ODF Chart" -msgstr "Diagrama ODF" +msgstr "Gráfico ODF" #: dBase.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/filter/source/config/fragments/types.po libreoffice-l10n-6.1.5~rc2/translations/source/es/filter/source/config/fragments/types.po --- libreoffice-l10n-6.1.4/translations/source/es/filter/source/config/fragments/types.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/filter/source/config/fragments/types.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-04 15:43+0200\n" -"PO-Revision-Date: 2018-06-06 08:24+0000\n" +"PO-Revision-Date: 2019-01-27 09: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: 1528273495.000000\n" +"X-POOTLE-MTIME: 1548580689.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -113,7 +113,7 @@ "UIName\n" "value.text" msgid "StarOffice XML (Base) Report Chart 9" -msgstr "Diagrama de informe de StarOffice XML (Base) 9" +msgstr "Gráfico de informe de StarOffice XML (Base) 9" #: calc8.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-25 01:47+0000\n" +"PO-Revision-Date: 2019-01-21 06:35+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1537840053.000000\n" +"X-POOTLE-MTIME: 1548052546.000000\n" #: 01010000.xhp msgctxt "" @@ -3286,7 +3286,7 @@ "hd_id3153252\n" "help.text" msgid "Revision number:" -msgstr "Número de revisión:" +msgstr "N.º de modificación:" #: 01100200.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/shared/help.po libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/shared/help.po --- libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/shared/help.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/shared/help.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-05-18 17:00+0000\n" +"PO-Revision-Date: 2018-12-17 19:37+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: 1526662848.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545075432.000000\n" #: browserhelp.xhp msgctxt "" @@ -30,7 +30,7 @@ "par_id491525733955136\n" "help.text" msgid "Module" -msgstr "Aplicación" +msgstr "Módulo" #: browserhelp.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/es/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-10-28 18:04+0000\n" +"PO-Revision-Date: 2019-01-21 06:35+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: 1540749856.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548052550.000000\n" #: 01120000.xhp msgctxt "" @@ -7142,7 +7142,7 @@ "par_id3145262\n" "help.text" msgid "Revision number" -msgstr "" +msgstr "N.º de modificación" #: 04090004.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/librelogo/source/pythonpath.po libreoffice-l10n-6.1.5~rc2/translations/source/es/librelogo/source/pythonpath.po --- libreoffice-l10n-6.1.4/translations/source/es/librelogo/source/pythonpath.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/librelogo/source/pythonpath.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-06-05 00:36+0000\n" +"PO-Revision-Date: 2019-01-21 06:27+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: 1496622964.000000\n" +"X-POOTLE-MTIME: 1548052039.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -318,7 +318,7 @@ "ITALIC\n" "property.text" msgid "italic" -msgstr "cursiva" +msgstr "itálica" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-10-14 21:15+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-27 09:26+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: 1539551713.000000\n" +"X-POOTLE-MTIME: 1548581207.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -554,7 +554,7 @@ "Label\n" "value.text" msgid "Insert Chart" -msgstr "Insertar diagrama" +msgstr "Insertar gráfico" #: CalcCommands.xcu msgctxt "" @@ -1139,7 +1139,7 @@ "Label\n" "value.text" msgid "Modify Chart Data Area" -msgstr "Modificar área de datos del diagrama" +msgstr "Modificar área de datos del gráfico" #: CalcCommands.xcu msgctxt "" @@ -3389,7 +3389,7 @@ "Label\n" "value.text" msgid "Redraw Chart" -msgstr "Redibujar diagrama" +msgstr "Redibujar gráfico" #: CalcCommands.xcu msgctxt "" @@ -4307,7 +4307,7 @@ "UIName\n" "value.text" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: CalcWindowState.xcu msgctxt "" @@ -4910,7 +4910,7 @@ "Label\n" "value.text" msgid "Chart ~Wall..." -msgstr "~Plano lateral del diagrama…" +msgstr "~Plano lateral del gráfico…" #: ChartCommands.xcu msgctxt "" @@ -4919,7 +4919,7 @@ "Label\n" "value.text" msgid "Chart ~Floor..." -msgstr "~Base del diagrama…" +msgstr "~Base del gráfico…" #: ChartCommands.xcu msgctxt "" @@ -4928,7 +4928,7 @@ "Label\n" "value.text" msgid "Chart ~Area..." -msgstr "Áre~a del diagrama…" +msgstr "Áre~a del gráfico…" #: ChartCommands.xcu msgctxt "" @@ -4937,7 +4937,7 @@ "Label\n" "value.text" msgid "Chart T~ype..." -msgstr "~Tipo de diagrama…" +msgstr "~Tipo de gráfico…" #: ChartCommands.xcu msgctxt "" @@ -5198,7 +5198,7 @@ "Label\n" "value.text" msgid "Format Chart Area..." -msgstr "Formato de área de diagrama…" +msgstr "Formato de área de gráfico…" #: ChartCommands.xcu msgctxt "" @@ -5621,7 +5621,7 @@ "Label\n" "value.text" msgid "Select Chart Element" -msgstr "Seleccionar elemento de diagrama" +msgstr "Seleccionar elemento de gráfico" #: ChartCommands.xcu msgctxt "" @@ -5657,7 +5657,7 @@ "Label\n" "value.text" msgid "Update Chart" -msgstr "Actualizar diagrama" +msgstr "Actualizar gráfico" #: ChartCommands.xcu msgctxt "" @@ -5720,7 +5720,7 @@ "Label\n" "value.text" msgid "Chart Type" -msgstr "Tipo de diagrama" +msgstr "Tipo de gráfico" #: ChartCommands.xcu msgctxt "" @@ -5729,7 +5729,7 @@ "Label\n" "value.text" msgid "Caption Type for Chart Data" -msgstr "Tipo de leyenda de los datos del diagrama" +msgstr "Tipo de leyenda de los datos del gráfico" #: ChartCommands.xcu msgctxt "" @@ -5765,7 +5765,7 @@ "Label\n" "value.text" msgid "Number of lines in combination chart" -msgstr "Número de líneas en diagrama combinado" +msgstr "Número de líneas en gráfico combinado" #: ChartCommands.xcu msgctxt "" @@ -9968,7 +9968,7 @@ "Label\n" "value.text" msgid "Vertical Title, Text, Chart" -msgstr "Título vertical, texto y diagrama" +msgstr "Título vertical, texto y gráfico" #: DrawImpressCommands.xcu msgctxt "" @@ -14063,7 +14063,7 @@ "Name\n" "value.text" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: GenericCategories.xcu msgctxt "" @@ -15854,7 +15854,7 @@ "Label\n" "value.text" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: GenericCommands.xcu msgctxt "" @@ -17287,7 +17287,7 @@ "Label\n" "value.text" msgid "~Chart..." -msgstr "~Diagrama..." +msgstr "~Gráfico…" #: GenericCommands.xcu msgctxt "" @@ -17296,7 +17296,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Chart" -msgstr "Insertar diagrama" +msgstr "Insertar gráfico" #: GenericCommands.xcu msgctxt "" @@ -17305,7 +17305,7 @@ "Label\n" "value.text" msgid "Chart from File..." -msgstr "Diagrama a partir de archivo…" +msgstr "Gráfico desde archivo…" #: GenericCommands.xcu msgctxt "" @@ -18493,7 +18493,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "~Quitar el contorno" +msgstr "~Quitar esquema" #: GenericCommands.xcu msgctxt "" @@ -20104,7 +20104,7 @@ "Label\n" "value.text" msgid "Chart Options" -msgstr "Opciones de diagramas" +msgstr "Opciones de gráfico" #: GenericCommands.xcu msgctxt "" @@ -22426,7 +22426,7 @@ "Label\n" "value.text" msgid "~Chart" -msgstr "Diagrama" +msgstr "~Gráfico" #: GenericCommands.xcu msgctxt "" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modelo 3D..." - -#: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" "value.text" @@ -25999,7 +25990,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "~Diagramas" +msgstr "~Gráficos" #: WriterCommands.xcu msgctxt "" @@ -29104,7 +29095,7 @@ "Label\n" "value.text" msgid "View Images and Charts" -msgstr "Ver imágenes y diagramas" +msgstr "Ver imágenes y gráficos" #: WriterCommands.xcu msgctxt "" @@ -29113,7 +29104,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "~Imágenes y diagramas" +msgstr "~Imágenes y gráficos" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-6.1.5~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-6.1.4/translations/source/es/officecfg/registry/data/org/openoffice/Office.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-04-07 01:29+0000\n" +"PO-Revision-Date: 2019-01-27 09: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: 1523064575.000000\n" +"X-POOTLE-MTIME: 1548580696.000000\n" #: Addons.xcu msgctxt "" @@ -671,7 +671,7 @@ "ObjectUIName\n" "value.text" msgid "%PRODUCTNAME %PRODUCTVERSION Chart" -msgstr "Diagrama de %PRODUCTNAME %PRODUCTVERSION" +msgstr "Gráfico de %PRODUCTNAME %PRODUCTVERSION" #: Embedding.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/reportdesign/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/reportdesign/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/reportdesign/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/reportdesign/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-22 13:17+0200\n" -"PO-Revision-Date: 2018-08-24 09:02+0000\n" +"PO-Revision-Date: 2019-01-27 09:27+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: 1535101325.000000\n" +"X-POOTLE-MTIME: 1548581220.000000\n" #: reportdesign/inc/stringarray.hrc:17 msgctxt "RID_STR_FORCENEWPAGE_CONST" @@ -214,7 +214,7 @@ #: reportdesign/inc/strings.hrc:38 msgctxt "RID_STR_CHARTTYPE" msgid "Chart type" -msgstr "Tipo de diagrama" +msgstr "Tipo de gráfico" #: reportdesign/inc/strings.hrc:39 msgctxt "RID_STR_PRINTWHENGROUPCHANGE" @@ -354,7 +354,7 @@ #: reportdesign/inc/strings.hrc:67 msgctxt "RID_STR_DETAILLABEL" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: reportdesign/inc/strings.hrc:68 msgctxt "RID_STR_MASTERLABEL" @@ -986,7 +986,7 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:236 msgctxt "conditionwin|ToolBoxItem2" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:251 msgctxt "conditionwin|ToolBoxItem3" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-08-25 11:20+0000\n" +"PO-Revision-Date: 2019-01-27 09: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: 1535196017.000000\n" +"X-POOTLE-MTIME: 1548581345.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -380,7 +380,7 @@ #: sc/inc/globstr.hrc:94 msgctxt "STR_UNDO_CHARTDATA" msgid "Modify chart data range" -msgstr "Modificar intervalo de datos del diagrama" +msgstr "Modificar intervalo de datos del gráfico" #: sc/inc/globstr.hrc:95 msgctxt "STR_UNDO_ORIGINALSIZE" @@ -692,7 +692,7 @@ "Deleting the pivot table will also remove any associated pivot charts.\n" "Do you want to proceed?" msgstr "" -"Si elimina la tabla dinámica se eliminarán también los diagramas dinámicos asociados.\n" +"Si elimina la tabla dinámica se eliminarán también los gráficos dinámicos asociados.\n" "¿Quiere continuar?" #: sc/inc/globstr.hrc:154 @@ -897,7 +897,7 @@ #: sc/inc/globstr.hrc:193 msgctxt "STR_NOCHARTATCURSOR" msgid "No chart found at this position." -msgstr "No se encontró ningún diagrama en esta posición." +msgstr "No se encontró ningún gráfico en esta posición." #: sc/inc/globstr.hrc:194 msgctxt "STR_PIVOT_NOTFOUND" @@ -1390,7 +1390,7 @@ #: sc/inc/globstr.hrc:298 msgctxt "STR_VOBJ_CHART" msgid "Charts" -msgstr "Diagramas" +msgstr "Gráficos" #: sc/inc/globstr.hrc:299 msgctxt "STR_VOBJ_DRAWINGS" @@ -10489,7 +10489,7 @@ #: sc/inc/scfuncs.hrc:3010 msgctxt "SC_OPCODE_T_TEST" msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "El modo determina el número de colas de la distribución. 1 = unilateral, 2 = bilateral." #: sc/inc/scfuncs.hrc:3011 msgctxt "SC_OPCODE_T_TEST" @@ -10534,7 +10534,7 @@ #: sc/inc/scfuncs.hrc:3024 msgctxt "SC_OPCODE_T_TEST_MS" msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution" -msgstr "" +msgstr "El modo determina el número de colas de la distribución. 1 = unilateral, 2 = bilateral." #: sc/inc/scfuncs.hrc:3025 msgctxt "SC_OPCODE_T_TEST_MS" @@ -20910,7 +20910,7 @@ #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:116 msgctxt "sharedocumentdlg|warning" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Nota: no se guardarán los cambios a atributos de formato como tipos de letra, colores y formatos numéricos, y algunas funcionalidades como la edición de diagramas y dibujos no están disponibles en el modo compartido. Desactive el modo compartido para obtener el acceso exclusivo necesario para estos cambios y funcionalidades." +msgstr "Nota: no se guardarán los cambios a atributos de formato como tipos de letra, colores y formatos numéricos, y algunas funcionalidades como la edición de gráficos y dibujos no están disponibles en el modo compartido. Desactive el modo compartido para obtener el acceso exclusivo necesario para estos cambios y funcionalidades." #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:169 msgctxt "sharedocumentdlg|name" @@ -20950,7 +20950,7 @@ #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13 msgctxt "sharedwarningdialog|SharedWarningDialog" msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "No se guardarán los cambios a atributos de formato como tipos de letra, colores y formatos numéricos, y algunas funcionalidades como la edición de diagramas y dibujos no están disponibles en el modo compartido. Desactive el modo compartido para obtener el acceso exclusivo necesario para estos cambios y funcionalidades." +msgstr "No se guardarán los cambios a atributos de formato como tipos de letra, colores y formatos numéricos, y algunas funcionalidades como la edición de gráficos y dibujos no están disponibles en el modo compartido. Desactive el modo compartido para obtener el acceso exclusivo necesario para estos cambios y funcionalidades." #: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32 msgctxt "sharedwarningdialog|ask" @@ -21000,7 +21000,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:262 msgctxt "sheetprintpage|checkBTN_CHARTS" msgid "Charts" -msgstr "Diagramas" +msgstr "Gráficos" #: sc/uiconfig/scalc/ui/sheetprintpage.ui:277 msgctxt "sheetprintpage|checkBTN_DRAWINGS" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/sd/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/sd/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/sd/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/sd/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:27+0100\n" -"PO-Revision-Date: 2018-11-13 14:48+0000\n" +"PO-Revision-Date: 2019-01-27 09:29+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: 1542120512.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548581366.000000\n" #: sd/inc/DocumentRenderer.hrc:27 msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES" @@ -384,7 +384,7 @@ #: sd/inc/strings.hrc:57 msgctxt "STR_AL_VERT_TITLE_TEXT_CHART" msgid "Vertical Title, Text, Chart" -msgstr "Título vertical, texto y diagrama" +msgstr "Título vertical, texto y gráfico" #: sd/inc/strings.hrc:58 msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE" @@ -1456,7 +1456,7 @@ #: sd/inc/strings.hrc:268 msgctxt "STR_INSERT_CHART" msgid "Insert Chart" -msgstr "Insertar un diagrama" +msgstr "Insertar gráfico" #: sd/inc/strings.hrc:269 msgctxt "STR_INSERT_PICTURE" @@ -1652,7 +1652,7 @@ #: sd/inc/strings.hrc:308 msgctxt "STR_PRESOBJ_CHART" msgid "Double-click to add a Chart" -msgstr "Pulse dos veces para añadir un diagrama" +msgstr "Pulse dos veces para añadir un gráfico" #: sd/inc/strings.hrc:309 msgctxt "STR_PRESOBJ_ORGCHART" @@ -2985,7 +2985,7 @@ #: sd/uiconfig/simpress/ui/annotationmenu.ui:37 msgctxt "annotationmenu|italic" msgid "_Italic" -msgstr "_Cursiva" +msgstr "_Itálica" #: sd/uiconfig/simpress/ui/annotationmenu.ui:46 msgctxt "annotationmenu|underline" @@ -3823,7 +3823,7 @@ #: sd/uiconfig/simpress/ui/fontstylemenu.ui:20 msgctxt "fontstylemenu|italic" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: sd/uiconfig/simpress/ui/fontstylemenu.ui:28 msgctxt "fontstylemenu|underline" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-09-24 17:39+0000\n" +"PO-Revision-Date: 2019-01-27 09:29+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: 1537810772.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548581371.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -555,7 +555,7 @@ #: include/sfx2/strings.hrc:127 msgctxt "STR_GID_CHART" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: include/sfx2/strings.hrc:128 msgctxt "STR_GID_EXPLORER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "No se pudo validar el certificado y el documento está firmado solo parcialmente." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/starmath/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/starmath/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/starmath/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/starmath/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-09-18 11:08+0000\n" +"PO-Revision-Date: 2019-01-21 06:27+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: 1537268880.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548052076.000000\n" #: starmath/inc/smmod.hrc:16 msgctxt "RID_UI_SYMBOLSET_NAMES" @@ -1099,7 +1099,7 @@ #: starmath/inc/strings.hrc:173 msgctxt "RID_ITALX_HELP" msgid "Italic Font" -msgstr "Cursiva" +msgstr "Itálica" #: starmath/inc/strings.hrc:174 msgctxt "RID_SIZEXY_HELP" @@ -1659,7 +1659,7 @@ #: starmath/inc/strings.hrc:286 msgctxt "RID_FONTITALIC" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: starmath/inc/strings.hrc:287 msgctxt "RID_FONTBOLD" @@ -1989,7 +1989,7 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:166 msgctxt "fontdialog|italic" msgid "_Italic" -msgstr "_Cursiva" +msgstr "_Itálica" #: starmath/uiconfig/smath/ui/fontdialog.ui:187 msgctxt "fontdialog|formulaL1" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/svtools/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/svtools/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/svtools/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/svtools/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: 2018-11-16 19:29+0000\n" +"PO-Revision-Date: 2019-01-27 09:29+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: 1542396594.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548581381.000000\n" #: include/svtools/strings.hrc:25 msgctxt "STR_UNDO" @@ -619,7 +619,7 @@ #: include/svtools/strings.hrc:168 msgctxt "STR_SVT_STYLE_LIGHT_ITALIC" msgid "Light Italic" -msgstr "Ligera cursiva" +msgstr "Ligera itálica" #: include/svtools/strings.hrc:169 msgctxt "STR_SVT_STYLE_NORMAL" @@ -629,7 +629,7 @@ #: include/svtools/strings.hrc:170 msgctxt "STR_SVT_STYLE_NORMAL_ITALIC" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: include/svtools/strings.hrc:171 msgctxt "STR_SVT_STYLE_BOLD" @@ -639,7 +639,7 @@ #: include/svtools/strings.hrc:172 msgctxt "STR_SVT_STYLE_BOLD_ITALIC" msgid "Bold Italic" -msgstr "Negrita cursiva" +msgstr "Negrita itálica" #: include/svtools/strings.hrc:173 msgctxt "STR_SVT_STYLE_BLACK" @@ -649,7 +649,7 @@ #: include/svtools/strings.hrc:174 msgctxt "STR_SVT_STYLE_BLACK_ITALIC" msgid "Black Italic" -msgstr "Negra cursiva" +msgstr "Negra itálica" #: include/svtools/strings.hrc:175 msgctxt "STR_SVT_STYLE_BOOK" @@ -674,7 +674,7 @@ #: include/svtools/strings.hrc:179 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC" msgid "Condensed Bold Italic" -msgstr "Condensada negrita cursiva" +msgstr "Condensada negrita itálica" #: include/svtools/strings.hrc:180 msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE" @@ -684,7 +684,7 @@ #: include/svtools/strings.hrc:181 msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC" msgid "Condensed Italic" -msgstr "Condensada cursiva" +msgstr "Condensada itálica" #: include/svtools/strings.hrc:182 msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE" @@ -699,7 +699,7 @@ #: include/svtools/strings.hrc:184 msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC" msgid "ExtraLight Italic" -msgstr "Extraligera cursiva" +msgstr "Extraligera itálica" #: include/svtools/strings.hrc:185 msgctxt "STR_SVT_STYLE_OBLIQUE" @@ -714,7 +714,7 @@ #: include/svtools/strings.hrc:187 msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC" msgid "Semibold Italic" -msgstr "Seminegrita cursiva" +msgstr "Seminegrita itálica" #: include/svtools/strings.hrc:188 msgctxt "STR_SVT_FONTMAP_BOTH" @@ -1430,7 +1430,7 @@ #: include/svtools/strings.hrc:338 msgctxt "STR_DESCRIPTION_SXCHART_DOC" msgid "OpenOffice.org 1.0 Chart" -msgstr "Diagrama de OpenOffice.org 1.0" +msgstr "Gráfico de OpenOffice.org 1.0" #: include/svtools/strings.hrc:339 msgctxt "STR_DESCRIPTION_SXDRAW_DOC" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/svx/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/svx/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/svx/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/svx/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: 2018-10-15 10:02+0000\n" +"PO-Revision-Date: 2019-01-27 09:29+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: 1539597731.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548581390.000000\n" #: include/svx/strings.hrc:25 msgctxt "STR_ObjNameSingulNONE" @@ -2357,7 +2357,7 @@ #: include/svx/strings.hrc:495 msgctxt "SIP_EE_CHAR_ITALIC" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: include/svx/strings.hrc:496 msgctxt "SIP_EE_CHAR_OUTLINE" @@ -2979,7 +2979,7 @@ #: include/svx/strings.hrc:625 msgctxt "RID_SVXSTR_COLOR_CHART" msgid "Chart" -msgstr "Diagrama" +msgstr "Gráfico" #: include/svx/strings.hrc:626 msgctxt "RID_SVXSTR_COLOR_SKYBLUE" @@ -5799,7 +5799,7 @@ #: include/svx/strings.hrc:1226 msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY" msgid "Digital Signature: The document signature is OK, but the certificates could not be validated." -msgstr "Firma digital: la firma del documento es correcta, pero no se han podido validar los certificados." +msgstr "Firma digital: la firma del documento es correcta, pero no se pudieron validar los certificados." #: include/svx/strings.hrc:1227 msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-12-01 00:33+0000\n" +"PO-Revision-Date: 2019-01-27 09:30+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1543624394.000000\n" +"X-POOTLE-MTIME: 1548581406.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -2243,7 +2243,7 @@ #: sw/inc/strings.hrc:392 msgctxt "STR_INSERT_CHART" msgid "Insert %PRODUCTNAME Chart" -msgstr "Insertar diagrama de %PRODUCTNAME" +msgstr "Insertar gráfico de %PRODUCTNAME" #: sw/inc/strings.hrc:393 msgctxt "STR_INSERTFLY" @@ -2819,7 +2819,7 @@ #: sw/inc/strings.hrc:508 msgctxt "STR_CHART" msgid "chart" -msgstr "diagrama" +msgstr "gráfico" #: sw/inc/strings.hrc:509 msgctxt "STR_NOTE" @@ -13473,7 +13473,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:161 msgctxt "optgeneralpage|updatecharts" msgid "_Charts" -msgstr "_Diagramas" +msgstr "_Gráficos" #: sw/uiconfig/swriter/ui/optgeneralpage.ui:182 msgctxt "optgeneralpage|label2" @@ -13548,7 +13548,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:71 msgctxt "optredlinepage|insert" msgid "Italic" -msgstr "Cursiva" +msgstr "Itálica" #: sw/uiconfig/swriter/ui/optredlinepage.ui:72 msgctxt "optredlinepage|insert" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/swext/mediawiki/help.po libreoffice-l10n-6.1.5~rc2/translations/source/es/swext/mediawiki/help.po --- libreoffice-l10n-6.1.4/translations/source/es/swext/mediawiki/help.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/swext/mediawiki/help.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-03-28 16:46+0200\n" -"PO-Revision-Date: 2018-02-24 01:12+0000\n" +"PO-Revision-Date: 2019-01-21 06:29+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: 1519434733.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548052146.000000\n" #: help.tree 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 "Los estilos de carácter modifican la apariencia de partes de un párrafo. La transformación admite negrita, cursiva, negrita/cursiva, subíndices y superíndices. Todos los tipos de letra de anchura fija se transforman al estilo «máquina de escribir» del wiki." +msgstr "Los estilos de carácter modifican la apariencia de partes de un párrafo. La transformación admite negrita, cursiva, negrita/itálica, subíndices y superíndices. Todos los tipos de letra de anchura fija se transforman al estilo «máquina de escribir» del wiki." #: wikiformats.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/es/xmlsecurity/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/es/xmlsecurity/messages.po --- libreoffice-l10n-6.1.4/translations/source/es/xmlsecurity/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/es/xmlsecurity/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-22 13:17+0200\n" -"PO-Revision-Date: 2018-05-31 23:02+0000\n" +"PO-Revision-Date: 2018-12-16 17:56+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,12 +14,12 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1527807729.000000\n" +"X-POOTLE-MTIME: 1544983007.000000\n" #: xmlsecurity/inc/strings.hrc:25 msgctxt "STR_CERTIFICATE_NOT_VALIDATED" msgid "The certificate could not be validated." -msgstr "No se ha podido validar el certificado." +msgstr "No se pudo validar el certificado." #: xmlsecurity/inc/strings.hrc:26 msgctxt "STR_HEADERBAR" diff -Nru libreoffice-l10n-6.1.4/translations/source/et/dictionaries/tr_TR.po libreoffice-l10n-6.1.5~rc2/translations/source/et/dictionaries/tr_TR.po --- libreoffice-l10n-6.1.4/translations/source/et/dictionaries/tr_TR.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/et/dictionaries/tr_TR.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-10-03 16:01+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-16 22:33+0000\n" +"Last-Translator: Mihkel Tõnnov \n" "Language-Team: LANGUAGE \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547678010.000000\n" #: description.xml msgctxt "" @@ -19,4 +22,4 @@ "dispname\n" "description.text" msgid "Turkish Spellcheck Dictionary" -msgstr "" +msgstr "Türgi keele õigekirjakontrolli sõnastik" diff -Nru libreoffice-l10n-6.1.4/translations/source/et/extensions/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/et/extensions/messages.po --- libreoffice-l10n-6.1.4/translations/source/et/extensions/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/et/extensions/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:14+0100\n" -"PO-Revision-Date: 2018-07-16 14:39+0000\n" +"PO-Revision-Date: 2019-01-16 22:34+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: LANGUAGE \n" "Language: et\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: 1531751944.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547678040.000000\n" #: extensions/inc/command.hrc:29 msgctxt "RID_RSC_ENUM_COMMAND_TYPE" @@ -2092,7 +2092,7 @@ #: extensions/inc/strings.hrc:320 msgctxt "RID_UPDATE_BUBBLE_DOWNLOADING" msgid "Click the icon to pause." -msgstr "" +msgstr "Peatamiseks klõpsa ikooni." #: extensions/inc/strings.hrc:321 msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED" diff -Nru libreoffice-l10n-6.1.4/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-07-31 21:55+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-16 22:32+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\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: 1533074157.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547677979.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -22453,7 +22453,7 @@ "Label\n" "value.text" msgid "~Data" -msgstr "" +msgstr "An~dmed" #: GenericCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Ruumiline mudel..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/et/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/et/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/et/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/et/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-18 21:38+0000\n" +"PO-Revision-Date: 2019-01-16 22:34+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: LANGUAGE \n" "Language: et\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: 1531949911.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547678073.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Serifikaati polnud võimalik valideerida ning vaid osa dokumendist on allkirjastatud." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/et/vcl/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/et/vcl/messages.po --- libreoffice-l10n-6.1.4/translations/source/et/vcl/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/et/vcl/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-08-03 20:47+0000\n" +"PO-Revision-Date: 2019-01-16 22:35+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: LANGUAGE \n" "Language: et\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: 1533329257.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547678115.000000\n" #. To translators: This is the first entry of a sequence of paper size names #: vcl/inc/print.hrc:28 @@ -1259,7 +1259,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1523 msgctxt "printdialog|optionstab" msgid "Options" -msgstr "" +msgstr "Sätted" #: vcl/uiconfig/ui/printerdevicepage.ui:34 msgctxt "printerdevicepage|label7" diff -Nru libreoffice-l10n-6.1.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-04 15:50+0000\n" "Last-Translator: Asier Sarasua Garmendia \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: 1536076237.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D eredua..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/eu/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/eu/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/eu/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/eu/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-02 20:32+0000\n" +"PO-Revision-Date: 2019-01-10 09:59+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: LANGUAGE \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: 1530563565.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547114394.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Ziurtagiria ezin izan da balioztatu eta dokumentua partzialki sinatu da." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-01 15:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23302,15 +23302,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-01-29 19:30+0000\n" "Last-Translator: Harri Pitkänen \n" "Language-Team: Finnish \n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-malli..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-12 09:43+0000\n" "Last-Translator: sophie \n" "Language-Team: ll.org\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=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: 1542015838.000000\n" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modèle 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/fr/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/fr/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/fr/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fr/sfx2/messages.po 2019-01-30 17:56:45.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: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-10 16:38+0000\n" -"Last-Translator: sophie \n" +"PO-Revision-Date: 2018-12-16 21:07+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: LANGUAGE \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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1531240692.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544994463.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Le certificat n'a pas pu être validé et le document n'est que partiellement signé." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/fy/formula/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/fy/formula/messages.po --- libreoffice-l10n-6.1.4/translations/source/fy/formula/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fy/formula/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,15 +3,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-10-09 13:13+0200\n" +"POT-Creation-Date: 2019-01-29 15:19+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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-Generator: LibreOffice\n" #: formula/inc/core_resource.hrc:2258 msgctxt "RID_STRLIST_FUNCTION_NAMES" @@ -482,6 +482,11 @@ #: formula/inc/core_resource.hrc:2351 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORMSDIST" +msgstr "STANDNORMFERD" + +#: formula/inc/core_resource.hrc:2352 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NORM.S.DIST" msgstr "STAND.NORM.FERD" #: formula/inc/core_resource.hrc:2353 @@ -517,6 +522,11 @@ #: formula/inc/core_resource.hrc:2359 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "ERRORTYPE" +msgstr "FLATERTYPE" + +#: formula/inc/core_resource.hrc:2360 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "ERROR.TYPE" msgstr "FLATER.TYPE" #: formula/inc/core_resource.hrc:2361 @@ -812,16 +822,31 @@ #: formula/inc/core_resource.hrc:2419 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORMDIST" +msgstr "NORMFERD" + +#: formula/inc/core_resource.hrc:2420 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NORM.DIST" msgstr "NORM.FERD" #: formula/inc/core_resource.hrc:2421 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "EXPONDIST" +msgstr "EKSPONFERD" + +#: formula/inc/core_resource.hrc:2422 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "EXPON.DIST" msgstr "EKSPON.FERD" #: formula/inc/core_resource.hrc:2423 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "BINOMDIST" +msgstr "BINOMIALEFERD" + +#: formula/inc/core_resource.hrc:2424 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "BINOM.DIST" msgstr "BINOMIALE.FERD" #: formula/inc/core_resource.hrc:2425 @@ -1062,16 +1087,21 @@ #: formula/inc/core_resource.hrc:2472 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "COUNTIF" -msgstr "TAL.AS" +msgstr "TALAS" #: formula/inc/core_resource.hrc:2473 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "SUMIF" -msgstr "SOM.AS" +msgstr "SOMAS" #: formula/inc/core_resource.hrc:2474 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "AVERAGEIF" +msgstr "GEMIDDELDEAS" + +#: formula/inc/core_resource.hrc:2476 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "AVERAGEIFS" msgstr "GEMIDDELDE.AS" #: formula/inc/core_resource.hrc:2478 @@ -1264,23 +1294,38 @@ #: formula/inc/core_resource.hrc:2516 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "HYPGEOMDIST" +msgstr "HYPERGEOFERD" + +#: formula/inc/core_resource.hrc:2517 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "HYPGEOM.DIST" msgstr "HYPERGEO.FERD" #: formula/inc/core_resource.hrc:2518 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "LOGNORMDIST" +msgstr "LOGNORMFERD" + +#: formula/inc/core_resource.hrc:2519 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "LOGNORM.DIST" msgstr "LOG.NORM.FERD" #: formula/inc/core_resource.hrc:2520 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TDIST" -msgstr "T.FERD" +msgstr "TFERD" #: formula/inc/core_resource.hrc:2521 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "T.DIST.2T" msgstr "T.FERD.2T" +#: formula/inc/core_resource.hrc:2522 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "T.DIST" +msgstr "T.FERD" + #: formula/inc/core_resource.hrc:2523 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "T.DIST.RT" @@ -1289,6 +1334,11 @@ #: formula/inc/core_resource.hrc:2524 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "FDIST" +msgstr "FFERDIELING" + +#: formula/inc/core_resource.hrc:2525 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "F.DIST" msgstr "F.FERDIELING" #: formula/inc/core_resource.hrc:2526 @@ -1319,7 +1369,12 @@ #: formula/inc/core_resource.hrc:2531 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NEGBINOMDIST" -msgstr "NEG.BINOM.FERD" +msgstr "NEGBINOMFERD" + +#: formula/inc/core_resource.hrc:2532 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NEGBINOM.DIST" +msgstr "NEGBINOM.FERD" #: formula/inc/core_resource.hrc:2533 msgctxt "RID_STRLIST_FUNCTION_NAMES" @@ -1409,6 +1464,11 @@ #: formula/inc/core_resource.hrc:2550 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "TTEST" +msgstr "TTEST" + +#: formula/inc/core_resource.hrc:2551 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "T.TEST" msgstr "T.TEST" #: formula/inc/core_resource.hrc:2552 @@ -1489,6 +1549,11 @@ #: formula/inc/core_resource.hrc:2567 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "NORMINV" +msgstr "NORMYNF" + +#: formula/inc/core_resource.hrc:2568 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "NORM.INV" msgstr "NORM.YNF" #: formula/inc/core_resource.hrc:2569 @@ -1649,6 +1714,11 @@ #: formula/inc/core_resource.hrc:2600 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "GAMMADIST" +msgstr "GAMMADIST" + +#: formula/inc/core_resource.hrc:2601 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "GAMMA.DIST" msgstr "GAMMA.DIST" #: formula/inc/core_resource.hrc:2602 diff -Nru libreoffice-l10n-6.1.4/translations/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-03 18:32+0000\n" "Last-Translator: Berend Ytsma \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: 1535999550.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D Model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/fy/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/fy/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/fy/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/fy/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-02 17:49+0000\n" +"PO-Revision-Date: 2019-01-11 18:50+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: LANGUAGE \n" "Language: fy\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: 1530553752.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547232651.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "It sertifikaat kin net ferifiearre wurde en it dokumint is mar foar in part ûndertekene." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-05-15 17:42+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Samhail 3T..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-03-14 22:04+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Akerbeltz\n" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modail 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/gl/helpcontent2/source/text/scalc/02.po libreoffice-l10n-6.1.5~rc2/translations/source/gl/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-6.1.4/translations/source/gl/helpcontent2/source/text/scalc/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gl/helpcontent2/source/text/scalc/02.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-08-14 19:04+0000\n" -"Last-Translator: Leandro Regueiro \n" +"PO-Revision-Date: 2019-01-15 22:45+0000\n" +"Last-Translator: Xosé \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: 1502737455.000000\n" +"X-POOTLE-MTIME: 1547592324.000000\n" #: 02130000.xhp msgctxt "" @@ -350,11 +350,7 @@ "bm_id3157909\n" "help.text" msgid "functions;sum function icon formula bar;sum function sum icon AutoSum button, see sum icon" -msgstr "" -"funcións;icona de función suma\n" -"barra de fórmulas;función suma\n" -"icona de suma\n" -"botón de suma automática, vexa icona de suma" +msgstr "funcións;icona de función suma barra de fórmulas;función suma icona de suma botón de suma automática, vexa icona de suma" #: 06030000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/gl/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/gl/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-6.1.4/translations/source/gl/helpcontent2/source/text/swriter/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gl/helpcontent2/source/text/swriter/guide.po 2019-01-30 17:56:45.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: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-06-13 21:40+0000\n" +"PO-Revision-Date: 2019-01-15 22:46+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\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: 1528926013.000000\n" +"X-POOTLE-MTIME: 1547592408.000000\n" #: anchor_object.xhp msgctxt "" @@ -5266,18 +5266,12 @@ msgstr "Crear cartas modelo" #: form_letters_main.xhp -#, fuzzy msgctxt "" "form_letters_main.xhp\n" "bm_id3159257\n" "help.text" msgid "serial letters form letters mail merge letters; creating form letters wizards;form letters" -msgstr "" -"Letras de serie\n" -"cartas de formulario\n" -"combinación de correspondencia\n" -"letras; creación de cartas\n" -"asistentes; cartas" +msgstr "cartas en serie cartas de formulario combinación de correspondencia cartas; creación de cartas de formulario asistentes;cartas de formulario" #: form_letters_main.xhp msgctxt "" @@ -12384,21 +12378,12 @@ msgstr "Editar seccións" #: section_edit.xhp -#, fuzzy msgctxt "" "section_edit.xhp\n" "bm_id3149816\n" "help.text" msgid "sections; editingsections;deletingdeleting;sections editing;sections read-only sections protecting;sections converting;sections, into normal text hiding;sections" -msgstr "" -"táboas; traspor\n" -"traspor táboas\n" -"inverter táboas\n" -"permutar táboas\n" -"columnas; permutar con filas\n" -"filas; permutar con columnas\n" -"táboas; rotar\n" -"rotar; táboas" +msgstr "seccións; editarseccións;eliminareliminar;seccións editar;seccións seccións que só permiten a lectura protexer;seccións converter;seccións, en texto normal agochar;seccións" #: section_edit.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-13 19:37+0000\n" "Last-Translator: Antón Méixome \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: 1539459448.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modelo 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-04 22:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Gujarati <>\n" @@ -23248,15 +23248,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D મોડલ..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-07-15 10:53+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" @@ -23040,15 +23040,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modelo 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-10-26 14:57+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: LANGUAGE \n" @@ -23199,15 +23199,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "דגם תלת־ממדי…" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-02 21:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Hindi \n" @@ -23233,15 +23233,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-14 06: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.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1536907042.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-22 20:36+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542918985.000000\n" #: BaseWindowState.xcu @@ -22906,15 +22906,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-28 19:53+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: 1543434813.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D modell..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/hu/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/hu/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/hu/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/hu/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-10-04 22:45+0000\n" -"Last-Translator: Gábor Kelemen \n" +"PO-Revision-Date: 2019-01-04 12:52+0000\n" +"Last-Translator: Andras Timar \n" "Language-Team: LANGUAGE \n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1538693120.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546606375.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1280,7 +1280,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "A tanúsítványt nem lehet érvényesíteni, és a dokumentum csak részlegesen van aláírva." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/accessibility/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/accessibility/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/accessibility/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/accessibility/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-13 04:20+0000\n" +"Last-Translator: Dafid \n" "Language-Team: LANGUAGE \n" +"Language: id\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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547353231.000000\n" #: accessibility/inc/strings.hrc:25 msgctxt "RID_STR_ACC_NAME_BROWSEBUTTON" @@ -46,7 +49,7 @@ #: accessibility/inc/strings.hrc:31 msgctxt "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL" msgid "Vertical scroll bar" -msgstr "Bila gulir vertikal" +msgstr "Bilah gulir vertikal" #: accessibility/inc/strings.hrc:32 msgctxt "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/cui/messages.po 2019-01-30 17:56:45.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: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-07-30 15:02+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-13 08:50+0000\n" +"Last-Translator: Dary \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1532962959.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547369413.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -295,7 +295,7 @@ #: cui/inc/strings.hrc:78 msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP" msgid "This is where you create a hyperlink to a Web page or FTP server connection." -msgstr "Di sini tempat Anda membuat taut ke halaman Web atau koneksi server FTP." +msgstr "Di sini tempat Anda membuat tautan ke halaman Web atau koneksi server FTP." #: cui/inc/strings.hrc:79 msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP" @@ -606,12 +606,12 @@ #: cui/inc/strings.hrc:143 msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE" msgid "Before record action" -msgstr "Sebelum aksi rekam" +msgstr "Sebelum aksi catat" #: cui/inc/strings.hrc:144 msgctxt "RID_SVXSTR_EVENT_ROWCHANGE" msgid "After record action" -msgstr "Usai aksi rekam" +msgstr "Setelah aksi catat" #: cui/inc/strings.hrc:145 msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/dbaccess/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/dbaccess/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/dbaccess/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/dbaccess/messages.po 2019-01-30 17:56:45.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: 2018-04-23 18:10+0200\n" -"PO-Revision-Date: 2018-05-05 11:19+0000\n" +"PO-Revision-Date: 2019-01-26 04:49+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1525519190.000000\n" +"X-POOTLE-MTIME: 1548478152.000000\n" #: dbaccess/inc/query.hrc:26 msgctxt "RSC_QUERY_OBJECT_TYPE" @@ -902,7 +902,7 @@ #: dbaccess/inc/strings.hrc:204 msgctxt "RID_STR_QUERIES_HELP_TEXT" msgid "Create a query by specifying the filters, input tables, field names, and properties for sorting or grouping." -msgstr "Membuat kuiri dengan menentukan penyaring, tabel masukan, nama kolom, dan properti untuk pengurutan atau pengelompokan." +msgstr "Membuat kueri dengan menentukan penyaring, tabel masukan, nama kolom, dan properti untuk pengurutan atau pengelompokan." #: dbaccess/inc/strings.hrc:205 msgctxt "RID_STR_QUERIES_HELP_TEXT_SQL" @@ -2235,7 +2235,7 @@ #: dbaccess/inc/strings.hrc:474 msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT" msgid "The destination database does not support primary keys." -msgstr "Basis data tujuan tidak mendukung kunci utama." +msgstr "Pangkalan data tujuan tidak mendukung kunci utama." #: dbaccess/inc/strings.hrc:475 msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR" @@ -2869,7 +2869,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:61 msgctxt "generalpagewizard|createDatabase" msgid "Create a n_ew database" -msgstr "&Buat basis data baru" +msgstr "_Buat basis data baru" #: dbaccess/uiconfig/ui/generalpagewizard.ui:88 msgctxt "generalpagewizard|embeddeddbLabel" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/auxiliary.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/auxiliary.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/auxiliary.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/auxiliary.po 2019-01-30 17:56:45.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: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-09-18 13:46+0000\n" -"Last-Translator: Andik Nur Achmad \n" +"PO-Revision-Date: 2019-01-12 14:07+0000\n" +"Last-Translator: Nandaamalia \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1537278371.000000\n" +"X-POOTLE-MTIME: 1547302040.000000\n" #: sbasic.tree msgctxt "" @@ -22,7 +22,7 @@ "07\n" "help_section.text" msgid "Macros and Programming" -msgstr "Makro dan Pemrograman" +msgstr "Makro dan Pemrograman " #: sbasic.tree msgctxt "" @@ -30,7 +30,7 @@ "0701\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "Informasi Umum dan Penggunaan Antar Muka Pengguna" +msgstr "Informasi Umum dan Penggunaan Antar Muka Pengguna " #: sbasic.tree msgctxt "" @@ -38,7 +38,7 @@ "0702\n" "node.text" msgid "Command Reference" -msgstr "Rujukan Perintah" +msgstr "Referensi Perintah" #: sbasic.tree msgctxt "" @@ -46,7 +46,7 @@ "070202\n" "node.text" msgid "Functions, Statements, and Operators" -msgstr "Fungsi, Statement, dan Operator" +msgstr "Fungsi, Statement, dan Operator " #: sbasic.tree msgctxt "" @@ -54,7 +54,7 @@ "070201\n" "node.text" msgid "Alphabetic List of Functions, Statements, and Operators" -msgstr "Daftar Alfabetis dari Fungsi, Statement, dan Operator" +msgstr "Daftar Fungsi, Pernyataan, dan Operator Alfabet" #: sbasic.tree msgctxt "" @@ -62,7 +62,7 @@ "070205\n" "node.text" msgid "Advanced Basic Libraries" -msgstr "Perpustakaan Dasar Lanjutan" +msgstr "Perpustakaan Dasar Lanjutan " #: sbasic.tree msgctxt "" @@ -70,7 +70,7 @@ "0703\n" "node.text" msgid "Guides" -msgstr "Panduan" +msgstr "Panduan " #: scalc.tree msgctxt "" @@ -78,7 +78,7 @@ "08\n" "help_section.text" msgid "Spreadsheets" -msgstr "Lembar Kerja" +msgstr "Spreedsheets" #: scalc.tree msgctxt "" @@ -86,7 +86,7 @@ "0801\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "Informasi Umum dan Penggunaan Antar Muka Pengguna" +msgstr "Informasi Umum dan Penggunaan Antar Muka Pengguna " #: scalc.tree msgctxt "" @@ -94,7 +94,7 @@ "0802\n" "node.text" msgid "Command and Menu Reference" -msgstr "Rujukan Menu dan Perintah" +msgstr "Referensi Menu dan Perintah " #: scalc.tree msgctxt "" @@ -102,7 +102,7 @@ "080201\n" "node.text" msgid "Menus" -msgstr "Menu" +msgstr "Menu " #: scalc.tree msgctxt "" @@ -110,7 +110,7 @@ "080202\n" "node.text" msgid "Toolbars" -msgstr "Bilah alat" +msgstr "Bilah alat " #: scalc.tree msgctxt "" @@ -118,7 +118,7 @@ "0803\n" "node.text" msgid "Functions Types and Operators" -msgstr "Tipe-tipe Fungsi dan Operator" +msgstr "Jenis-jenis Fungsi dan Operator" #: scalc.tree msgctxt "" @@ -126,7 +126,7 @@ "0804\n" "node.text" msgid "Loading, Saving, Importing, and Exporting" -msgstr "Memuat, Menyimpan, Mengimpor, dan Mengekspor" +msgstr "Memuat, Menyimpan, Mengimpor, dan Mengekspor " #: scalc.tree msgctxt "" @@ -134,7 +134,7 @@ "0805\n" "node.text" msgid "Formatting" -msgstr "Memformat" +msgstr "Pemformatan" #: scalc.tree msgctxt "" @@ -142,7 +142,7 @@ "0806\n" "node.text" msgid "Filtering and Sorting" -msgstr "Menyaring dan Mengurut" +msgstr "Penyaringan dan Penyortiran" #: scalc.tree msgctxt "" @@ -150,7 +150,7 @@ "0807\n" "node.text" msgid "Printing" -msgstr "Mencetak" +msgstr "Mencetak " #: scalc.tree msgctxt "" @@ -158,7 +158,7 @@ "0808\n" "node.text" msgid "Data Ranges" -msgstr "Jangkauan Data" +msgstr "Jangkauan Data " #: scalc.tree msgctxt "" @@ -166,7 +166,7 @@ "0809\n" "node.text" msgid "Pivot Table" -msgstr "Tabel Pivot" +msgstr "Tabel Pivot " #: scalc.tree msgctxt "" @@ -174,7 +174,7 @@ "08091\n" "node.text" msgid "Pivot Chart" -msgstr "Bagan Pivot" +msgstr "Skema Pivot" #: scalc.tree msgctxt "" @@ -182,7 +182,7 @@ "0810\n" "node.text" msgid "Scenarios" -msgstr "Skenario" +msgstr "Skenario " #: scalc.tree msgctxt "" @@ -190,7 +190,7 @@ "0811\n" "node.text" msgid "References" -msgstr "Referensi" +msgstr "Referensi " #: scalc.tree msgctxt "" @@ -198,7 +198,7 @@ "0812\n" "node.text" msgid "Viewing, Selecting, Copying" -msgstr "Melihat, Memilh, Menggandakan" +msgstr "Melihat, Memilh, Menyalin" #: scalc.tree msgctxt "" @@ -206,7 +206,7 @@ "0813\n" "node.text" msgid "Formulas and Calculations" -msgstr "Rumus dan Kalkukasi" +msgstr "Rumus dan Perhitungan" #: scalc.tree msgctxt "" @@ -214,7 +214,7 @@ "0814\n" "node.text" msgid "Protection" -msgstr "Perlindungan" +msgstr "Perlindungan " #: scalc.tree msgctxt "" @@ -222,7 +222,7 @@ "0815\n" "node.text" msgid "Miscellaneous" -msgstr "Lain-lain" +msgstr "Lain-lain " #: schart.tree msgctxt "" @@ -230,7 +230,7 @@ "05\n" "help_section.text" msgid "Charts and Diagrams" -msgstr "Grafik dan Diagram" +msgstr "Grafik dan Diagram " #: schart.tree msgctxt "" @@ -238,7 +238,7 @@ "0501\n" "node.text" msgid "General Information" -msgstr "Informasi Umum" +msgstr "Informasi Umum " #: shared.tree msgctxt "" @@ -246,7 +246,7 @@ "01\n" "help_section.text" msgid "Installation" -msgstr "Pemasangan" +msgstr "Pemasangan " #: shared.tree msgctxt "" @@ -254,7 +254,7 @@ "10\n" "help_section.text" msgid "Common Help Topics" -msgstr "Topik Bantuan Umum" +msgstr "Topik Bantuan Umum " #: shared.tree msgctxt "" @@ -262,7 +262,7 @@ "1001\n" "node.text" msgid "General Information" -msgstr "Informasi Umum" +msgstr "Informasi Umum " #: shared.tree msgctxt "" @@ -270,7 +270,7 @@ "1002\n" "node.text" msgid "%PRODUCTNAME and Microsoft Office" -msgstr "%PRODUCTNAME dan Microsoft Office" +msgstr "%PRODUCTNAME dan Microsoft Office " #: shared.tree msgctxt "" @@ -278,7 +278,7 @@ "1004\n" "node.text" msgid "%PRODUCTNAME Options" -msgstr "Opsi %PRODUCTNAME" +msgstr "Opsi %PRODUCTNAME " #: shared.tree msgctxt "" @@ -286,7 +286,7 @@ "1005\n" "node.text" msgid "Wizards" -msgstr "Wisaya" +msgstr "Ahli " #: shared.tree msgctxt "" @@ -294,7 +294,7 @@ "100501\n" "node.text" msgid "Letter Wizard" -msgstr "Wisaya Surat" +msgstr "Panduan Surat" #: shared.tree msgctxt "" @@ -302,7 +302,7 @@ "100502\n" "node.text" msgid "Fax Wizard" -msgstr "Wisaya Faks" +msgstr "Wahana Pandu Faks" #: shared.tree msgctxt "" @@ -310,7 +310,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "Wisaya Agenda" +msgstr "Wisaya Agenda " #: shared.tree msgctxt "" @@ -318,7 +318,7 @@ "100506\n" "node.text" msgid "HTML Export Wizard" -msgstr "Wisaya Ekspor HTML" +msgstr "Wisaya Ekspor HTML " #: shared.tree msgctxt "" @@ -326,7 +326,7 @@ "100510\n" "node.text" msgid "Document Converter Wizard" -msgstr "Wisaya Pengonversi Dokumen" +msgstr "Wisaya Pengonversi Dokumen " #: shared.tree msgctxt "" @@ -334,7 +334,7 @@ "1006\n" "node.text" msgid "Configuring %PRODUCTNAME" -msgstr "Menata %PRODUCTNAME" +msgstr "Mengkonfigurasi %PRODUCTNAME" #: shared.tree msgctxt "" @@ -342,7 +342,7 @@ "1007\n" "node.text" msgid "Working with the User Interface" -msgstr "Bekerja dengan Tampilan" +msgstr "Bekerja dengan Antarmuka Pengguna" #: shared.tree msgctxt "" @@ -350,7 +350,7 @@ "10071\n" "node.text" msgid "Digital Signatures" -msgstr "Tanda tangan Digital" +msgstr "Tanda tangan Digital " #: shared.tree msgctxt "" @@ -358,7 +358,7 @@ "1008\n" "node.text" msgid "Printing, Faxing, Sending" -msgstr "Mencetak, Mengefaks, Mengirim" +msgstr "Mencetak, Mengirim Faks, Mengirim" #: shared.tree msgctxt "" @@ -366,7 +366,7 @@ "1009\n" "node.text" msgid "Drag & Drop" -msgstr "Seret & Jatuhkan" +msgstr "Seret & Jatuhkan " #: shared.tree msgctxt "" @@ -374,7 +374,7 @@ "1010\n" "node.text" msgid "Copy and Paste" -msgstr "Salin dan Tempel" +msgstr "Salin dan Tempel " #: shared.tree msgctxt "" @@ -382,7 +382,7 @@ "1012\n" "node.text" msgid "Charts and Diagrams" -msgstr "Grafik dan Diagram" +msgstr "Grafik dan Diagram " #: shared.tree msgctxt "" @@ -390,7 +390,7 @@ "1013\n" "node.text" msgid "Load, Save, Import, Export" -msgstr "Muat, Simpan, Impor, Ekspor" +msgstr "Muat, Simpan, Impor, Ekspor " #: shared.tree msgctxt "" @@ -398,7 +398,7 @@ "1014\n" "node.text" msgid "Links and References" -msgstr "Taut dan Referensi" +msgstr "Tautan dan Referensi" #: shared.tree msgctxt "" @@ -406,7 +406,7 @@ "1015\n" "node.text" msgid "Document Version Tracking" -msgstr "Pelacakan Versi Dokumen" +msgstr "Pelacakan Versi Dokumen " #: shared.tree msgctxt "" @@ -414,7 +414,7 @@ "1016\n" "node.text" msgid "Labels and Business Cards" -msgstr "Label dan Kartu Nama" +msgstr "Label dan Kartu Nama " #: shared.tree msgctxt "" @@ -422,7 +422,7 @@ "1018\n" "node.text" msgid "Inserting External Data" -msgstr "Menyisipkan Data Eksternal" +msgstr "Menyisipkan Data Eksternal " #: shared.tree msgctxt "" @@ -430,7 +430,7 @@ "1019\n" "node.text" msgid "Automatic Functions" -msgstr "Fungsi Otomatis" +msgstr "Fungsi Otomatis " #: shared.tree msgctxt "" @@ -438,7 +438,7 @@ "1020\n" "node.text" msgid "Searching and Replacing" -msgstr "Mencari dan Mengganti" +msgstr "Mencari dan Mengganti " #: shared.tree msgctxt "" @@ -446,7 +446,7 @@ "1021\n" "node.text" msgid "Guides" -msgstr "Panduan" +msgstr "Panduan " #: shared.tree msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,17 +4,17 @@ "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: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-08-20 12:51+0000\n" -"Last-Translator: anachmad \n" +"PO-Revision-Date: 2019-01-27 07:21+0000\n" +"Last-Translator: Andik Nur Achmad \n" "Language-Team: ID \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1534769486.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548573713.000000\n" #: 01120000.xhp msgctxt "" @@ -22014,7 +22014,7 @@ "par_id3155954\n" "help.text" msgid "CONCATENATE(\"Text1\"; ...; \"Text30\")" -msgstr "" +msgstr "CONCATENATE(\"Teks1\"; ...; \"Teks30\")" #: 04060110.xhp msgctxt "" @@ -22102,7 +22102,7 @@ "par_id3145241\n" "help.text" msgid "Radix indicates the base of the number system. It may be any positive integer between 2 and 36." -msgstr "" +msgstr "Radix menunjukkan basis sistem bilangan. Radix mungkin berupa bilangan bulat positif berapapun antara 2 dan 36." #: 04060110.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/sdraw/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/sdraw/guide.po 2019-01-30 17:56:45.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: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2018-04-07 13:22+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-12 13:21+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1523107336.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547299316.000000\n" #: align_arrange.xhp msgctxt "" @@ -278,7 +278,7 @@ "par_id3154511\n" "help.text" msgid "Define custom colors and add them to the Custom color palette." -msgstr "" +msgstr "Definisikan warna tersuai dan menambahkannya ke palet warna Tersuai." #: color_define.xhp msgctxt "" @@ -294,7 +294,7 @@ "par_id3150327\n" "help.text" msgid "Choose Format - Area, click the Area tab and press the Color button. A table of the predefined palette colors is displayed." -msgstr "" +msgstr "Pilih Format - Wilayah, klik bilik Wilayah dan tekan tombol Warna. Tabel dari palet warna yang ditentukan sebelumnya akan tampil." #: color_define.xhp msgctxt "" @@ -302,7 +302,7 @@ "par_id3154657\n" "help.text" msgid "Custom colors are saved in the Custom color palette." -msgstr "" +msgstr "Warna tersuai disimpan dalam palet warna Tersuai." #: color_define.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_id3166425\n" "help.text" msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the Colors area on the left or the Recent colors in the list below the color table. The color appears in the New preview box to the right of the dialog." -msgstr "" +msgstr "Klik sebuah warna dalam tabel yang mirip dengan yang ingin anda definisikan. Anda dapat memilih warna yang mirip dari semua palet warna yang tersedia pada wilayah Warna di sebelah kiri dari Warna terbaru dalam daftar di bawah tabel warna. Warna akan muncul pada kotak pratinjau Baru di sebelah kanan dialog." #: color_define.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id41522705652544\n" "help.text" msgid "Click the Pick button to open the Pick a Color dialog." -msgstr "" +msgstr "Klik tombol Pilih untuk membuka dialog Pilih Warna." #: color_define.xhp msgctxt "" @@ -326,7 +326,7 @@ "par_id4979705\n" "help.text" msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The RGB values of the selected color are displayed below the preview boxes." -msgstr "" +msgstr "%PRODUCTNAME hanya menggunakan model warna RGB untuk mencetak warna. Nilai RGB dari warna yang dipilih ditampilkan di bawah kotak pratinjau." #: color_define.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.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: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2016-07-14 15:01+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-13 05:03+0000\n" +"Last-Translator: fabela \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1468508517.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547355810.000000\n" #: 00000001.xhp msgctxt "" @@ -70,7 +70,7 @@ "hd_id3147477\n" "help.text" msgid "Toolbars" -msgstr "Baris Alat" +msgstr "Bilah Alat" #: 00000001.xhp msgctxt "" @@ -94,7 +94,7 @@ "par_id1094088\n" "help.text" msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally." -msgstr "" +msgstr "Di dalam tabel kendali, tombol spin adalah bagian dari lembar kerja numerik, lembar kerja tanggal, atau lembar kerja waktu, jika bagian \"tombol spin\" diaktifkan, lembar kerja akan menunjukkan dua simbol dengan dua tanda panah yang berlawanan, baik secara tegak lurus maupun datar." #: 00000001.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_id7493209\n" "help.text" msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols." -msgstr "" +msgstr "Pada IDE Dasar, tombol putar adalah nama yang digunakan untuk ruas numerik bersama dengan dua simbol panah." #: 00000001.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_id3155599\n" "help.text" msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value." -msgstr "" +msgstr "Anda bisa memasukkan nilai numerik kedalam lembar kerja disebelah tombol spin, atau memilih nilai dengan simbol tanda panah keatas dan tanda panah kebawah di tombol spin. Anda juga bisa menekan tombol tanda panah keatas dan tanda panah kebawah di keyboard anda untuk menaikkan atau menurunkan nilainya. Anda bisa menekan tombol Page Up dan Tombol Page Down di keyboard anda untuk mengatur nilai maksimal dan minimal. " #: 00000001.xhp msgctxt "" @@ -118,7 +118,7 @@ "par_id3150264\n" "help.text" msgid "If the field next to the spin button defines numerical values, you can also define a measurement unit, for example, 1 cm or 5 mm, 12 pt or 2\"." -msgstr "" +msgstr "Jika ruas di sebelah tombol putar menetapkan nilai numerik, Anda juga dapat menetapkan satuan ukur, sebagai contoh, 1 cm atau 5 mm, 12 pt atau 2\"." #: 00000001.xhp msgctxt "" @@ -134,7 +134,7 @@ "par_id3148983\n" "help.text" msgid "If you click forward through the dialog, this button is called Next. On the last page the button has the name Convert. The conversion is then performed by clicking the button." -msgstr "" +msgstr "Jika Anda mengklik maju melalui dialog, tombol ini bernama Selanjutnya. Pada halaman terakhir tombol bernamaConvert. Konversi kemudian dilakukan dengan mengklik tombol." #: 00000001.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_id3156553\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 "" +msgstr "Untuk mengaktifkan menu konteks dari sebuah obyek, klik dulu obyek dengan tombol kiri tetikus untuk memilih, dan kemudian, sambil menahan tombol Ctrl atau tombol Command dan Option, klik tombol mouse lagi klik tombol kanan mouse. Beberapa konteks menu dapat dipanggil bahkan jika obyek tidak terpilih. Menu konteks ditemukan hampir dimana-mana di $[officename]." #: 00000001.xhp msgctxt "" @@ -166,7 +166,7 @@ "par_id3153750\n" "help.text" msgid "Deletes the selected element or elements after confirmation." -msgstr "" +msgstr "Menghapus elemen atau banyak elemen yang terpilih setelah konfirmasi." #: 00000001.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_id3155338\n" "help.text" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "" +msgstr "Menghapus elemen atau banyak elemen yang terpilih tanpa memerlukan konfirmasi." #: 00000001.xhp msgctxt "" @@ -190,7 +190,7 @@ "hd_id3148620\n" "help.text" msgid "Metrics" -msgstr "" +msgstr "Metrik" #: 00000001.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id3145345\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 "" +msgstr "Anda dapat memasukkan banyak nilai dalam ruas input dengan satuan ukur. Satuan baku adalah inci. Namun, jika Anda menginginkan sebuah spasi persis 1cm, lalu tulis \"1cm\". Tambahan satuan tersedia sesuai dengan konteks, sebagai contoh, 12 pt untuk 12 point spasi. Jika nilai dari sebuah satuan baru tidak realistik, program menggunakan nilai maksimum atau minimum yang telah ditentukan sebelumnya." #: 00000001.xhp msgctxt "" @@ -246,7 +246,7 @@ "par_id3155341\n" "help.text" msgid "Applies the modified or selected values without closing the dialog." -msgstr "" +msgstr "Terapkan nilai yang telah termodifikasi atau terpilih tanpa menutup dialog." #: 00000001.xhp msgctxt "" @@ -254,7 +254,7 @@ "hd_id3153760\n" "help.text" msgid "Shrink / Maximize" -msgstr "" +msgstr "Susutkan / Maksimalkan" #: 00000001.xhp msgctxt "" @@ -262,7 +262,7 @@ "par_id3153087\n" "help.text" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "Klik ikon Penyusutan untuk mengurangi ukuran dialog dari ruas input. Maka lebih mudah untuk menandai referensi yang diperlukan dalam lembar. Ikon kemudian secara otomatis dikonversi ke Maximum ikon. Klik ini untuk mengembalikan dialog menjadi ukuran aslinya." #: 00000001.xhp msgctxt "" @@ -270,7 +270,7 @@ "par_id3155062\n" "help.text" msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame." -msgstr "" +msgstr "Dialog secara otomatis diminimalkan ketika Anda mengklik ke lembaran dengan tetikus. Segera setelah Anda melepaskan tombol tetikus, dialog dikembalikan dan rentang referensi yang ditentukan dengan tetikus tersorot dalam dokumen dengan sebuah bingkai biru." #: 00000001.xhp msgctxt "" @@ -286,7 +286,7 @@ "par_id3153321\n" "help.text" msgid "Shrink" -msgstr "" +msgstr "Perkecil" #: 00000001.xhp msgctxt "" @@ -310,7 +310,7 @@ "hd_id3156192\n" "help.text" msgid "Preview Field" -msgstr "" +msgstr "Pratinjau Ruas" #: 00000001.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id3154046\n" "help.text" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "Menampilkan pratinjau dari pilihan saat ini." #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: libo 4.3 help shared/01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-12-01 06:26+0000\n" -"Last-Translator: erwan \n" +"PO-Revision-Date: 2019-01-13 11:22+0000\n" +"Last-Translator: Ryuuzake \n" "Language-Team: Indonesian \n" "Language: id\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: 1543645602.000000\n" +"X-POOTLE-MTIME: 1547378553.000000\n" #: 01010000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "New" -msgstr "Baru" +msgstr "Baru " #: 01010000.xhp msgctxt "" @@ -30,7 +30,7 @@ "hd_id3154788\n" "help.text" msgid "New" -msgstr "Baru" +msgstr "Baru " #: 01010000.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Membuat dokumen presentasi baru ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -534,7 +534,7 @@ "par_id3145071\n" "help.text" msgid "Allows you to create labels. Labels are created in a text document. You can print labels using a pre-defined or a custom paper format. " -msgstr "" +msgstr "Memperbolehkan anda untuk membuat label. Label dibuat dalam dokumen teks.Anda dapat mencetak label menggunakan format kertas yang dipra-definisi atau ubahan. " #: 01010200.xhp msgctxt "" @@ -558,7 +558,7 @@ "par_id3154810\n" "help.text" msgid "Creates a new document for editing." -msgstr "" +msgstr "Buat dokumen baru untuk menyunting." #: 01010200.xhp msgctxt "" @@ -566,7 +566,7 @@ "par_id3144438\n" "help.text" msgid "Creating labels" -msgstr "" +msgstr "Membuat label" #: 01010201.xhp msgctxt "" @@ -590,7 +590,7 @@ "par_id3152952\n" "help.text" msgid "Specify the label text and choose the paper size for the label." -msgstr "" +msgstr "Tentukan label text dan pilih ukuran kertas untuk label." #: 01010201.xhp msgctxt "" @@ -622,7 +622,7 @@ "par_id3150838\n" "help.text" msgid "Enter the text that you want to appear on the label. You can also insert a database field." -msgstr "" +msgstr "Masukkan teks yang Anda inginkan untuk ditampilkan pada label. Anda juga dapat menyisipkan ruas pangkalan data." #: 01010201.xhp msgctxt "" @@ -638,7 +638,7 @@ "par_id3153089\n" "help.text" msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten." -msgstr "" +msgstr "Buat label dengan alamat pengiriman Anda. Teks saat ini ada di kotak Teks label yang tertimpa." #: 01010201.xhp msgctxt "" @@ -646,7 +646,7 @@ "par_id3155555\n" "help.text" msgid "To change your return address, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME, and then click on the User Data tab." -msgstr "" +msgstr "Untuk mengubah alamat balasan anda, pilih %PRODUCTNAME - PreferensiPerkakas - Opsi - %PRODUCTNAME, dan lalu klik pada tab Data Pengguna." #: 01010201.xhp msgctxt "" @@ -662,7 +662,7 @@ "par_id3148620\n" "help.text" msgid "Select the database that you want to use as the data source for your label. " -msgstr "" +msgstr "Pilih pangkalan data yang ingin anda gunakan sebagai sumber data untuk label anda. " #: 01010201.xhp msgctxt "" @@ -678,7 +678,7 @@ "par_id3149827\n" "help.text" msgid "Select the database table containing the field(s) that you want to use in your label." -msgstr "" +msgstr "Pilih tabel pangkalan data yang mengandung ruas yang ingin Anda gunakan di label Anda." #: 01010201.xhp msgctxt "" @@ -694,7 +694,7 @@ "par_id3149750\n" "help.text" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "Pilih bidang pangkalan data yang Anda inginkan, kemudian klik panah di sebelah kiri kotak ini untuk menyisipkan bidang ke kotak Label teks." #: 01010201.xhp msgctxt "" @@ -718,7 +718,7 @@ "par_id3149762\n" "help.text" msgid "You can select a pre-defined size format for your label or a size format that you specify on the Format tab." -msgstr "" +msgstr "Anda dapat memilih format ukuran pra-definisi pada label anda atau format ukuran yang anda tentukan pada tab Format." #: 01010201.xhp msgctxt "" @@ -726,7 +726,7 @@ "hd_id3154143\n" "help.text" msgid "Continuous" -msgstr "" +msgstr "Kontinu" #: 01010201.xhp msgctxt "" @@ -782,7 +782,7 @@ "par_id3149235\n" "help.text" msgid "Select the size format that you want to use. The available formats depend on the brand on what you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format." -msgstr "" +msgstr "Pilih format ukuran yang ingin anda gunakan. Format yang tersedia tergantung pada merek apa yang anda pilih pada daftar Merek. JIka anda ingin menggunakan format label ubahan, pilih [User], dan lalu klik tab Format untuk mendefinisikan format." #: 01010201.xhp msgctxt "" @@ -822,7 +822,7 @@ "par_id3153255\n" "help.text" msgid "Set paper formatting options." -msgstr "" +msgstr "Atur opsi pemformatan kertas." #: 01010202.xhp msgctxt "" @@ -830,7 +830,7 @@ "hd_id3159194\n" "help.text" msgid "Horizontal pitch" -msgstr "" +msgstr "Jarak Horisontal" #: 01010202.xhp msgctxt "" @@ -11790,7 +11790,7 @@ "hd_id3151210\n" "help.text" msgid "Fit width and height" -msgstr "" +msgstr "Sesuai lebar dan tinggi" #: 03010000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/06.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/06.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/06.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/06.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-08-10 14:12+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-12 12:47+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" +"Language: id\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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547297245.000000\n" #: youtubevideos.xhp msgctxt "" @@ -19,4 +22,4 @@ "tit\n" "help.text" msgid "YouTube Videos" -msgstr "" +msgstr "Video YouTube" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/explorer/database.po 2019-01-30 17:56:45.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: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2017-07-23 00:56+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-05 09:15+0000\n" +"Last-Translator: Muhammad Harits Syaifulloh \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1500771399.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546679726.000000\n" #: 02000000.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Queries" -msgstr "Kuiri" +msgstr "Kueri" #: 02000000.xhp msgctxt "" @@ -1286,7 +1286,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 "Klik dua kali \"Item_Nomor\" bidang dari \"Item\" tabel. MenampilkanFungsigaris menggunakan menu konteks dan pilih fungsi Hitung." #: 02010100.xhp msgctxt "" @@ -1294,7 +1294,7 @@ "par_id3151009\n" "help.text" msgid "Enter >3 as a criterion and disable the Visible field." -msgstr "" +msgstr "Masukkan >3 sebagai kriteria dan matikan ruas Visible." #: 02010100.xhp msgctxt "" @@ -2158,7 +2158,7 @@ "par_id3155350\n" "help.text" msgid "returns data fields with field contents such as \"Sun\"." -msgstr "" +msgstr "mengembalikan ruas data dengan ruas konten seperti \"Sun\"." #: 02010100.xhp msgctxt "" @@ -2174,7 +2174,7 @@ "par_id3159406\n" "help.text" msgid "returns field names with field content between the values 10 and 20. (The fields can be either text fields or number fields)." -msgstr "" +msgstr "mengembalikan nama ruas dengan konten ruas diantara nilai 10 dan 20. (Ruas tersebut dapat berupa ruas teks atau ruas nomor)." #: 02010100.xhp msgctxt "" @@ -2190,7 +2190,7 @@ "par_id3149712\n" "help.text" msgid "returns field names with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number." -msgstr "" +msgstr "mengembalikan nama ruas dengan nilai 1, 3, 5, 7. Jika nama ruas mengandung nomor item, seperti, Anda dapat membuat kueri yang mengembalikan nilai yang memiliki nomor yang telah ditentukan." #: 02010100.xhp msgctxt "" @@ -2206,7 +2206,7 @@ "par_id3147279\n" "help.text" msgid "returns field names that do not contain \"Smith\"." -msgstr "" +msgstr "mengembalikan nama ruas yang tidak mengandung \"Smith\"." #: 02010100.xhp msgctxt "" @@ -2214,7 +2214,7 @@ "par_id3146073\n" "help.text" msgid "Like Escape Sequence: {escape 'escape-character'}" -msgstr "" +msgstr "Like Escape Sequence: {escape 'escape-character'}" #: 02010100.xhp msgctxt "" @@ -2222,7 +2222,7 @@ "par_id3150661\n" "help.text" msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}" -msgstr "" +msgstr "Contoh: select * from Item where ItemName like 'The *%' {escape '*'}" #: 02010100.xhp msgctxt "" @@ -2230,7 +2230,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 "Contoh tersebut akan memberikan Anda semua entri dimana nama item dimulai dengan 'The *'. Ini artinya Anda juga dapat mencari karakter yang seharusnya ditafsirkan sebagai placeholder, seperti *, ?, _, % atau titik (.)." #: 02010100.xhp msgctxt "" @@ -2238,7 +2238,7 @@ "par_id3150572\n" "help.text" msgid "Outer Join Escape Sequence: {oj outer-join}" -msgstr "" +msgstr "Outer Join Escape Sequence: {oj outer-join}" #: 02010100.xhp msgctxt "" @@ -2246,7 +2246,7 @@ "par_id3156052\n" "help.text" msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" -msgstr "" +msgstr "Contoh: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}" #: 02010100.xhp msgctxt "" @@ -2254,7 +2254,7 @@ "hd_id3153674\n" "help.text" msgid "Querying text fields" -msgstr "" +msgstr "Mengueri ruas teks" #: 02010100.xhp msgctxt "" @@ -2262,7 +2262,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 "Untuk menguery konten dari sebuah ruas teks, Anda harus meletakkan ekspresi diantara kutipan tunggal. Perbedaan antara huruf besar dan huruf kecil tergantung penggunaan pada pangkalan data. LIKE, menurut definisi, adalah case0sensitive (meskipun beberapa pangkalan data tidak menafsirkan ini secara ketat)." #: 02010100.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "hd_id3149302\n" "help.text" msgid "Querying date fields" -msgstr "" +msgstr "Mengueri ruas tanggal" #: 02010100.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "par_id3157998\n" "help.text" msgid "Date fields are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax." -msgstr "" +msgstr "ruas Tanggal direpresentasikan sebagai #Date# untuk mengidentifikasi secara jelas. Konstanta anggal, waktu dan tanggal/waktu (literal) yang digunakan dalam kondisi dapat berupa tipe sintaksis SQL Escape, atau sintaksis bawaan SQL2." #: 02010100.xhp msgctxt "" @@ -2286,7 +2286,7 @@ "par_id31537341\n" "help.text" msgid "Date Type Element" -msgstr "" +msgstr "Jenis Elemen Tanggal" #: 02010100.xhp msgctxt "" @@ -2294,7 +2294,7 @@ "par_id31537342\n" "help.text" msgid "SQL Escape syntax #1 - may be obsolete" -msgstr "" +msgstr "Sintaksis SQL Escape #1 - mungkin sudah usang" #: 02010100.xhp msgctxt "" @@ -2302,7 +2302,7 @@ "par_id31537343\n" "help.text" msgid "SQL Escape syntax #2" -msgstr "" +msgstr "Sintaksis SQL Escape #2" #: 02010100.xhp msgctxt "" @@ -2310,7 +2310,7 @@ "par_id31537344\n" "help.text" msgid "SQL2 syntax" -msgstr "" +msgstr "Sintaksis SQL2" #: 02010100.xhp msgctxt "" @@ -2326,7 +2326,7 @@ "par_id315913112\n" "help.text" msgid "{D'YYYY-MM-DD'}" -msgstr "" +msgstr "{D'YYYY-MM-DD'}" #: 02010100.xhp msgctxt "" @@ -2334,7 +2334,7 @@ "par_id314975313\n" "help.text" msgid "{d 'YYYY-MM-DD'}" -msgstr "" +msgstr "{d 'YYYY-MM-DD'}" #: 02010100.xhp msgctxt "" @@ -2342,7 +2342,7 @@ "par_id314975314\n" "help.text" msgid "'YYYY-MM-DD'" -msgstr "" +msgstr "'YYYY-MM-DD'" #: 02010100.xhp msgctxt "" @@ -2358,7 +2358,7 @@ "par_id31559472\n" "help.text" msgid "{D'HH:MM:SS'}" -msgstr "" +msgstr "{D'HH:MM:SS'}" #: 02010100.xhp msgctxt "" @@ -2366,7 +2366,7 @@ "par_id31559473\n" "help.text" msgid "{t 'HH:MI:SS[.SS]'}" -msgstr "" +msgstr "{t 'HH:MI:SS[.SS]'}" #: 02010100.xhp msgctxt "" @@ -2374,7 +2374,7 @@ "par_id31559474\n" "help.text" msgid "'HH:MI:SS[.SS]'" -msgstr "" +msgstr "'HH:MI:SS[.SS]'" #: 02010100.xhp msgctxt "" @@ -2382,7 +2382,7 @@ "par_id31509641\n" "help.text" msgid "DateTime" -msgstr "" +msgstr "TanggalWaktu" #: 02010100.xhp msgctxt "" @@ -2390,7 +2390,7 @@ "par_id31509642\n" "help.text" msgid "{D'YYYY-MM-DD HH:MM:SS'}" -msgstr "" +msgstr "{D'YYYY-MM-DD HH:MM:SS'}" #: 02010100.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "par_id31509643\n" "help.text" msgid "{ts 'YYYY-MM-DD HH:MI:SS[.SS]'}" -msgstr "" +msgstr "{ts 'YYYY-MM-DD HH:MI:SS[.SS]'}" #: 02010100.xhp msgctxt "" @@ -2406,7 +2406,7 @@ "par_id31509644\n" "help.text" msgid "'YYYY-MM-DD HH:MI:SS[.SS]'" -msgstr "" +msgstr "'YYYY-MM-DD HH:MI:SS[.SS]'" #: 02010100.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_id3149539\n" "help.text" msgid "Example: select {d '1999-12-31'} from world.years" -msgstr "" +msgstr "Contoh: select {d '1999-12-31'} from world.years" #: 02010100.xhp msgctxt "" @@ -2422,7 +2422,7 @@ "par_id3149540\n" "help.text" msgid "Example: select * from mytable where years='1999-12-31'" -msgstr "" +msgstr "Contoh: select * from mytable where years='1999-12-31'" #: 02010100.xhp msgctxt "" @@ -2430,7 +2430,7 @@ "par_id3150510\n" "help.text" msgid "All date expressions (literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)" -msgstr "" +msgstr "Semua ekspresi tanggal (literal) harus diapit dengan tanda kutip. Baca referensi terkait pangkalan data dan konektor yang Anda gunakan untuk perincial lebih lanjut.)" #: 02010100.xhp msgctxt "" @@ -2438,7 +2438,7 @@ "hd_id3150427\n" "help.text" msgid "Querying Yes/No fields" -msgstr "" +msgstr "Mengueri ruas Ya/Tidak" #: 02010100.xhp msgctxt "" @@ -2526,7 +2526,7 @@ "par_id3154179\n" "help.text" msgid "Null" -msgstr "" +msgstr "Null" #: 02010100.xhp msgctxt "" @@ -4030,7 +4030,7 @@ "par_id3154073\n" "help.text" msgid "Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update)." -msgstr "" +msgstr "Memperbarui semua ruas kunci eksternal juka nilai dari kunci utama yang sesuai sudah dimodifikasi (Pembaruan Cascading)." #: 05020100.xhp msgctxt "" @@ -4046,7 +4046,7 @@ "par_id3154123\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty." -msgstr "" +msgstr " Jika kunci utama yang sesuai sudah dimodifikasi, gunakan opsi ini untuk mengatur nilai \"IS NULL\" pada semua ruas kunci eksternal. IS NULL berarti ruas tersebut kosong." #: 05020100.xhp msgctxt "" @@ -4054,7 +4054,7 @@ "hd_id3150448\n" "help.text" msgid "Set default" -msgstr "" +msgstr "Atur bawaan" #: 05020100.xhp msgctxt "" @@ -4062,7 +4062,7 @@ "par_id3151041\n" "help.text" msgid " If the corresponding primary key has been modified, use this option to set a default value to all external key fields. During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties." -msgstr "" +msgstr " Juka kunci utama yang sesuai telah dimodifikasi, gunakan opsi ini untuk mengatur nilai bawaan ke semua ruas kunci eksternal. Selama pembuatan tabel yang sesuai, nilai bawaan dari ruas kunci eksternal akan didefinisikan ketika Anda menetapkan ruas properti." #: 05020100.xhp msgctxt "" @@ -4070,7 +4070,7 @@ "hd_id3125863\n" "help.text" msgid "Delete options" -msgstr "" +msgstr "Opsi Penghapusan" #: 05020100.xhp msgctxt "" @@ -4078,7 +4078,7 @@ "par_id3153193\n" "help.text" msgid "Here you can select options that take effect when a primary key field is deleted." -msgstr "" +msgstr "Di sini Anda dapat memilih opsi yang berlaku ketika kunci utama dihapus." #: 05020100.xhp msgctxt "" @@ -4094,7 +4094,7 @@ "par_id3145785\n" "help.text" msgid "Specifies that the deletion of a primary key will not have any effect on other external key fields." -msgstr "" +msgstr "Menentukan bahwa penghapusan kunci utama tidak akan berpengaruh pada ruas eksternal lainnya." #: 05020100.xhp msgctxt "" @@ -4102,7 +4102,7 @@ "hd_id3154146\n" "help.text" msgid "Delete cascade" -msgstr "" +msgstr "Hapus kaskade" #: 05020100.xhp msgctxt "" @@ -4110,7 +4110,7 @@ "par_id3155309\n" "help.text" msgid "Specifies that all external key fields will be deleted if you delete the corresponding primary key field." -msgstr "" +msgstr "Menentukan bahwa semua kunci utama eksternal akan dihapus jika Anda menghapus ruas kunci utama yang sesuai." #: 05020100.xhp msgctxt "" @@ -4118,7 +4118,7 @@ "par_id3153140\n" "help.text" msgid "When you delete a primary key field with the Delete cascade option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted." -msgstr "" +msgstr "Ketika Anda menghapus ruas kunci utama dengan opsi Hapus kaskade, semua rekaman dari tabel lain yang memiliki kunci ini sebagai kunci asing mereka akan dihapus. Gunakan opsi ini dengan sangat hati-hati; mungkin sebagian besar pangkalan data dapat dihapus." #: 05020100.xhp msgctxt "" @@ -4134,7 +4134,7 @@ "par_id3153363\n" "help.text" msgid "If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields." -msgstr "" +msgstr "Jika Anda menghapus kunci utama yang sesuai, nilai \"IS NULL\" akan ditetapkan ke semua ruas kunci eksternal." #: 05020100.xhp msgctxt "" @@ -4150,7 +4150,7 @@ "par_id3154320\n" "help.text" msgid "If you delete the corresponding primary key, a set value will be set to all external key fields." -msgstr "" +msgstr "Jika Anda menghapus kunci utama yang sesuai, nilai yang ditetapkan akan ditetapkan ke semua ruas kunci eksternal." #: 05030000.xhp msgctxt "" @@ -4158,7 +4158,7 @@ "tit\n" "help.text" msgid "Copy a Table by Drag-and-Drop" -msgstr "" +msgstr "Salin Tabel dengan Seret-dan-Lepas" #: 05030000.xhp msgctxt "" @@ -4166,7 +4166,7 @@ "hd_id3154894\n" "help.text" msgid "Copy Query or Table by Drag-and-Drop" -msgstr "" +msgstr "Salin Kueri atau Tabel dengan Seret-dan-Lepas" #: 05030000.xhp msgctxt "" @@ -4174,7 +4174,7 @@ "bm_id3155535\n" "help.text" msgid "queries; copying (Base)tables in databases; copying database tables (Base)" -msgstr "" +msgstr "kueri; menyalin (Pangkalan)tabel dalam pangkalan data; menyalin tabel pangkalan data (Pangkalan)" #: 05030000.xhp msgctxt "" @@ -4294,7 +4294,7 @@ "par_id3156426\n" "help.text" msgid "Copies only the table definition and not the corresponding data." -msgstr "" +msgstr "Hanya menyalin definisi tabel dan bukan data yang sesuai." #: 05030100.xhp msgctxt "" @@ -4310,7 +4310,7 @@ "par_id3153311\n" "help.text" msgid "If the database supports Views and you selected this option, a query will be created in the table container as a table. This option allows you to view the query results as a normal table view. The table will be filtered in the view with a \"Select\" SQL statement." -msgstr "" +msgstr "Jika pangkalan data mendukung Views dan Anda memilih opsi ini, kueri akan dibuat dalam wadah tabel sebagai tabel. Opsi ini memungkinkan Anda untuk melihat hasil kueri sebagai tampilan tabel normal. Tabel tersebut akan disaring dalam tampilan dengan pernyataan SQL \"Select\"." #: 05030100.xhp msgctxt "" @@ -4326,7 +4326,7 @@ "par_id3166410\n" "help.text" msgid "Appends the data of the table to be copied to an existing table." -msgstr "" +msgstr "Menambahkan data dari tabel untuk disalin pada tabel yang ada." #: 05030100.xhp msgctxt "" @@ -4334,7 +4334,7 @@ "par_id3147275\n" "help.text" msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table." -msgstr "" +msgstr "Definisi tabel harus sama persis sehingga data dapat disalin. Data tidak dapat disalin jika ruas data pada tabel tujuan memiliki format lain daripada ruas data pada tabel sumber." #: 05030100.xhp msgctxt "" @@ -4350,7 +4350,7 @@ "par_id3153252\n" "help.text" msgid "If the data cannot be attached, you will see a list of fields in the Column Info dialog whose data cannot be copied. If you confirm this dialog with OK, only the data that does not appear in the list will be attached." -msgstr "" +msgstr "Jika data tidak dapat dilampirkan, Anda akan melihat daftar dari ruas pada dialog Kolom Pemberitahuan yang dtanya tidak dapat disalin. Jika Anda mengonfirmasi dialog ini dengan OK, hanya data yang tidak muncuk pada daftar yang akan dilampirkan." #: 05030100.xhp msgctxt "" @@ -4358,7 +4358,7 @@ "par_id3158430\n" "help.text" msgid "If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table." -msgstr "" +msgstr "Jika ruas dari tabel sasaran memiliki panjang ruas yang lebih kecil daripada di tabel sumber ketika data akan dilampirkan, ruas sumber data akan secara otomatis dipotong agar sesuai dengan panjang dari tabel sasaran." #: 05030100.xhp msgctxt "" @@ -4382,7 +4382,7 @@ "par_id3155922\n" "help.text" msgid "Automatically generates a primary key data field and fills it with values. You should always use this field, since a primary key must always be available in order to edit the table." -msgstr "" +msgstr "Secara otomatis menghasilkan kunci utama ruas data dan mengisinya dengan nilai. Anda harus selalu menggunakan ruas ini, karena kunci utama harus tersedia untuk mengedit tabel." #: 05030100.xhp msgctxt "" @@ -4398,7 +4398,7 @@ "par_id3156343\n" "help.text" msgid "Specifies a name for the primary key generated. This name is optional." -msgstr "" +msgstr "Menentukan nama untuk kunci utama yang dihasilkan. Nama ini adalah opsional." #: 05030100.xhp msgctxt "" @@ -4574,7 +4574,7 @@ "par_id3149811\n" "help.text" msgid "Select a field type." -msgstr "" +msgstr "Pilih tipe ruas." #: 05030300.xhp msgctxt "" @@ -4590,7 +4590,7 @@ "par_id3155449\n" "help.text" msgid "Enter the number of characters for the data field." -msgstr "" +msgstr "Masukkan nomor dari karakter untuk suas data." #: 05030300.xhp msgctxt "" @@ -4622,7 +4622,7 @@ "par_id3147620\n" "help.text" msgid "Select the default value for a Yes/No field." -msgstr "" +msgstr "Pilih nilau bawaan untuk ruas Yes/No." #: 05030300.xhp msgctxt "" @@ -4638,7 +4638,7 @@ "par_id3153561\n" "help.text" msgid "$[officename] can automatically recognize field contents when you copy database tables by drag and drop." -msgstr "" +msgstr "$[officename] dapat secara otomatis mengenali konten ruas ketika Anda menyalin tabel pangkalan data dengan seret dan letak." #: 05030300.xhp msgctxt "" @@ -4646,7 +4646,7 @@ "hd_id3156023\n" "help.text" msgid "(max.) lines" -msgstr "" +msgstr "(maksimal) baris" #: 05030300.xhp msgctxt "" @@ -4654,7 +4654,7 @@ "par_id3155923\n" "help.text" msgid "Enter the number of lines to use for automatic type recognition." -msgstr "" +msgstr "Masukkan nomor baris untuk menggunakan pengenalan tipe secara otomatis." #: 05030300.xhp msgctxt "" @@ -4710,7 +4710,7 @@ "par_id3145071\n" "help.text" msgid "Lists the data fields in the source table. To include a data field from the source table in the destination table, select the check box in front of the data field name. To map the contents of a data field in the source table to a different data field in the destination table, click the data field in the source table list, and then click the up or down arrow. To include all of the source data fields in the destination table, click All." -msgstr "" +msgstr "Daftar ruas data pada tabel sumber. Untuk memasukkan ruas data dari tabel sumber pada tabel tujuan, pilih kotak centang di depan nama ruas data. Untuk memetakan konten ruas data pada tabel sumber ke ruas data yang berbeda pada tabel tujuan, klik ruas data pada daftar tabe sumber, dan kemudian klik panah naik atau turun. Untuk memasukkan semua ruas sumber data pada tabel sujuan, klik Semua." #: 05030400.xhp msgctxt "" @@ -4726,7 +4726,7 @@ "par_id3154749\n" "help.text" msgid "Lists the possible data fields in the destination table. Only the data fields that are selected in the source table list will be included the destination table." -msgstr "" +msgstr "Daftar ruas data yang memungkinkan pada tabel tujuan. Hanya ruas data yang dipilih pada daftar tabel sumber yang akan dimasukkan pada tabel tujuan." #: 05030400.xhp msgctxt "" @@ -4742,7 +4742,7 @@ "par_id3155628\n" "help.text" msgid "Moves the selected entry up one position in the list." -msgstr "" +msgstr "Memindah entri yang dipilih ke atas satu posisi dalam daftar." #: 05030400.xhp msgctxt "" @@ -4774,7 +4774,7 @@ "par_id3154514\n" "help.text" msgid "Selects all of the data fields in the list." -msgstr "" +msgstr "Pilih semua ruas data pada daftar." #: 05030400.xhp msgctxt "" @@ -4830,7 +4830,7 @@ "par_id3157898\n" "help.text" msgid "When you create a database table as an administrator, you can use this tab to determine user access, and to edit the data or the table structure." -msgstr "" +msgstr "Ketika Anda membuat tabel pangkalan data sebagai administrator, Anda dapat menggunakan tab ini untuk menentukan akses pengguna, dan untuk mengedit data atau struktur tabel." #: 05040100.xhp msgctxt "" @@ -4838,7 +4838,7 @@ "bm_id3152594\n" "help.text" msgid "access rights for database tables (Base)tables in databases; access rights to (Base)" -msgstr "" +msgstr "hak akses untuk tabel pangkalan data (Base)table dalam pangkalan data; hak akses ke (Base)" #: 05040100.xhp msgctxt "" @@ -4846,7 +4846,7 @@ "par_id3152594\n" "help.text" msgid "If you are not the administrator, you can use the General tab to view your access rights for the selected table." -msgstr "" +msgstr "Jika Anda bukan administrator, Anda dapat menggunakan tab Umum untuk melihat hak akses Anda untuk tabel yang dipilih." #: 05040100.xhp msgctxt "" @@ -4910,7 +4910,7 @@ "par_id3163802\n" "help.text" msgid "Allows a user to read the data." -msgstr "" +msgstr "Mengizinkan pengguna untuk membaca data." #: 05040100.xhp msgctxt "" @@ -4926,7 +4926,7 @@ "par_id3149398\n" "help.text" msgid "Allows a user to insert new data." -msgstr "" +msgstr "Mengizinkan pengguna untuk memasukkan data baru." #: 05040100.xhp msgctxt "" @@ -4942,7 +4942,7 @@ "par_id3158430\n" "help.text" msgid "Allows a user to change data." -msgstr "" +msgstr "Mengizinkan pengguna untuk mengganti data." #: 05040100.xhp msgctxt "" @@ -4958,7 +4958,7 @@ "par_id3155449\n" "help.text" msgid "Allows a user to delete data." -msgstr "" +msgstr "Mengizinkan pengguna untuk menghapus data." #: 05040100.xhp msgctxt "" @@ -4974,7 +4974,7 @@ "par_id3153146\n" "help.text" msgid "Allows a user to change the table structure." -msgstr "" +msgstr "Mengizinkan pengguna untuk mengganti struktur tabel." #: 05040100.xhp msgctxt "" @@ -4990,7 +4990,7 @@ "par_id3154897\n" "help.text" msgid "Allows the user to delete the table structure." -msgstr "" +msgstr "Mengizinkan pengguna untuk menghapus struktur table." #: 05040100.xhp msgctxt "" @@ -5006,7 +5006,7 @@ "par_id3159399\n" "help.text" msgid "Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations." -msgstr "" +msgstr "Mengizinkan pengguna untuk memodifikasi referensi yang ditentukan, contoh, memasukkan relasi baru untuk tabel atau menghapus relasi yang sudah ada." #: 05040200.xhp msgctxt "" @@ -5038,7 +5038,7 @@ "par_id3154422\n" "help.text" msgid "Displays the description for the selected table." -msgstr "" +msgstr "Menampilkan deskripsi untuk tabel yang dipilih." #: 11000002.xhp msgctxt "" @@ -5054,7 +5054,7 @@ "bm_id3155449\n" "help.text" msgid "databases;drag and drop (Base)" -msgstr "" +msgstr "pangkalan data; seret dan letak (Base)" #: 11000002.xhp msgctxt "" @@ -5062,7 +5062,7 @@ "hd_id3151299\n" "help.text" msgid "Data sources in $[officename]" -msgstr "" +msgstr "Sumber data di $[officename]" #: 11000002.xhp msgctxt "" @@ -5070,7 +5070,7 @@ "hd_id3150616\n" "help.text" msgid "Selecting the Address Book" -msgstr "" +msgstr "Memilih Buku Alamat" #: 11000002.xhp msgctxt "" @@ -5078,7 +5078,7 @@ "par_id3153049\n" "help.text" msgid "To select the address book that you want to use, choose Tools - Address Book Source." -msgstr "" +msgstr "Untuk memilih buku alamat yang Anda ingin gunakan, pilih Alat - Sumber Buku Alamat" #: 11000002.xhp msgctxt "" @@ -5086,7 +5086,7 @@ "hd_id3147275\n" "help.text" msgid "Opening a Data Source" -msgstr "" +msgstr "Membuka Sumber Data" #: 11000002.xhp msgctxt "" @@ -5094,7 +5094,7 @@ "par_id3154143\n" "help.text" msgid "To open the data source view, press Ctrl+Shift+F4 in a text, spreadsheet or form document." -msgstr "" +msgstr "Untuk membuka sumber data baru, tekan Ctrl+Shift+F4 dalam text, spreadsheet atau formulir dokumen." #: 11000002.xhp msgctxt "" @@ -5102,7 +5102,7 @@ "par_id3154046\n" "help.text" msgid "To view the contents of a database, click the plus sign (+) in front of the name in the data source view." -msgstr "" +msgstr "Untuk melihat konten dari pangkalan data, klik tanda tambah (+) di depan nama dari tampilan sumber data." #: 11020000.xhp msgctxt "" @@ -5126,7 +5126,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 "" +msgstr "Menentukan pengaturan untuk ODBC pangkalan data. Ini termasuk akses pengguna data Anda, pengaturan pengendara, dan dafinisi fon." #: 11020000.xhp msgctxt "" @@ -5134,7 +5134,7 @@ "hd_id3148642\n" "help.text" msgid "User Name" -msgstr "" +msgstr "Nama Pengguna" #: 11020000.xhp msgctxt "" @@ -5142,7 +5142,7 @@ "par_id3154514\n" "help.text" msgid "Type the user name for accessing the database." -msgstr "" +msgstr "Ketikkan nama pengguna untuk mengakses pangkalan data." #: 11020000.xhp msgctxt "" @@ -5158,7 +5158,7 @@ "par_id3145119\n" "help.text" msgid "Prevents an unauthorized user from accessing the database. You only need to enter the password once per session." -msgstr "" +msgstr "Mencegah yang tidak berhak untuk mengakses pangkalan data. Anda hanya perlu memasukkan sandi sekali per sesi." #: 11020000.xhp msgctxt "" @@ -5174,7 +5174,7 @@ "par_id3143271\n" "help.text" msgid "Use this text field to enter additional optional driver settings if this is necessary." -msgstr "" +msgstr "Gunakan ruas teks ini untuk memasukan opsi tambahan pengaturan penggerak jika ini diperlukan." #: 11020000.xhp msgctxt "" @@ -5270,7 +5270,7 @@ "hd_id3149765\n" "help.text" msgid "Query of generated values" -msgstr "" +msgstr "Kueri dari nilai yang dihasilkan" #: 11020000.xhp msgctxt "" @@ -5278,7 +5278,7 @@ "par_id3145171\n" "help.text" msgid "Enter an SQL statement that returns the last auto-incremented value for the primary key data field. For example:" -msgstr "" +msgstr "Masukkan sebuah pernyataan SQL yang mengembalikan nilai kenaikan otomatis terakhir untuk kunci utama ruas data. Contoh:" #: 11020000.xhp msgctxt "" @@ -5286,7 +5286,7 @@ "par_id3150769\n" "help.text" msgid "SELECT LAST_INSERT_D();" -msgstr "" +msgstr "SELECT LAST_INSERT_D();" #: 11020000.xhp msgctxt "" @@ -5342,7 +5342,7 @@ "par_id3147088\n" "help.text" msgid "Specify the settings for a dBASE database." -msgstr "" +msgstr "Tentukan pengaturan untuk pangkalan data dBASE." #: 11030000.xhp msgctxt "" @@ -5350,7 +5350,7 @@ "par_id3151110\n" "help.text" msgid "To be able to define relations between tables, use JDBC or ODBC from within $[officename]." -msgstr "" +msgstr "Untuk bisa menetapkan relasi diantara tabel, gunakan JDBC atau ODBC dari dalam $[officename]." #: 11030000.xhp msgctxt "" @@ -5358,7 +5358,7 @@ "hd_id3149233\n" "help.text" msgid "Display inactive records" -msgstr "" +msgstr "Menampilkan rekaman yang tidak aktif" #: 11030000.xhp msgctxt "" @@ -5366,7 +5366,7 @@ "par_id3153823\n" "help.text" msgid "Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records." -msgstr "" +msgstr "Menampilkan semua rekaman dalam sebuah berkas, termasuk yang ditandai sebagai terhapus. Jika Anda memilih kotak centang ini, Anda tidak dapat menghapus rekaman." #: 11030000.xhp msgctxt "" @@ -5374,7 +5374,7 @@ "par_id3156023\n" "help.text" msgid "In dBASE format, deleted records remain in the file." -msgstr "" +msgstr "Dalam format dBASE, rekaman yang dihapus tetap ada dalam berkas." #: 11030000.xhp msgctxt "" @@ -5382,7 +5382,7 @@ "par_id3151384\n" "help.text" msgid "To view any changes that you make to the database, close the connection to the database, and then reconnect the database." -msgstr "" +msgstr "Untuk melihat perubahan yang Anda buat pada pangkalan data, tutup sambungan ke pangkalan data, dan kemudian sambungkan kembali pangkalan data tersebut." #: 11030000.xhp msgctxt "" @@ -5446,7 +5446,7 @@ "par_id3152551\n" "help.text" msgid "Select the database table that you want to index." -msgstr "" +msgstr "Pilih tabel pangkalan data yang ingin Anda indeks." #: 11030100.xhp msgctxt "" @@ -5454,7 +5454,7 @@ "hd_id3159233\n" "help.text" msgid "Table Indexes" -msgstr "" +msgstr "Indeks Tabel" #: 11030100.xhp msgctxt "" @@ -5942,7 +5942,7 @@ "par_idN105FA\n" "help.text" msgid "Use the catalog name in SELECT statements" -msgstr "" +msgstr "Gunakan nama katalog untuk pernyataan SELECT" #: dabaadvpropdat.xhp msgctxt "" @@ -5950,7 +5950,7 @@ "par_idN105FE\n" "help.text" msgid "Uses the current data source of the catalog. This option is useful when the ODBC data source is a database server. Do not select this option if the ODBC data source is a dBASE driver." -msgstr "" +msgstr "Menggunakan sumber data saat ini dari katalog. Opsi ini berguna ketika sumber data ODBC adalah server pangkalan data. Jangan memilih opsi ini jika sumber data ODBC adalah sebuah penggerak dBASE." #: dabaadvpropdat.xhp msgctxt "" @@ -5958,7 +5958,7 @@ "par_idN10613\n" "help.text" msgid "Use the schema name in SELECT statements" -msgstr "" +msgstr "Gunakan nama skema pada pernyataan SELECT" #: dabaadvpropdat.xhp msgctxt "" @@ -6006,7 +6006,7 @@ "hd_id1101718\n" "help.text" msgid "Form data input checks for required fields" -msgstr "" +msgstr "Mengecek masukan data pada formulir untuk ruas yang diperlukan" #: dabaadvpropdat.xhp msgctxt "" @@ -6854,7 +6854,7 @@ "hd_id7806329\n" "help.text" msgid "Name of the database" -msgstr "" +msgstr "Nama dari pangkalan data" #: dabapropgen.xhp msgctxt "" @@ -6862,7 +6862,7 @@ "par_id5589159\n" "help.text" msgid "Enter the name of the database." -msgstr "" +msgstr "Masukkan nama dari pangkalan data." #: dabapropgen.xhp msgctxt "" @@ -6870,7 +6870,7 @@ "par_idN105D4\n" "help.text" msgid "Name of the MySQL database" -msgstr "" +msgstr "Nama dari pangkalan data MySQL" #: dabapropgen.xhp msgctxt "" @@ -6878,7 +6878,7 @@ "par_idN105D8\n" "help.text" msgid "Enter the name of the MySQL database that you want to use as a data source." -msgstr "" +msgstr "Masukkan nama dari pangkalan data MySQL yang ingin Anda gunakan untuk sumber data." #: dabapropgen.xhp msgctxt "" @@ -6886,7 +6886,7 @@ "par_idN105DB\n" "help.text" msgid "Name of the Oracle database" -msgstr "" +msgstr "Nama dari pangkalan data Oracle" #: dabapropgen.xhp msgctxt "" @@ -6894,7 +6894,7 @@ "par_idN105DF\n" "help.text" msgid "Enter the name of the Oracle database that you want to use as a data source." -msgstr "" +msgstr "Masukkan nama dari pangkalan data Oracle yang ingin Anda gunakan untuk sumber data." #: dabapropgen.xhp msgctxt "" @@ -7894,7 +7894,7 @@ "par_idN10683\n" "help.text" msgid "The driver for the MySQL database is available on the MySQL web site." -msgstr "" +msgstr "Penggerak untuk pangkalan data MySQL tersedia pada situs web MySQL." #: dabawiz02jdbc.xhp msgctxt "" @@ -7902,7 +7902,7 @@ "par_idN10689\n" "help.text" msgid "The syntax for a MySQL database is:" -msgstr "" +msgstr "Sintaksis untuk pangkalan data MySQL adalah:" #: dabawiz02jdbc.xhp msgctxt "" @@ -7934,7 +7934,7 @@ "par_idN1069D\n" "help.text" msgid "database_name is the name of the database." -msgstr "" +msgstr "nama_pangkalan_data adalah nama dari pangkalan data." #: dabawiz02jdbc.xhp msgctxt "" @@ -7958,7 +7958,7 @@ "par_idN106BB\n" "help.text" msgid "JDBC Driver Class" -msgstr "" +msgstr "Kelas Penggerak JDBC" #: dabawiz02jdbc.xhp msgctxt "" @@ -7966,7 +7966,7 @@ "par_idN106BF\n" "help.text" msgid "Enter the name of the JDBC driver." -msgstr "" +msgstr "Masukkan nama dari penggerak JDBC." #: dabawiz02jdbc.xhp msgctxt "" @@ -7990,7 +7990,7 @@ "par_idN106E4\n" "help.text" msgid "Tests the connection with the current settings." -msgstr "" +msgstr "Uji sambungan dengan pengaturan saat ini." #: dabawiz02jdbc.xhp msgctxt "" @@ -8014,7 +8014,7 @@ "tit\n" "help.text" msgid "LDAP Connection" -msgstr "" +msgstr "Sambungan LDAP" #: dabawiz02ldap.xhp msgctxt "" @@ -8942,7 +8942,7 @@ "par_id8865016\n" "help.text" msgid "Spreadsheet files" -msgstr "" +msgstr "Berkas Spreadsheet" #: main.xhp msgctxt "" @@ -8950,7 +8950,7 @@ "par_id3786736\n" "help.text" msgid "Text files" -msgstr "" +msgstr "Berkas Teks" #: main.xhp msgctxt "" @@ -8958,7 +8958,7 @@ "par_id6747337\n" "help.text" msgid "Address book data" -msgstr "" +msgstr "Data buku alamat" #: main.xhp msgctxt "" @@ -8966,7 +8966,7 @@ "par_idN107C0\n" "help.text" msgid "Using a Database in %PRODUCTNAME" -msgstr "" +msgstr "Menggunakan Pangkalan Data dalam %PRODUCTNAME" #: main.xhp msgctxt "" @@ -8974,7 +8974,7 @@ "par_idN10838\n" "help.text" msgid "To create a new database file, choose File - New - Database." -msgstr "" +msgstr "Untuk membuat pangkalan data baru, pilih Berkas - Baru - Pangkalan Data." #: main.xhp msgctxt "" @@ -8990,7 +8990,7 @@ "par_idN107E7\n" "help.text" msgid "The database file contains queries, reports, and forms for the database as well as a link to the database where the records are stored. Formatting information is also stored in the database file." -msgstr "" +msgstr "Berkas pangkalan data mengandung kueri, laporan, dan formulir untuk pangkalan data serta tautan ke pangkalan data tempat rekaman disimpan. Informasi pemformatam juga disimpan pada berkas pangkalan data." #: main.xhp msgctxt "" @@ -8998,7 +8998,7 @@ "par_idN1084A\n" "help.text" msgid "To open a database file, choose File - Open. In the File type list box, select to view only \"Database documents\". Select a database document and click Open." -msgstr "" +msgstr "Untuk membuka berkas pangkalan data baru, pilih Berkas - Buka. Pada Jenis berkas kotak daftar, pilih untuk hanya melihat \"Dokumen pangkalan data\". Pilih dokumen pangkalan data dan klik Buka." #: main.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/help.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/help.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/shared/help.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/shared/help.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-12 13:00+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" +"Language: id\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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547298016.000000\n" #: browserhelp.xhp msgctxt "" @@ -19,7 +22,7 @@ "tit\n" "help.text" msgid "Help Page Strings" -msgstr "" +msgstr "Kata Halaman Bantuan" #: browserhelp.xhp msgctxt "" @@ -27,7 +30,7 @@ "par_id491525733955136\n" "help.text" msgid "Module" -msgstr "" +msgstr "Modul" #: browserhelp.xhp msgctxt "" @@ -35,7 +38,7 @@ "par_id531525734031068\n" "help.text" msgid "Language" -msgstr "" +msgstr "Bahasa" #: browserhelp.xhp msgctxt "" @@ -43,7 +46,7 @@ "par_id991525734084608\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Isi" #: browserhelp.xhp msgctxt "" @@ -51,7 +54,7 @@ "par_id601525734140935\n" "help.text" msgid "Index" -msgstr "" +msgstr "Indeks" #: browserhelp.xhp msgctxt "" @@ -59,7 +62,7 @@ "par_id191525734190260\n" "help.text" msgid "If this page has been helpful, you can support us!" -msgstr "" +msgstr "Jika halaman ini membantu, anda dapat mendukung kami!" #: browserhelp.xhp msgctxt "" @@ -67,7 +70,7 @@ "par_id881525734289794\n" "help.text" msgid "%PRODUCTNAME %PRODUCTVERSION Help" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION Bantuan" #: browserhelp.xhp msgctxt "" @@ -75,7 +78,7 @@ "par_id421525736799965\n" "help.text" msgid "Click on text to copy to clipboard" -msgstr "" +msgstr "Klik pada teks untuk menyalik ke papan klip" #: browserhelp.xhp msgctxt "" @@ -83,7 +86,7 @@ "par_id31525734624833\n" "help.text" msgid "Select Module" -msgstr "" +msgstr "Pilih Modul" #: browserhelp.xhp msgctxt "" @@ -91,7 +94,7 @@ "par_id1001525734619670\n" "help.text" msgid "Select Language" -msgstr "" +msgstr "Pilih Bahasa" #: browserhelp.xhp msgctxt "" @@ -99,7 +102,7 @@ "par_id91525734616233\n" "help.text" msgid "Search help contents" -msgstr "" +msgstr "Cari Konten Bantuan" #: browserhelp.xhp msgctxt "" @@ -107,7 +110,7 @@ "par_id811525747677263\n" "help.text" msgid "English (USA)" -msgstr "" +msgstr "Inggris (USA)" #: browserhelp.xhp msgctxt "" @@ -115,7 +118,7 @@ "par_id521525747699241\n" "help.text" msgid "Amharic" -msgstr "" +msgstr "Amharik" #: browserhelp.xhp msgctxt "" @@ -123,7 +126,7 @@ "par_id841525747709330\n" "help.text" msgid "Arabic" -msgstr "" +msgstr "Arab" #: browserhelp.xhp msgctxt "" @@ -131,7 +134,7 @@ "par_id371525747715258\n" "help.text" msgid "Asturian" -msgstr "" +msgstr "Asturian" #: browserhelp.xhp msgctxt "" @@ -139,7 +142,7 @@ "par_id91525747756759\n" "help.text" msgid "Bulgarian" -msgstr "" +msgstr "Bulgaria" #: browserhelp.xhp msgctxt "" @@ -147,7 +150,7 @@ "par_id391525747761934\n" "help.text" msgid "Bengali" -msgstr "" +msgstr "Benggala" #: browserhelp.xhp msgctxt "" @@ -155,7 +158,7 @@ "par_id701525747766711\n" "help.text" msgid "Bengali (India)" -msgstr "" +msgstr "Benggala (India)" #: browserhelp.xhp msgctxt "" @@ -163,7 +166,7 @@ "par_id941525747772436\n" "help.text" msgid "Tibetan" -msgstr "" +msgstr "Tibetan" #: browserhelp.xhp msgctxt "" @@ -171,7 +174,7 @@ "par_id241525747783594\n" "help.text" msgid "Bosnian" -msgstr "" +msgstr "Bosnia" #: browserhelp.xhp msgctxt "" @@ -179,7 +182,7 @@ "par_id191525747798511\n" "help.text" msgid "Catalan" -msgstr "" +msgstr "Katalan" #: browserhelp.xhp msgctxt "" @@ -187,7 +190,7 @@ "par_id331525747842279\n" "help.text" msgid "Valencian Catalan" -msgstr "" +msgstr "Valencia Katalan" #: browserhelp.xhp msgctxt "" @@ -195,7 +198,7 @@ "par_id541525747847143\n" "help.text" msgid "Czech" -msgstr "" +msgstr "Czech" #: browserhelp.xhp msgctxt "" @@ -203,7 +206,7 @@ "par_id141525747867126\n" "help.text" msgid "Danish" -msgstr "" +msgstr "Denmark" #: browserhelp.xhp msgctxt "" @@ -211,7 +214,7 @@ "par_id131525747872352\n" "help.text" msgid "German" -msgstr "" +msgstr "Jerman" #: browserhelp.xhp msgctxt "" @@ -219,7 +222,7 @@ "par_id831525747962487\n" "help.text" msgid "Dzongkha" -msgstr "" +msgstr "Bhutan" #: browserhelp.xhp msgctxt "" @@ -227,7 +230,7 @@ "par_id631525747969597\n" "help.text" msgid "Greek" -msgstr "" +msgstr "Yunani" #: browserhelp.xhp msgctxt "" @@ -235,7 +238,7 @@ "par_id371525747976937\n" "help.text" msgid "English (UK)" -msgstr "" +msgstr "Inggris (UK)" #: browserhelp.xhp msgctxt "" @@ -243,7 +246,7 @@ "par_id701525747984877\n" "help.text" msgid "English (SA)" -msgstr "" +msgstr "Inggris (SA)" #: browserhelp.xhp msgctxt "" @@ -251,7 +254,7 @@ "par_id61525747994007\n" "help.text" msgid "Esperanto" -msgstr "" +msgstr "Esperanto" #: browserhelp.xhp msgctxt "" @@ -259,7 +262,7 @@ "par_id811525748006070\n" "help.text" msgid "Spanish" -msgstr "" +msgstr "Spanyol" #: browserhelp.xhp msgctxt "" @@ -267,7 +270,7 @@ "par_id561525748012579\n" "help.text" msgid "Estonian" -msgstr "" +msgstr "Estonia" #: browserhelp.xhp msgctxt "" @@ -275,7 +278,7 @@ "par_id111525748019144\n" "help.text" msgid "Basque" -msgstr "" +msgstr "Basque" #: browserhelp.xhp msgctxt "" @@ -283,7 +286,7 @@ "par_id621525748022811\n" "help.text" msgid "Finnish" -msgstr "" +msgstr "Finlandia" #: browserhelp.xhp msgctxt "" @@ -291,7 +294,7 @@ "par_id861525748027499\n" "help.text" msgid "French" -msgstr "" +msgstr "Perancis" #: browserhelp.xhp msgctxt "" @@ -299,7 +302,7 @@ "par_id661525748030419\n" "help.text" msgid "Galician" -msgstr "" +msgstr "Galasia" #: browserhelp.xhp msgctxt "" @@ -307,7 +310,7 @@ "par_id301525748033370\n" "help.text" msgid "Gujarati" -msgstr "" +msgstr "Gujarat" #: browserhelp.xhp msgctxt "" @@ -315,7 +318,7 @@ "par_id141525748036295\n" "help.text" msgid "Hebrew" -msgstr "" +msgstr "Ibrani" #: browserhelp.xhp msgctxt "" @@ -323,7 +326,7 @@ "par_id531525748040396\n" "help.text" msgid "Hindi" -msgstr "" +msgstr "India" #: browserhelp.xhp msgctxt "" @@ -331,7 +334,7 @@ "par_id901525748044409\n" "help.text" msgid "Croatian" -msgstr "" +msgstr "Kroasia" #: browserhelp.xhp msgctxt "" @@ -339,7 +342,7 @@ "par_id331525748049389\n" "help.text" msgid "Hungarian" -msgstr "" +msgstr "Hungaria" #: browserhelp.xhp msgctxt "" @@ -347,7 +350,7 @@ "par_id21525748084845\n" "help.text" msgid "Icelandic" -msgstr "" +msgstr "Islandia" #: browserhelp.xhp msgctxt "" @@ -355,7 +358,7 @@ "par_id761525748087547\n" "help.text" msgid "Italian" -msgstr "" +msgstr "Italia" #: browserhelp.xhp msgctxt "" @@ -363,7 +366,7 @@ "par_id691525748090324\n" "help.text" msgid "Japanese" -msgstr "" +msgstr "Jepang" #: browserhelp.xhp msgctxt "" @@ -371,7 +374,7 @@ "par_id181525748093242\n" "help.text" msgid "Georgian" -msgstr "" +msgstr "Georgia" #: browserhelp.xhp msgctxt "" @@ -379,7 +382,7 @@ "par_id531525748097320\n" "help.text" msgid "Khmer" -msgstr "" +msgstr "Kamboja" #: browserhelp.xhp msgctxt "" @@ -387,7 +390,7 @@ "par_id641525748100233\n" "help.text" msgid "Korean" -msgstr "" +msgstr "Korea" #: browserhelp.xhp msgctxt "" @@ -395,7 +398,7 @@ "par_id521525748103387\n" "help.text" msgid "Lao" -msgstr "" +msgstr "Laos" #: browserhelp.xhp msgctxt "" @@ -403,7 +406,7 @@ "par_id51525748108130\n" "help.text" msgid "Lithuanian" -msgstr "" +msgstr "Lithuania" #: browserhelp.xhp msgctxt "" @@ -411,7 +414,7 @@ "par_id111525748111334\n" "help.text" msgid "Latvian" -msgstr "" +msgstr "Latvi" #: browserhelp.xhp msgctxt "" @@ -419,7 +422,7 @@ "par_id131525748114674\n" "help.text" msgid "Macedonian" -msgstr "" +msgstr "Makedonia" #: browserhelp.xhp msgctxt "" @@ -427,7 +430,7 @@ "par_id441525748118091\n" "help.text" msgid "Norwegian Bokmål" -msgstr "" +msgstr "Norwegia" #: browserhelp.xhp msgctxt "" @@ -435,7 +438,7 @@ "par_id221525748121057\n" "help.text" msgid "Nepali" -msgstr "" +msgstr "Nepal" #: browserhelp.xhp msgctxt "" @@ -443,7 +446,7 @@ "par_id441525748123904\n" "help.text" msgid "Dutch" -msgstr "" +msgstr "Belanda" #: browserhelp.xhp msgctxt "" @@ -451,7 +454,7 @@ "par_id371525748126784\n" "help.text" msgid "Norwegian Nynorsk" -msgstr "" +msgstr "Norwegia Baru" #: browserhelp.xhp msgctxt "" @@ -459,7 +462,7 @@ "par_id401525748129935\n" "help.text" msgid "Oromo" -msgstr "" +msgstr "Etiopia" #: browserhelp.xhp msgctxt "" @@ -467,7 +470,7 @@ "par_id91525748133349\n" "help.text" msgid "Polish" -msgstr "" +msgstr "Polandia" #: browserhelp.xhp msgctxt "" @@ -475,7 +478,7 @@ "par_id631525748136712\n" "help.text" msgid "Portuguese" -msgstr "" +msgstr "Portugis" #: browserhelp.xhp msgctxt "" @@ -483,7 +486,7 @@ "par_id351525748140239\n" "help.text" msgid "Brazilian Portuguese" -msgstr "" +msgstr "Galisia" #: browserhelp.xhp msgctxt "" @@ -491,7 +494,7 @@ "par_id421525748143274\n" "help.text" msgid "Romanian" -msgstr "" +msgstr "Romania" #: browserhelp.xhp msgctxt "" @@ -499,7 +502,7 @@ "par_id291525748146064\n" "help.text" msgid "Russian" -msgstr "" +msgstr "Rusia" #: browserhelp.xhp msgctxt "" @@ -507,7 +510,7 @@ "par_id91525748149042\n" "help.text" msgid "Sinhala" -msgstr "" +msgstr "Sri Lanka" #: browserhelp.xhp msgctxt "" @@ -515,7 +518,7 @@ "par_id191525748182094\n" "help.text" msgid "Sidama" -msgstr "" +msgstr "Sidama" #: browserhelp.xhp msgctxt "" @@ -523,7 +526,7 @@ "par_id461525748185823\n" "help.text" msgid "Slovak" -msgstr "" +msgstr "Slowakia" #: browserhelp.xhp msgctxt "" @@ -531,7 +534,7 @@ "par_id41525748190004\n" "help.text" msgid "Slovenian" -msgstr "" +msgstr "Slovenia" #: browserhelp.xhp msgctxt "" @@ -539,7 +542,7 @@ "par_id281525748193030\n" "help.text" msgid "Albanian" -msgstr "" +msgstr "Albania" #: browserhelp.xhp msgctxt "" @@ -547,7 +550,7 @@ "par_id481525748203088\n" "help.text" msgid "Swedish" -msgstr "" +msgstr "Swedia" #: browserhelp.xhp msgctxt "" @@ -555,7 +558,7 @@ "par_id191525748206804\n" "help.text" msgid "Tamil" -msgstr "" +msgstr "Tamil" #: browserhelp.xhp msgctxt "" @@ -563,7 +566,7 @@ "par_id391525748210165\n" "help.text" msgid "Tajik" -msgstr "" +msgstr "Tajikistan" #: browserhelp.xhp msgctxt "" @@ -571,7 +574,7 @@ "par_id561525748213759\n" "help.text" msgid "Turkish" -msgstr "" +msgstr "Turki" #: browserhelp.xhp msgctxt "" @@ -579,7 +582,7 @@ "par_id621525748217482\n" "help.text" msgid "Uyghur" -msgstr "" +msgstr "Uighur" #: browserhelp.xhp msgctxt "" @@ -587,7 +590,7 @@ "par_id861525748221057\n" "help.text" msgid "Ukrainian" -msgstr "" +msgstr "Ukrania" #: browserhelp.xhp msgctxt "" @@ -595,7 +598,7 @@ "par_id611525748224412\n" "help.text" msgid "Vietnamese" -msgstr "" +msgstr "Vietnam" #: browserhelp.xhp msgctxt "" @@ -603,7 +606,7 @@ "par_id981525748227614\n" "help.text" msgid "Chinese (Simplified)" -msgstr "" +msgstr "Cina (Disederhanakan)" #: browserhelp.xhp msgctxt "" @@ -611,4 +614,4 @@ "par_id61525748230858\n" "help.text" msgid "Chinese (Traditional)" -msgstr "" +msgstr "Cina (Tradisional)" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/smath/01.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/smath/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/smath/01.po 2019-01-30 17:56:45.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: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-04-06 12:14+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-12 13:07+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1523016845.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547298475.000000\n" #: 02080000.xhp msgctxt "" @@ -2134,7 +2134,7 @@ "par_id3155374\n" "help.text" msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the context menu of the Commands window. Any functions not contained in the Elements pane need to be typed manually in the Commands window." -msgstr "" +msgstr "Pilih sebuah fungsi pada bagian bawah panel Elemen. Fungsi-fungsi ini juga terdapat pada menu konteks jendela Perintah. Fungsi-fungsi yang tidak terdapat pada panel Elemen harus diketik langsung pada jendela Perintah." #: 03090400.xhp msgctxt "" @@ -4094,7 +4094,7 @@ "par_id3147262\n" "help.text" msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the context menu of the Commands window." -msgstr "" +msgstr "Anda dapat memilih dari berbagai opsi untuk pemformatan suatu rumus $[officename] Matematika. Opsi-opsi format tersebut ditampilkan pada bagian bawah panel Elemen. Opsi-opsi ini juga ditampilkan pada menu konteks dari jendela Perintah." #: 03090700.xhp msgctxt "" @@ -4638,7 +4638,7 @@ "par_id3149290\n" "help.text" msgid "After selecting the Set Operations item in the Elements pane, relevant icons will be shown in the lower part of this pane. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window." -msgstr "" +msgstr "Setelah memilih ikon Operasi Himpunan pada panel Elemen, ikon-ikon tambahan akan muncul pada bagian bawah jendela ini. Cukup dengan mengklik salah satu simbol untuk memakainya pada rumus yang sedang disunting dalam jendela Perintah." #: 03090800.xhp msgctxt "" @@ -5246,7 +5246,7 @@ "par_id3153818\n" "help.text" msgid "Symbols with Indices" -msgstr "" +msgstr "Simbol-simbol dengan Indeks" #: 03090902.xhp msgctxt "" @@ -5278,7 +5278,7 @@ "par_id3153912\n" "help.text" msgid "Symbols with Indices" -msgstr "" +msgstr "Simbol-simbol dengan Indeks" #: 03090903.xhp msgctxt "" @@ -5310,7 +5310,7 @@ "par_id3148866\n" "help.text" msgid "Symbols with Indices" -msgstr "" +msgstr "Simbol-simbol dengan indeks" #: 03090904.xhp msgctxt "" @@ -5342,7 +5342,7 @@ "par_id3153915\n" "help.text" msgid "Matrix with varying font sizes" -msgstr "" +msgstr "Matriks dengan berbagai ukuran fon" #: 03090905.xhp msgctxt "" @@ -5374,7 +5374,7 @@ "par_id3153912\n" "help.text" msgid "Matrix" -msgstr "" +msgstr "Matriks" #: 03090906.xhp msgctxt "" @@ -5406,7 +5406,7 @@ "par_id3148866\n" "help.text" msgid "Matrix in bold font" -msgstr "" +msgstr "Matriks dalam fon tebal" #: 03090907.xhp msgctxt "" @@ -5438,7 +5438,7 @@ "par_id3153912\n" "help.text" msgid "Functions" -msgstr "" +msgstr "Fungsi" #: 03090908.xhp msgctxt "" @@ -5470,7 +5470,7 @@ "par_id3148870\n" "help.text" msgid "Square Root" -msgstr "" +msgstr "Akar kuadrat" #: 03090909.xhp msgctxt "" @@ -5510,7 +5510,7 @@ "par_id3151243\n" "help.text" msgid "Integral and Sum Ranges, Font Size" -msgstr "" +msgstr "Integral dan Jumlah Rentang, Ukuran Fon" #: 03090910.xhp msgctxt "" @@ -5542,7 +5542,7 @@ "par_id3148703\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #: 03091100.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/smath/06.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/smath/06.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/smath/06.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/smath/06.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-12 13:17+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" +"Language: id\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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547299074.000000\n" #: screenshots.xhp msgctxt "" @@ -19,7 +22,7 @@ "tit\n" "help.text" msgid "Math screenshots" -msgstr "" +msgstr "Tangkapan layar matematika" #: screenshots.xhp msgctxt "" @@ -27,7 +30,7 @@ "par_id141525570544232\n" "help.text" msgid "Alignment Dialog" -msgstr "" +msgstr "Dialog Perataan" #: screenshots.xhp msgctxt "" @@ -35,7 +38,7 @@ "par_id121525570707303\n" "help.text" msgid "Catalog Dialog" -msgstr "" +msgstr "Dialog Katalog" #: screenshots.xhp msgctxt "" @@ -43,7 +46,7 @@ "par_id71525570710878\n" "help.text" msgid "Font Dialog" -msgstr "" +msgstr "Dialog Fon" #: screenshots.xhp msgctxt "" @@ -51,7 +54,7 @@ "par_id671525570713808\n" "help.text" msgid "Font Size Dialog" -msgstr "" +msgstr "Dialog Ukuran Fon" #: screenshots.xhp msgctxt "" @@ -59,7 +62,7 @@ "par_id891525570718035\n" "help.text" msgid "Font Type Dialog" -msgstr "" +msgstr "Tipe Fon Dialog" #: screenshots.xhp msgctxt "" @@ -67,7 +70,7 @@ "par_id991525570721266\n" "help.text" msgid "Save Default Dialog" -msgstr "" +msgstr "Simpan Dialog Bawaan" #: screenshots.xhp msgctxt "" @@ -75,7 +78,7 @@ "par_id861525570725718\n" "help.text" msgid "Spacing Dialog" -msgstr "" +msgstr "Dialog Pengaturan Jarak" #: screenshots.xhp msgctxt "" @@ -83,4 +86,4 @@ "par_id931525570728897\n" "help.text" msgid "Edit Symbols" -msgstr "" +msgstr "Sunting Simbol" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/swriter/02.po libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-6.1.4/translations/source/id/helpcontent2/source/text/swriter/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po 2019-01-30 17:56:45.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: 2018-03-13 12:11+0100\n" -"PO-Revision-Date: 2017-11-28 10:59+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2019-01-12 13:03+0000\n" +"Last-Translator: Darian Rizaludin \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1511866755.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547298190.000000\n" #: 02110000.xhp msgctxt "" @@ -1518,7 +1518,7 @@ "par_id3150244\n" "help.text" msgid "You can insert various operators in your formula. Choose from the following functions:" -msgstr "" +msgstr "Anda bisa memasukkan berbagai operator dalam rumus anda. Silakan pilih satu dari fungsi berikut ini:" #: 14020000.xhp msgctxt "" @@ -1894,7 +1894,7 @@ "par_id3154263\n" "help.text" msgid "You can choose from the following statistical functions:" -msgstr "" +msgstr "Anda bisa memilih satu dari fungsi statistika berikut ini:" #: 14020000.xhp msgctxt "" @@ -2006,7 +2006,7 @@ "par_id3153226\n" "help.text" msgid "You can choose from the following trigonometric functions:" -msgstr "" +msgstr "Anda bisa memilih satu dari fungsi trigonometrik berikut ini:" #: 14020000.xhp msgctxt "" @@ -2094,7 +2094,7 @@ "par_id3149369\n" "help.text" msgid "Calculates the tangent in radians." -msgstr "" +msgstr "Menghitung tangen dalam radian." #: 14020000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-11-04 04:17+0000\n" -"Last-Translator: Jordan Maulana \n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-13 06:20+0000\n" +"Last-Translator: Imanuel Ronaldo \n" "Language-Team: Indonesian <>\n" "Language: id\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: 1541305076.000000\n" +"X-POOTLE-MTIME: 1547360420.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7475,7 +7475,7 @@ "Label\n" "value.text" msgid "~Master Slide" -msgstr "~Salindia Utama" +msgstr "~Salindia Induk" #: DrawImpressCommands.xcu msgctxt "" @@ -18448,7 +18448,7 @@ "Label\n" "value.text" msgid "~Wizards" -msgstr "~Wahana Pandu" +msgstr "~Wisaya" #: GenericCommands.xcu msgctxt "" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" "value.text" @@ -24163,7 +24154,7 @@ "Label\n" "value.text" msgid "~Sorting and Grouping" -msgstr "Peng~urutan dan Pengelompokan" +msgstr "~Pengurutan dan Pengelompokan" #: ReportCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/sd/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/sd/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/sd/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/sd/messages.po 2019-01-30 17:56:45.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: 2018-11-27 12:27+0100\n" -"PO-Revision-Date: 2018-10-25 08:21+0000\n" -"Last-Translator: Jordan Maulana \n" +"PO-Revision-Date: 2019-01-28 22:46+0000\n" +"Last-Translator: Andik Nur Achmad \n" "Language-Team: LANGUAGE \n" "Language: id\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" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1540455685.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548715589.000000\n" #: sd/inc/DocumentRenderer.hrc:27 msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES" @@ -2475,7 +2475,7 @@ #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:150 msgctxt "bulletsandnumbering|graphics" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sd/uiconfig/sdraw/ui/bulletsandnumbering.ui:173 msgctxt "bulletsandnumbering|position" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-11-04 04:22+0000\n" -"Last-Translator: Jordan Maulana \n" +"PO-Revision-Date: 2019-01-21 13:55+0000\n" +"Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" "Language: id\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: 1541305361.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548078919.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Sertifikat tidak dapat divalidasi dan dokumen hanya ditandatangani sebagian." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" @@ -2786,7 +2786,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:364 msgctxt "startcenter|database_all" msgid "_Base Database" -msgstr "Basis Data _Base" +msgstr "_Pangkalan Data Base" #: sfx2/uiconfig/ui/startcenter.ui:397 msgctxt "startcenter|althelplabel" diff -Nru libreoffice-l10n-6.1.4/translations/source/id/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/id/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/id/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/id/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-11-27 14:51+0100\n" -"Last-Translator: Faqih Yugo Susilo \n" +"PO-Revision-Date: 2019-01-29 15:19+0100\n" +"Last-Translator: Andik Nur Achmad \n" "Language-Team: LANGUAGE \n" "Language: id\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: 1542276856.000000\n" +"X-POOTLE-MTIME: 1548715883.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -1181,7 +1181,7 @@ #: sw/inc/strings.hrc:173 msgctxt "STR_POOLCOLL_TOX_ILLUS1" msgid "Figure Index 1" -msgstr "Gambar Indeks 1" +msgstr "Indeks Ilustrasi 1" #: sw/inc/strings.hrc:174 msgctxt "STR_POOLCOLL_TOX_OBJECTH" @@ -1597,7 +1597,7 @@ #: sw/inc/strings.hrc:262 msgctxt "STR_GRAPHIC_DEFNAME" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:263 msgctxt "STR_OBJECT_DEFNAME" @@ -1889,17 +1889,17 @@ #: sw/inc/strings.hrc:321 msgctxt "STR_EVENT_IMAGE_LOAD" msgid "Image loaded successfully" -msgstr "Gambar sukses dimuat" +msgstr "Citra berhasil dimuat" #: sw/inc/strings.hrc:322 msgctxt "STR_EVENT_IMAGE_ABORT" msgid "Image loading terminated" -msgstr "Pemuatan gambar diakhiri" +msgstr "Pemuatan citra diberhentikan" #: sw/inc/strings.hrc:323 msgctxt "STR_EVENT_IMAGE_ERROR" msgid "Could not load image" -msgstr "Tak bisa memuat gambar" +msgstr "Tidak dapat memuat citra" #: sw/inc/strings.hrc:324 msgctxt "STR_EVENT_FRM_KEYINPUT_A" @@ -1939,7 +1939,7 @@ #: sw/inc/strings.hrc:331 msgctxt "STR_CONTENT_TYPE_GRAPHIC" msgid "Images" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:332 msgctxt "STR_CONTENT_TYPE_OLE" @@ -1974,7 +1974,7 @@ #: sw/inc/strings.hrc:338 msgctxt "STR_CONTENT_TYPE_DRAWOBJECT" msgid "Drawing objects" -msgstr "Objek menggambar" +msgstr "Objek gambar" #: sw/inc/strings.hrc:339 msgctxt "STR_CONTENT_TYPE_POSTIT" @@ -2019,7 +2019,7 @@ #: sw/inc/strings.hrc:347 msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1" msgid "Image 1: This is image 1" -msgstr "Gambar 1: Ini adalah gambar 1" +msgstr "Citra 1: Ini adalah citra 1" #: sw/inc/strings.hrc:348 msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE" @@ -2039,7 +2039,7 @@ #: sw/inc/strings.hrc:351 msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:352 msgctxt "STR_CONTENT_TYPE_SINGLE_OLE" @@ -2428,12 +2428,12 @@ #: sw/inc/strings.hrc:430 msgctxt "STR_REREAD" msgid "Replace Image" -msgstr "Gantikan Gambar" +msgstr "Ganti Gambar" #: sw/inc/strings.hrc:431 msgctxt "STR_DELGRF" msgid "Delete Image" -msgstr "Hapus Gambar" +msgstr "Hapus Citra" #: sw/inc/strings.hrc:432 msgctxt "STR_TABLE_ATTR" @@ -3009,7 +3009,7 @@ #: sw/inc/strings.hrc:549 msgctxt "STR_COMCORE_CANT_SHOW" msgid "Image cannot be displayed." -msgstr "Gambar tak dapat ditampilkan." +msgstr "Citra tidak dapat ditampilkan." #: sw/inc/strings.hrc:550 msgctxt "STR_ERROR_CLPBRD_READ" @@ -3586,7 +3586,7 @@ #: sw/inc/strings.hrc:672 msgctxt "STR_TOX_ILL" msgid "Table of Figures" -msgstr "Tabel Gambar" +msgstr "Tabel Ilustrasi" #: sw/inc/strings.hrc:673 #, c-format @@ -4567,7 +4567,7 @@ #: sw/inc/strings.hrc:889 msgctxt "FLD_STAT_GRF" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:890 msgctxt "FLD_STAT_OBJ" @@ -4951,7 +4951,7 @@ #: sw/inc/strings.hrc:991 msgctxt "FMT_MARK_GRAFIC" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:992 msgctxt "FMT_MARK_OLE" @@ -5922,7 +5922,7 @@ #: sw/inc/strings.hrc:1197 msgctxt "STR_INSERT_GRAPHIC" msgid "Insert Image" -msgstr "Sisip Gambar" +msgstr "Sisipkan Citra" #: sw/inc/strings.hrc:1198 msgctxt "STR_REDLINE_COMMENT" @@ -5983,7 +5983,7 @@ #: sw/inc/strings.hrc:1210 msgctxt "STR_SWBG_GRAPHIC" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/inc/strings.hrc:1211 msgctxt "STR_SWBG_OLE" @@ -7128,7 +7128,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:188 msgctxt "bulletsandnumbering|graphics" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:211 msgctxt "bulletsandnumbering|position" @@ -12031,7 +12031,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8471 msgctxt "notebookbar_compact|ImageMenuButton" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8504 msgctxt "notebookbar_compact|ImageLabel" @@ -12389,7 +12389,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5735 msgctxt "notebookbar_groupedbar_full|GraphicButton" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6166 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10761 @@ -14461,7 +14461,7 @@ #: sw/uiconfig/swriter/ui/picturedialog.ui:8 msgctxt "picturedialog|PictureDialog" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/picturedialog.ui:106 msgctxt "picturedialog|type" @@ -14486,7 +14486,7 @@ #: sw/uiconfig/swriter/ui/picturedialog.ui:197 msgctxt "picturedialog|picture" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/picturedialog.ui:220 msgctxt "picturedialog|crop" @@ -14601,7 +14601,7 @@ #: sw/uiconfig/swriter/ui/printeroptions.ui:47 msgctxt "printeroptions|pictures" msgid "Images and other graphic objects" -msgstr "Gambar dan objek grafik lainnya" +msgstr "Citra dan objek grafik lainnya" #: sw/uiconfig/swriter/ui/printeroptions.ui:64 msgctxt "printeroptions|hiddentext" @@ -15800,7 +15800,7 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:44 msgctxt "statisticsinfopage|label6" msgid "Images:" -msgstr "Gambar:" +msgstr "Citra:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:58 msgctxt "statisticsinfopage|label31" @@ -16145,7 +16145,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:334 msgctxt "templatedialog16|graphics" msgid "Image" -msgstr "Gambar" +msgstr "Citra" #: sw/uiconfig/swriter/ui/templatedialog16.ui:381 msgctxt "templatedialog16|position" diff -Nru libreoffice-l10n-6.1.4/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-31 15:27+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: 1540999675.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Þrívíddarmódel..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/it/editeng/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/it/editeng/messages.po --- libreoffice-l10n-6.1.4/translations/source/it/editeng/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/it/editeng/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-01-25 19:16+0000\n" +"PO-Revision-Date: 2018-12-29 20:02+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: LANGUAGE \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: 1516907781.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546113740.000000\n" #: editeng/uiconfig/ui/spellmenu.ui:12 msgctxt "spellmenu|ignore" @@ -585,7 +585,7 @@ #: include/editeng/editrids.hrc:151 msgctxt "RID_THINTHICK_SMALLGAP" msgid "Double, inside: fine, outside: thick, spacing: small" -msgstr "Doppio, interno: spesso, esterno: sottile, distanza: piccola" +msgstr "Doppio, interno: sottile, esterno: spesso, distanza: piccola" #: include/editeng/editrids.hrc:152 msgctxt "RID_THINTHICK_MEDIUMGAP" diff -Nru libreoffice-l10n-6.1.4/translations/source/it/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/it/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/it/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/it/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.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: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-07-24 20:50+0000\n" +"PO-Revision-Date: 2018-12-16 10:51+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: 1532465456.000000\n" +"X-POOTLE-MTIME: 1544957461.000000\n" #: 00000001.xhp msgctxt "" @@ -2302,7 +2302,7 @@ "par_id3150323\n" "help.text" msgid "A primary key serves as a unique identifier of database fields. The unique identification of database fields is used in relational databases, to access data in other tables. If reference is made to a primary key from another table, this is termed a foreign key." -msgstr "Una chiave primaria serve all'identificazione univoca di un campo database. Questa identificazione univoca di campi database viene adoperata in presenza di database relazionali con cui è possibile accedere da una tabella ai dati di un'altra. Se da un'altra tabella si rimanda a una chiave primaria, questa viene definita chiave secondaria." +msgstr "Una chiave primaria serve all'identificazione univoca di un campo database. Questa identificazione univoca di campi database viene adoperata in presenza di database relazionali con cui è possibile accedere da una tabella ai dati di un'altra. Se da un'altra tabella si rimanda a una chiave primaria, questa viene definita chiave esterna." #: 00000005.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/it/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-12-11 12:40+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-29 12: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: 1544532051.000000\n" +"X-POOTLE-MTIME: 1548764725.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -9050,7 +9050,7 @@ "Label\n" "value.text" msgid "~Snap Guides" -msgstr "Linee ~guida" +msgstr "Linee ~guida di cattura" #: DrawImpressCommands.xcu msgctxt "" @@ -18133,7 +18133,7 @@ "Label\n" "value.text" msgid "~Group..." -msgstr "Ra~gruppa..." +msgstr "Ra~ggruppa..." #: GenericCommands.xcu msgctxt "" @@ -18637,7 +18637,7 @@ "Label\n" "value.text" msgid "Fo~rm" -msgstr "Fo~rmulario" +msgstr "Formu~lario" #: GenericCommands.xcu msgctxt "" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modello in 3D..." - -#: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" "value.text" @@ -27340,7 +27331,7 @@ "Label\n" "value.text" msgid "Center Horizontal" -msgstr "Allinea orizzontale" +msgstr "Centra orizzontalmente" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/it/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/it/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/it/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/it/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-12-12 18:57+0000\n" +"PO-Revision-Date: 2019-01-29 12:24+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: 1544641061.000000\n" +"X-POOTLE-MTIME: 1548764677.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -2746,7 +2746,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:198 msgctxt "startcenter|open_recent" msgid "_Recent Files" -msgstr "File _recenti" +msgstr "File rece_nti" #: sfx2/uiconfig/ui/startcenter.ui:217 msgctxt "startcenter|templates_all" diff -Nru libreoffice-l10n-6.1.4/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-07-12 00:47+0000\n" -"Last-Translator: Takeshi Abe \n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-19 10:45+0000\n" +"Last-Translator: Jun NOGATA \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: 1531356462.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547894735.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -20833,7 +20833,7 @@ "Label\n" "value.text" msgid "Export Dialog" -msgstr "エクスポートダイアログ" +msgstr "ダイアログをエクスポート" #: GenericCommands.xcu msgctxt "" @@ -20842,7 +20842,7 @@ "Label\n" "value.text" msgid "Import Dialog" -msgstr "インポートダイアログ" +msgstr "ダイアログをインポート" #: GenericCommands.xcu msgctxt "" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3Dモデル..." - -#: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" "value.text" @@ -27439,7 +27430,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "毎ページ表示されるヘッダー行" +msgstr "改ページ毎に表示するヘッダー行" #: WriterCommands.xcu msgctxt "" @@ -28906,7 +28897,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "ページまたぎで泣き別れて良い行(~B)" +msgstr "行の途中で改ページする(~B)" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/ja/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/ja/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/ja/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ja/sw/messages.po 2019-01-30 17:56:45.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: 2018-10-09 13:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2018-08-22 01:07+0200\n" +"PO-Revision-Date: 2019-01-29 15:19+0100\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" +"Language: ja\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: LibreOffice\n" +"X-POOTLE-MTIME: 1547893122.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -6730,7 +6733,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:142 msgctxt "asciifilterdialog|label5" msgid "_Paragraph break" -msgstr "段落区切り(_P)" +msgstr "改行コード(_P)" #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:181 msgctxt "asciifilterdialog|crlf" diff -Nru libreoffice-l10n-6.1.4/translations/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-09-13 02:28+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" @@ -23101,15 +23101,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-03 02:05+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23217,15 +23217,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-08-17 08:07+0000\n" "Last-Translator: Muḥend Velqasem \n" "Language-Team: LANGUAGE \n" @@ -22905,15 +22905,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kk/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/kk/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/kk/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kk/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-07-04 15:16+0000\n" +"PO-Revision-Date: 2019-01-09 16:37+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\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: 1530717380.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547051841.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -2178,7 +2178,7 @@ #: cui/uiconfig/ui/aboutdialog.ui:174 msgctxt "aboutdialog|buildIdLink" msgid "See Log: $GITHASH" -msgstr "Логты қараңыз: $GITHASH" +msgstr "Логты қарау: $GITHASH" #: cui/uiconfig/ui/aboutdialog.ui:191 msgctxt "aboutdialog|description" diff -Nru libreoffice-l10n-6.1.4/translations/source/kk/extras/source/autocorr/emoji.po libreoffice-l10n-6.1.5~rc2/translations/source/kk/extras/source/autocorr/emoji.po --- libreoffice-l10n-6.1.4/translations/source/kk/extras/source/autocorr/emoji.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kk/extras/source/autocorr/emoji.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-12-20 08:16+0100\n" -"PO-Revision-Date: 2018-08-09 17:29+0000\n" +"PO-Revision-Date: 2018-12-21 17:36+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: 1533835790.000000\n" +"X-POOTLE-MTIME: 1545413763.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9536,7 +9536,7 @@ "RACING_CAR\n" "LngText.text" msgid "car4" -msgstr "" +msgstr "автомобиль 4" #. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9545,7 +9545,7 @@ "RACING_MOTORCYCLE\n" "LngText.text" msgid "motorcycle" -msgstr "" +msgstr "мотоцикл" #. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9554,7 +9554,7 @@ "REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n" "LngText.text" msgid "finger" -msgstr "" +msgstr "саусақ" #. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9563,7 +9563,7 @@ "RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n" "LngText.text" msgid "spock" -msgstr "" +msgstr "спок" #. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-6.1.4/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-09 15:47+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-12 07:13+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: 1536508065.000000\n" +"X-POOTLE-MTIME: 1547277223.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -22588,7 +22588,7 @@ "Label\n" "value.text" msgid "Fiel~d" -msgstr "Өріс~т" +msgstr "Ө~ріс" #: GenericCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D моделі..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kk/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/kk/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/kk/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kk/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-06 03:59+0000\n" +"PO-Revision-Date: 2019-01-07 12:51+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\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: 1530849560.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546865476.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Сертификатты растау мүмкін емес, және де құжаттың тек бір бөлігіне қолтаңба қойылған." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/kk/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/kk/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/kk/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kk/sw/messages.po 2019-01-30 17:56:45.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: 2018-10-09 13:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2018-08-22 01:07+0200\n" +"PO-Revision-Date: 2019-01-29 15:19+0100\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: LibreOffice\n" +"X-POOTLE-MTIME: 1547477266.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -1173,12 +1176,12 @@ #: sw/inc/strings.hrc:172 msgctxt "STR_POOLCOLL_TOX_ILLUSH" msgid "Figure Index Heading" -msgstr "Суреттер тiзiмінiң тақырыптамасы" +msgstr "Иллюстрациялар тiзiмінiң тақырыптамасы" #: sw/inc/strings.hrc:173 msgctxt "STR_POOLCOLL_TOX_ILLUS1" msgid "Figure Index 1" -msgstr "Суреттер тізімі 1" +msgstr "Иллюстрациялар тізімі 1" #: sw/inc/strings.hrc:174 msgctxt "STR_POOLCOLL_TOX_OBJECTH" @@ -1594,7 +1597,7 @@ #: sw/inc/strings.hrc:262 msgctxt "STR_GRAPHIC_DEFNAME" msgid "Image" -msgstr "Сурет" +msgstr "Бейне" #: sw/inc/strings.hrc:263 msgctxt "STR_OBJECT_DEFNAME" diff -Nru libreoffice-l10n-6.1.4/translations/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-05-25 13:24+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23069,15 +23069,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/km/avmedia/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/km/avmedia/messages.po --- libreoffice-l10n-6.1.4/translations/source/km/avmedia/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/km/avmedia/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-08 07:32+0000\n" +"Last-Translator: Sokhem Khoem \n" "Language-Team: LANGUAGE \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546932722.000000\n" #: avmedia/inc/strings.hrc:25 msgctxt "AVMEDIA_STR_OPEN" @@ -91,12 +94,12 @@ #: avmedia/inc/strings.hrc:40 msgctxt "AVMEDIA_MEDIA_PATH" msgid "Media Path" -msgstr "" +msgstr "ផ្លូវ​មេឌៀ" #: avmedia/inc/strings.hrc:41 msgctxt "AVMEDIA_MEDIA_PATH_DEFAULT" msgid "No Media Selected" -msgstr "" +msgstr "មិនមាន​មេឌៀ​បាន​ជ្រើសរើស​ទេ" #: avmedia/inc/strings.hrc:42 msgctxt "AVMEDIA_STR_INSERTMEDIA_DLG" @@ -104,7 +107,6 @@ msgstr "បញ្ចូល​អូឌីយ៉ូ ឬ​វីដេអូ" #: avmedia/inc/strings.hrc:43 -#, fuzzy msgctxt "AVMEDIA_STR_OPENMEDIA_DLG" msgid "Open Audio or Video" msgstr "បញ្ចូល​អូឌីយ៉ូ ឬ​វីដេអូ" diff -Nru libreoffice-l10n-6.1.4/translations/source/km/basctl/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/km/basctl/messages.po --- libreoffice-l10n-6.1.4/translations/source/km/basctl/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/km/basctl/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-08 07:32+0000\n" +"Last-Translator: Sokhem Khoem \n" "Language-Team: LANGUAGE \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546932771.000000\n" #: basctl/inc/strings.hrc:25 msgctxt "RID_STR_FILTER_ALLFILES" @@ -262,9 +265,8 @@ "You will have to restart the program after this edit.\n" "Continue?" msgstr "" -"អ្នក​ត្រូវ​តែ​ចាប់​ផ្តើម​កម្មវិធី​ឡើង​វិញ បន្ទាប់​ពី​កែ​សម្រួល​វា ។\n" -"\n" -"បន្ត ?" +"អ្នក​នឹង​ត្រូវ​ចាប់ផ្ដើម​កម្មវិធី​ឡើងវិញ បន្ទាប់​ពី​ការ​កែសម្រួល​នេះ។\n" +"បន្ត​មែនទេ?" #: basctl/inc/strings.hrc:75 msgctxt "RID_STR_SEARCHALLMODULES" diff -Nru libreoffice-l10n-6.1.4/translations/source/km/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/km/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/km/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/km/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-08 07:33+0000\n" +"Last-Translator: Sokhem Khoem \n" "Language-Team: LANGUAGE \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546932802.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -6194,7 +6197,6 @@ msgstr "លុប​..." #: cui/uiconfig/ui/iconselectordialog.ui:197 -#, fuzzy msgctxt "iconselectordialog|noteLabel" msgid "" "Note:\n" @@ -6202,7 +6204,8 @@ "Different sized icons will be scaled automatically." msgstr "" "ចំណាំ​ ៖\n" -"​ដើម្បី​ទទួល​បាន​គុណភាព​ល្អ​បំផុត ទំហំរបស់​រូបតំណាង​គួរ​តែ​មាន​ទំហំ​ត្រឹម​ ១៦x១៦ ភីកសែល ។ រូប​តំណាង​ដែល​មាន​ទំហំ​ក្រៅ​ពី​នេះ​នឹង​ត្រូវ​បាន​ធ្វើ​មាត្រ​ដ្ឋាន​ដោយ​ស្វ័យ​ប្រវត្តិ ។" +"​ដើម្បី​ទទួល​បាន​គុណភាព​ល្អ​បំផុត ទំហំរបស់​រូបតំណាង​គួរ​តែ​មាន​ទំហំ​ត្រឹម​ ១៦x១៦ ភីកសែល។\n" +" រូប​តំណាង​ដែល​មាន​ទំហំ​ក្រៅ​ពី​នេះ​នឹង​ត្រូវ​បាន​ធ្វើ​មាត្រ​ដ្ឋាន​ដោយ​ស្វ័យ​ប្រវត្តិ ។" #: cui/uiconfig/ui/insertfloatingframe.ui:18 msgctxt "insertfloatingframe|InsertFloatingFrameDialog" diff -Nru libreoffice-l10n-6.1.4/translations/source/km/extensions/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/km/extensions/messages.po --- libreoffice-l10n-6.1.4/translations/source/km/extensions/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/km/extensions/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-11-19 16:14+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-08 07:33+0000\n" +"Last-Translator: Sokhem Khoem \n" "Language-Team: LANGUAGE \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546932821.000000\n" #: extensions/inc/command.hrc:29 msgctxt "RID_RSC_ENUM_COMMAND_TYPE" @@ -3598,10 +3601,9 @@ msgstr "ជម្រើស​​វាល​​​ស្លាក" #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:88 -#, fuzzy msgctxt "labelselectiondialog|label" msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$." -msgstr "មាន​​វាល​​​វត្ថុ​បញ្ជា​​ដែល​អាច​​ត្រូវ​​បាន​​ប្រើ​​ ជា​​វាល​​​ស្លាក​​​សម្រាប់ ​$control_class$ $control_name$ ។" +msgstr "មាន​​វាល​​​វត្ថុ​បញ្ជា​​ដែល​អាច​​ត្រូវ​​បាន​​ប្រើ​​ ជា​​វាល​​​ស្លាក​​​សម្រាប់ ​$controlclass$ $controlname$ ។" #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:122 #, fuzzy diff -Nru libreoffice-l10n-6.1.4/translations/source/km/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/km/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/km/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/km/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-05-25 13:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Khmer \n" @@ -23236,15 +23236,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "ម៉ូដែល​ 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-05-25 13:27+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23288,15 +23288,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-05-25 13:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Kannada \n" @@ -23258,15 +23258,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D ಮಾದರಿ..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ko/helpcontent2/source/text/scalc/04.po libreoffice-l10n-6.1.5~rc2/translations/source/ko/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-6.1.4/translations/source/ko/helpcontent2/source/text/scalc/04.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ko/helpcontent2/source/text/scalc/04.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-10-04 11:48+0200\n" -"PO-Revision-Date: 2018-04-12 04:09+0000\n" -"Last-Translator: Jihui Choi \n" +"PO-Revision-Date: 2019-01-27 14:44+0000\n" +"Last-Translator: DaeHyun Sung(성대현, 成大鉉) \n" "Language-Team: LANGUAGE \n" "Language: ko\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: 1523506193.000000\n" +"X-POOTLE-MTIME: 1548600266.000000\n" #: 01020000.xhp msgctxt "" @@ -94,7 +94,7 @@ "hd_id3145386\n" "help.text" msgid "Navigating in Spreadsheets" -msgstr "스프레트시트에서 탐색" +msgstr "스프레드시트에서 탐색" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-10 14:12+0000\n" "Last-Translator: Jihui Choi \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: 1536588724.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D 모델..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-07 03:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23280,15 +23280,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-05-25 13:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23280,15 +23280,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 01:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -22914,15 +22914,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 02:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23279,15 +23279,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-08-31 05:42+0000\n" "Last-Translator: phommasy \n" "Language-Team: LANGUAGE \n" @@ -23265,15 +23265,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-25 17:29+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.8\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1540488557.000000\n" @@ -22920,15 +22920,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Trimatis modelis…" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-20 05:42+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-27 19:45+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -14,7 +14,7 @@ "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-POOTLE-MTIME: 1537422164.000000\n" +"X-POOTLE-MTIME: 1548618305.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -20761,7 +20761,7 @@ "Label\n" "value.text" msgid "Donate to LibreOffice" -msgstr "Zietot LibreOffice projektam" +msgstr "Ziedot LibreOffice projektam" #: GenericCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D modelis..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 02:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23283,15 +23283,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-23 12:13+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23260,15 +23260,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 03:04+0000\n" "Last-Translator: ansonjacob \n" "Language-Team: LANGUAGE \n" @@ -23245,15 +23245,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-03-22 22:35+0000\n" "Last-Translator: Bachka \n" "Language-Team: LANGUAGE \n" @@ -23279,15 +23279,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-05-16 09:25+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" @@ -23295,15 +23295,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 03:26+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Marathi \n" @@ -23262,15 +23262,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/my/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/my/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/my/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 03:23+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23232,15 +23232,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-03 17:02+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: 1538586123.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-modell …" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nb/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nb/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/nb/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nb/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-08-09 17:05+0000\n" +"PO-Revision-Date: 2018-12-14 11:49+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: LANGUAGE \n" "Language: nb\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: 1533834304.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544788148.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Sertifikatet kunne ikke verifiseres og dokumentet er bare delvis signert." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-03-02 16:21+0000\n" "Last-Translator: Saroj Dhakal \n" "Language-Team: LANGUAGE \n" @@ -23206,15 +23206,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/nl/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-12-11 12:03+0000\n" +"PO-Revision-Date: 2019-01-11 09:32+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: 1544529835.000000\n" +"X-POOTLE-MTIME: 1547199132.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -6663,7 +6663,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:679 msgctxt "menuassignpage|insertsubmenu" msgid "Insert Submenu" -msgstr "Submenu Invoegen" +msgstr "Submenu invoegen" #: cui/uiconfig/ui/menuassignpage.ui:691 msgctxt "menuassignpage|renameItem" @@ -8503,7 +8503,7 @@ #: cui/uiconfig/ui/optsavepage.ui:338 msgctxt "optsavepage|label5" msgid "ODF format version:" -msgstr "ODF-formaat versie:" +msgstr "ODF-indeling versie:" #: cui/uiconfig/ui/optsavepage.ui:352 msgctxt "optsavepage|saveas_label" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/scalc/00.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/scalc/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-12 14:41+0200\n" -"PO-Revision-Date: 2018-08-20 20:26+0000\n" +"PO-Revision-Date: 2019-01-20 21:22+0000\n" "Last-Translator: vpanter \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: 1534796818.000000\n" +"X-POOTLE-MTIME: 1548019346.000000\n" #: 00000004.xhp msgctxt "" @@ -926,7 +926,7 @@ "par_id3153159\n" "help.text" msgid "Choose Tools - Detective - Refresh Traces." -msgstr "" +msgstr "Kies Extra - Detective - Sporen vernieuwen." #: 00000406.xhp msgctxt "" @@ -934,7 +934,7 @@ "par_id3147397\n" "help.text" msgid "Choose Tools - Detective - AutoRefresh." -msgstr "" +msgstr "Kies Extra - Detective - Automatisch vernieuwen." #: 00000406.xhp msgctxt "" @@ -942,7 +942,7 @@ "par_id3154018\n" "help.text" msgid "Choose Tools - Goal Seek." -msgstr "" +msgstr "Kies Extra - Doel zoeken." #: 00000406.xhp msgctxt "" @@ -950,7 +950,7 @@ "par_id3269142\n" "help.text" msgid "Choose Tools - Solver." -msgstr "" +msgstr "Kies Extra - Oplosser." #: 00000406.xhp msgctxt "" @@ -958,7 +958,7 @@ "par_id8554338\n" "help.text" msgid "Choose Tools - Solver, click Options button." -msgstr "" +msgstr "Kies Extra - Oplosser, knop Opties." #: 00000406.xhp msgctxt "" @@ -966,7 +966,7 @@ "par_id3156277\n" "help.text" msgid "Choose Tools - Scenarios." -msgstr "" +msgstr "Kies Extra - Scenario's." #: 00000406.xhp msgctxt "" @@ -974,7 +974,7 @@ "par_id3149020\n" "help.text" msgid "Choose Tools - Protect Sheet." -msgstr "" +msgstr "Kies Extra - Blad beveiligen." #: 00000406.xhp msgctxt "" @@ -982,7 +982,7 @@ "par_id3154256\n" "help.text" msgid "Choose Tools - Protect Spreadsheet." -msgstr "" +msgstr "Kies Extra - Werkblad beveiligen." #: 00000406.xhp msgctxt "" @@ -990,7 +990,7 @@ "par_id3146919\n" "help.text" msgid "Choose Data - Calculate - Recalculate." -msgstr "" +msgstr "Kies Gegevens - Berekenen - Opnieuw berekenen" #: 00000406.xhp msgctxt "" @@ -1006,7 +1006,7 @@ "par_id3150941\n" "help.text" msgid "Choose Data - Calculate - AutoCalculate." -msgstr "" +msgstr "Kies Gegevens - Berekenen - Automatisch berekenen." #: 00000406.xhp msgctxt "" @@ -1014,7 +1014,7 @@ "par_id3151276\n" "help.text" msgid "Choose Tools - AutoInput." -msgstr "" +msgstr "Kies Extra - AutoInvoer." #: 00000407.xhp msgctxt "" @@ -1038,7 +1038,7 @@ "par_id3147335\n" "help.text" msgid "Choose >View - Split Window." -msgstr "" +msgstr "Kies Beeld - Venster splitsen." #: 00000407.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "par_id3153663\n" "help.text" msgid "Choose View - Freeze Cells - Freeze Rows and Columns." -msgstr "" +msgstr "Kies Beeld - Rijen en kolommen vastzetten." #: 00000412.xhp msgctxt "" @@ -1070,7 +1070,7 @@ "par_id8366954\n" "help.text" msgid "Choose Data - Text to Columns." -msgstr "" +msgstr "Kies Gegevens - Tekst naar kolommen." #: 00000412.xhp msgctxt "" @@ -1078,7 +1078,7 @@ "par_id3147399\n" "help.text" msgid "Choose Data - Define Range." -msgstr "" +msgstr "Kies Gegevens - Bereik definiëren." #: 00000412.xhp msgctxt "" @@ -1086,7 +1086,7 @@ "par_id3145345\n" "help.text" msgid "Choose Data - Select Range." -msgstr "" +msgstr "Kies Gegevens - Bereik selecteren." #: 00000412.xhp msgctxt "" @@ -1094,7 +1094,7 @@ "par_id3150443\n" "help.text" msgid "Choose Data - Sort...." -msgstr "" +msgstr "Kies Gegevens - Sorteren...." #: 00000412.xhp msgctxt "" @@ -1102,7 +1102,7 @@ "par_id3148491\n" "help.text" msgid "Choose Data - Sort - Sort Criteria tab." -msgstr "" +msgstr "Kies Gegevens - Sorteren, tabblad Sorteercriteria." #: 00000412.xhp msgctxt "" @@ -1110,7 +1110,7 @@ "par_id3154516\n" "help.text" msgid "On Standard bar, click" -msgstr "" +msgstr "Op de werkbalk Standaard, klik op" #: 00000412.xhp msgctxt "" @@ -1150,7 +1150,7 @@ "par_id3146984\n" "help.text" msgid "Choose Data - Sort - Options tab." -msgstr "" +msgstr "Kies Gegevens - Sorteren - tabblad Opties." #: 00000412.xhp msgctxt "" @@ -1158,7 +1158,7 @@ "par_id3155308\n" "help.text" msgid "Choose Data - Filter." -msgstr "" +msgstr "Kies Gegevens - Meer Filters." #: 00000412.xhp msgctxt "" @@ -1166,7 +1166,7 @@ "par_id3148646\n" "help.text" msgid "Choose Data - AutoFilter." -msgstr "" +msgstr "Kies Gegevens - AutoFilter." #: 00000412.xhp msgctxt "" @@ -1174,7 +1174,7 @@ "par_id3151113\n" "help.text" msgid "On Tools bar or Table Data bar, click" -msgstr "" +msgstr "Klik op de werkbalk Extra of Tabelgegevens op" #: 00000412.xhp msgctxt "" @@ -1198,7 +1198,7 @@ "par_id3156278\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter... ." -msgstr "" +msgstr "Kies Gegevens - Meer Filters - Speciaal filter...." #: 00000412.xhp msgctxt "" @@ -1206,7 +1206,7 @@ "par_id3153764\n" "help.text" msgid "Choose Data - More Filters - Standard Filter... - Options label." -msgstr "" +msgstr "Kies Gegevens - MeerFilters - Standaardfilter..., knop Opties." #: 00000412.xhp msgctxt "" @@ -1214,7 +1214,7 @@ "par_id3155444\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter... - Options label." -msgstr "" +msgstr "Kies Gegevens - Meer filters - Speciaal filter..., knop Opties." #: 00000412.xhp msgctxt "" @@ -1222,7 +1222,7 @@ "par_id3156382\n" "help.text" msgid "Choose Data - More Filters - Reset Filter." -msgstr "" +msgstr "Kies Gegevens - Meer Filters - Filter terugzetten." #: 00000412.xhp msgctxt "" @@ -1230,7 +1230,7 @@ "par_id3155961\n" "help.text" msgid "On Table Data bar, click Reset Filter/Sort." -msgstr "" +msgstr "Klik op Filter/sortering verwijderen op de werkbalk Tabelgegevens." #: 00000412.xhp msgctxt "" @@ -1254,7 +1254,7 @@ "par_id3152778\n" "help.text" msgid "Choose Data - More Filter - Hide AutoFilter." -msgstr "" +msgstr "Kies Gegevens - Meer Filters - AutoFilter verbergen." #: 00000412.xhp msgctxt "" @@ -1262,7 +1262,7 @@ "par_id3166424\n" "help.text" msgid "Choose Data - Subtotals." -msgstr "" +msgstr "Kies Gegevens - Subtotalen." #: 00000412.xhp msgctxt "" @@ -1270,7 +1270,7 @@ "par_id3154574\n" "help.text" msgid "Choose Data - Subtotals - 1st, 2nd, 3rd Group tabs." -msgstr "" +msgstr "Kies Gegevens - Subtotalen, tabblad Groepering 1, Groepering 2, Groepering3." #: 00000412.xhp msgctxt "" @@ -1278,7 +1278,7 @@ "par_id3151277\n" "help.text" msgid "Choose Data - Subtotals - Options tab." -msgstr "" +msgstr "Kies Gegevens - Subtotalen, tabblad Opties." #: 00000412.xhp msgctxt "" @@ -1286,7 +1286,7 @@ "par_id3145133\n" "help.text" msgid "Choose Data - Validity." -msgstr "" +msgstr "Kies Gegevens - Geldigheid." #: 00000412.xhp msgctxt "" @@ -1294,7 +1294,7 @@ "par_id3152992\n" "help.text" msgid "Menu Data - Validity - Criteria tab." -msgstr "" +msgstr "Kies Gegevens - Geldigheid, tabblad Criteria." #: 00000412.xhp msgctxt "" @@ -1302,7 +1302,7 @@ "par_id3150367\n" "help.text" msgid "Choose Data - Validity - Input Help tab." -msgstr "" +msgstr "Kies Gegevens - Geldigheid, tabblad Invoerhulp." #: 00000412.xhp msgctxt "" @@ -1310,7 +1310,7 @@ "par_id3154486\n" "help.text" msgid "Choose Data - Validity - Error Alert tab." -msgstr "" +msgstr "Kies Gegevens - Geldigheid, tabblad Foutmelding." #: 00000412.xhp msgctxt "" @@ -1318,7 +1318,7 @@ "par_id3146978\n" "help.text" msgid "Choose Data - Multiple Operations." -msgstr "" +msgstr "Kies Gegevens - Meerdere bewerkingen." #: 00000412.xhp msgctxt "" @@ -1326,7 +1326,7 @@ "par_id3155809\n" "help.text" msgid "Choose Data - Consolidate." -msgstr "" +msgstr "Kies Gegevens - Consolideren." #: 00000412.xhp msgctxt "" @@ -1334,7 +1334,7 @@ "par_id3148701\n" "help.text" msgid "Choose Data - Group and Outline." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken." #: 00000412.xhp msgctxt "" @@ -1342,7 +1342,7 @@ "par_id3153815\n" "help.text" msgid "Choose Data - Group and Outline - Hide Details." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Details verbergen." #: 00000412.xhp msgctxt "" @@ -1350,7 +1350,7 @@ "par_id3159223\n" "help.text" msgid "Choose Data - Group and Outline - Show Details." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Details weergeven." #: 00000412.xhp msgctxt "" @@ -1358,7 +1358,7 @@ "par_id3146870\n" "help.text" msgid "Choose Data - Group and Outline - Group." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Groeperen." #: 00000412.xhp msgctxt "" @@ -1398,7 +1398,7 @@ "par_id3146781\n" "help.text" msgid "Choose Data - Group and Outline - Ungroup." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Groepering opheffen." #: 00000412.xhp msgctxt "" @@ -1438,7 +1438,7 @@ "par_id3153008\n" "help.text" msgid "Choose Data - Group and Outline - AutoOutline." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - AutoOverzicht." #: 00000412.xhp msgctxt "" @@ -1446,7 +1446,7 @@ "par_id3154709\n" "help.text" msgid "Choose Data - Group and Outline - Remove." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Overzicht verwijderen." #: 00000412.xhp msgctxt "" @@ -1454,7 +1454,7 @@ "par_id1774346\n" "help.text" msgid "Choose Data - Group and Outline - Show Details (for some pivot tables)." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Details weergeven (voor sommige draaitabellen)." #: 00000412.xhp msgctxt "" @@ -1462,7 +1462,7 @@ "par_id3155759\n" "help.text" msgid "Choose Data - Pivot Table." -msgstr "" +msgstr "Kies Gegevens - Draaitabel - Maak." #: 00000412.xhp msgctxt "" @@ -1470,7 +1470,7 @@ "par_id3154625\n" "help.text" msgid "Choose Insert - Pivot Table." -msgstr "" +msgstr "Kies Gegevens - Draaitabel." #: 00000412.xhp msgctxt "" @@ -1478,7 +1478,7 @@ "par_id3147558\n" "help.text" msgid "Choose Insert - Pivot Table, in the Select Source dialog choose the option Data source registered in $[officename]." -msgstr "" +msgstr "Kies Invoegen - Draaitabel. In het dialoogvenster Bron selecteren, kies de optie In $[officename] In LibreOffice aangemelde gegevensbron." #: 00000412.xhp msgctxt "" @@ -1486,7 +1486,7 @@ "par_id3153297\n" "help.text" msgid "Choose Insert - Pivot Table, in the Select Source dialog choose the option Current selection." -msgstr "" +msgstr "Kies Invoegen - Draaitabel. In het dialoogvenster Bron selecteren, kies de optie Huidige selectie." #: 00000412.xhp msgctxt "" @@ -1494,7 +1494,7 @@ "par_id3145118\n" "help.text" msgid "Choose Insert - Pivot Table, in the Select Source dialog choose the option Data source registered in $[officename], click OK to see Select Data Source dialog." -msgstr "" +msgstr "Kies Invoegen - Draaitabel. In het dialoogvenster Bron selecteren kiest u de optie In $[officename] In LibreOffice aangemelde gegevensbron. Klik op OK om het dialoogvenster Gegevensbron selecteren op te roepen." #: 00000412.xhp msgctxt "" @@ -1502,7 +1502,7 @@ "par_id3153294\n" "help.text" msgid "Choose Data - Pivot Table - Refresh." -msgstr "" +msgstr "Kies Gegevens - Draaitabel - Vernieuwen." #: 00000412.xhp msgctxt "" @@ -1510,7 +1510,7 @@ "par_id3151344\n" "help.text" msgid "Choose Data - Pivot Table - Delete." -msgstr "" +msgstr "Kies Gegevens - Draaitabel - Verwijderen." #: 00000412.xhp msgctxt "" @@ -1518,7 +1518,7 @@ "par_id3150397\n" "help.text" msgid "Choose Data - Refresh Range." -msgstr "" +msgstr "Kies Gegevens - Bereik vernieuwen." #: 00000412.xhp msgctxt "" @@ -1526,7 +1526,7 @@ "par_idN10B8F\n" "help.text" msgid "Choose Data - Group and Outline - Group." -msgstr "" +msgstr "Kies Gegevens - Groeperen en overzicht maken - Groeperen." #: sheet_menu.xhp msgctxt "" @@ -1550,7 +1550,7 @@ "par_id160220162106567373\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Above." -msgstr "" +msgstr "Kies Blad - Rijen invoegen - Rijen erboven." #: sheet_menu.xhp msgctxt "" @@ -1558,7 +1558,7 @@ "par_id160220162109048207\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Below." -msgstr "" +msgstr "Kies Blad - Rijen invoegen - Rijen eronder." #: sheet_menu.xhp msgctxt "" @@ -1566,7 +1566,7 @@ "par_id160220162107055028\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Left." -msgstr "" +msgstr "Kies Blad - Kolommen invoegen - Kolommen links." #: sheet_menu.xhp msgctxt "" @@ -1574,7 +1574,7 @@ "par_id160220162109126013\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Right." -msgstr "" +msgstr "Kies Blad - Kolommen invoegen - Kolommen rechts." #: sheet_menu.xhp msgctxt "" @@ -1582,7 +1582,7 @@ "par_id3149095\n" "help.text" msgid "Choose Sheet - Insert Page Break." -msgstr "" +msgstr "Kies Blad - Pagina-einde invoegen." #: sheet_menu.xhp msgctxt "" @@ -1590,7 +1590,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 "" @@ -1598,7 +1598,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 "" @@ -1606,7 +1606,7 @@ "par_id3153093\n" "help.text" msgid "Choose Sheet - Delete Page Break." -msgstr "" +msgstr "Kies Blad - Pagina-einde verwijderen" #: sheet_menu.xhp msgctxt "" @@ -1614,7 +1614,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 "" @@ -1622,4 +1622,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-6.1.4/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-11-28 11:04+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2019-01-20 21:23+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: 1543403076.000000\n" +"X-POOTLE-MTIME: 1548019437.000000\n" #: 01120000.xhp msgctxt "" @@ -41134,7 +41134,7 @@ "hd_id3147504\n" "help.text" msgid "MINA" -msgstr "" +msgstr "MINA" #: 04060184.xhp msgctxt "" @@ -41214,7 +41214,7 @@ "hd_id3166465\n" "help.text" msgid "AVEDEV" -msgstr "" +msgstr "GEM.DEVIATIE" #: 04060184.xhp msgctxt "" @@ -41278,7 +41278,7 @@ "hd_id3145824\n" "help.text" msgid "AVERAGE" -msgstr "" +msgstr "GEMIDDELDE" #: 04060184.xhp msgctxt "" @@ -41342,7 +41342,7 @@ "hd_id3148754\n" "help.text" msgid "AVERAGEA" -msgstr "" +msgstr "GEMIDDELDEA" #: 04060184.xhp msgctxt "" @@ -56558,7 +56558,7 @@ "par_id1191767622119\n" "help.text" msgid "In all examples below, ranges for calculation contain the row #6, which is ignored because it contains text." -msgstr "" +msgstr "Alle onderstaande voorbeelden, bevatten bereiken voor berekening van rij #6, die genegeerd wordt omdat deze tekst bevat." #: ex_data_stat_func.xhp msgctxt "" @@ -56566,7 +56566,7 @@ "par_id961527953004850\n" "help.text" msgid "Func_Range; Range1; Criterion1 [ ; Range2; Criterion2 [;...]])" -msgstr "" +msgstr "Functiebereik; Bereik1; Criterium1 [ ; Bereik2; Criterium2 [;...]])" #: ex_data_stat_func.xhp msgctxt "" @@ -56574,7 +56574,7 @@ "par_id94162948227556\n" "help.text" msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given Func_Range is taken into calculation." -msgstr "" +msgstr "De logische relatie tussen criteria kan worden gedefinieerd als logische EN (conjunctie). Met andere woorden, als en alleen als aan alle gegeven criteria is voldaan, wordt een waarde uit de overeenkomstige cel van de gegeven Functiebereik in de berekening meegenomen." #: ex_data_stat_func.xhp msgctxt "" @@ -56582,7 +56582,7 @@ "par_id14734320631377\n" "help.text" msgid "Func_Range and Range1, Range2... must have the same size, otherwise the function returns err:502 - Invalid argument." -msgstr "" +msgstr "Functiebereik enBereik1, Bereik2... moeten hetzelfde formaat hebben, anders geeft de functie fout:502 - Ongeldig argument." #: ex_data_stat_func.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-11-25 12:56+0000\n" +"PO-Revision-Date: 2019-01-21 08:02+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: 1543150573.000000\n" +"X-POOTLE-MTIME: 1548057746.000000\n" #: 00000001.xhp msgctxt "" @@ -9166,7 +9166,7 @@ "par_id3157958\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Teksteffecten." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Teksteffecten" #: 00040500.xhp msgctxt "" @@ -9230,7 +9230,7 @@ "par_id3149819\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Font Effects tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Teksteffecten." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Teksteffecten" #: 00040500.xhp msgctxt "" @@ -9254,7 +9254,7 @@ "par_id3159256\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Alignment tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Wijzigen/Nieuw, tabblad Uitlijning." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Aanpassen/Nieuw, tabblad Uitlijning" #: 00040500.xhp msgctxt "" @@ -9278,7 +9278,7 @@ "par_id3152811\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Layout tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Wijzigen/Nieuw, tabblad Aziatische lay-out." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Aanpassen/Nieuw, tabblad Aziatische lay-out" #: 00040500.xhp msgctxt "" @@ -9302,7 +9302,7 @@ "par_id3148742\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and click Modify/New - Asian Typography tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Wijzigen/Nieuw, tabblad Aziatische typografie." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Aanpassen/Nieuw, tabblad Aziatische typografie" #: 00040500.xhp msgctxt "" @@ -9358,7 +9358,7 @@ "par_id3147352\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Alignment tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Wijzigen/Nieuw, tabblad Uitlijning." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en klik op Aanpassen/Nieuw, tabblad Uitlijning" #: 00040500.xhp msgctxt "" @@ -9374,7 +9374,7 @@ "par_id3152463\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Indents & Spacing tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Inspringingen en afstanden." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Inspringingen en afstanden" #: 00040500.xhp msgctxt "" @@ -9390,7 +9390,7 @@ "par_id3154833\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Tabs tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Tabs." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Tabs" #: 00040500.xhp msgctxt "" @@ -9454,7 +9454,7 @@ "par_id3149911\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Borders tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Tabs." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Tabs" #: 00040500.xhp msgctxt "" @@ -9558,7 +9558,7 @@ "par_id3153532\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Background tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Tabs." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Tabs" #: 00040500.xhp msgctxt "" @@ -9590,7 +9590,7 @@ "par_id3154482\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Organizer tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Beheren." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Beheren" #: 00040500.xhp msgctxt "" @@ -9622,7 +9622,7 @@ "par_id3154362\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Page tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Pagina." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Pagina" #: 00040500.xhp msgctxt "" @@ -9638,7 +9638,7 @@ "par_id3148405\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Header tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Koptekst." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Koptekst" #: 00040500.xhp msgctxt "" @@ -9654,7 +9654,7 @@ "par_id3155175\n" "help.text" msgid "Choose View - Styles - open context menu of an entry and choose Modify/New - Footer tab" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Wijzigen/Nieuw, tabblad Voettekst." +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu van een item en kies Aanpassen/Nieuw, tabblad Voettekst" #: 00040500.xhp msgctxt "" @@ -11102,7 +11102,7 @@ "par_id3147335\n" "help.text" msgid "Choose View - Styles - open context menu and choose Modify/New - Line tab (presentation documents)" -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu en kies Wijzigen/Nieuw - Lijn (tabblad) (presentatiedocumenten)" +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu en kies Aanpassen/Nieuw - Lijn (tabblad) (presentatiedocumenten)" #: 00040502.xhp msgctxt "" @@ -11222,7 +11222,7 @@ "par_id3145607\n" "help.text" msgid "Choose View - Styles - open context menu and choose Modify/New - Area tab (presentation documents)." -msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu en kies Wijzigen/nieuw - Vlak (tabblad) (presentatiedocumenten)" +msgstr "Kies Beeld - Opmaakprofielen, open het contextmenu en kies Aanpassen/nieuw, tabblad Vlak (presentatiedocumenten)." #: 00040502.xhp msgctxt "" @@ -12134,7 +12134,7 @@ "par_id3152349\n" "help.text" msgid "Choose View - Styles - open context menu and choose Modify/New - Numbers tab " -msgstr "Kies Beeld - Opmaakprofielen - open het contextmenu en kies Wijzigen/Nieuw - tab Getallen " +msgstr "Kies Beeld - Opmaakprofielen - open het contextmenu en kies Aanpassen/Nieuw, tabblad Getallen " #: 00040503.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-11-16 08:09+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2019-01-20 21:29+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: 1542355761.000000\n" +"X-POOTLE-MTIME: 1548019752.000000\n" #: 01010000.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "par_id3159256\n" "help.text" msgid "To open more than one document at the same time, each in an own window, hold CommandCtrl while you click the files, and then click Open." -msgstr "" +msgstr "Houdt CommandoCtrl 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 "" @@ -10758,7 +10758,7 @@ "par_id3155552\n" "help.text" msgid "Click the plus sign beside an entry in the list to view all of the changes that were recorded for a cell." -msgstr "" +msgstr "Klik op het plusteken naast een item in de lijst om alle wijzigingen weer te geven die voor een cel zijn vastgelegd." #: 02230401.xhp msgctxt "" @@ -10766,7 +10766,7 @@ "par_id3154824\n" "help.text" msgid "If one of the nested changes for a cell matches a filter criterion, all of the changes for the cell are displayed. When you filter the change list, the entries in the list appear in different colors according to the following table:" -msgstr "" +msgstr "Als een van de geneste wijzigingen voor een cel overeenkomt met een filtercriterium, worden alle wijzigingen voor de cel weergegeven. Wanneer u de lijst met wijzigingen filtert, worden de items in de lijst in verschillende kleuren weergegeven op basis van de volgende tabel:" #: 02230401.xhp msgctxt "" @@ -10902,7 +10902,7 @@ "hd_id3152920\n" "help.text" msgid "Position" -msgstr "" +msgstr "Positie " #: 02230401.xhp msgctxt "" @@ -10910,7 +10910,7 @@ "par_id3149202\n" "help.text" msgid "Lists the cells with contents that were changed." -msgstr "" +msgstr "Geeft de cellen weer waarvan de inhoud is gewijzigd." #: 02230401.xhp msgctxt "" @@ -11038,7 +11038,7 @@ "hd_id3159196\n" "help.text" msgid "Undo" -msgstr "" +msgstr "Ongedaan maken" #: 02230401.xhp msgctxt "" @@ -11254,7 +11254,7 @@ "hd_id3147531\n" "help.text" msgid "Range" -msgstr "" +msgstr "Bereik" #: 02230402.xhp msgctxt "" @@ -11278,7 +11278,7 @@ "hd_id3147304\n" "help.text" msgid "Set Reference" -msgstr "" +msgstr "Verwijzing instellen" #: 02230402.xhp msgctxt "" @@ -11302,7 +11302,7 @@ "hd_id3159149\n" "help.text" msgid "Shrink/Max" -msgstr "" +msgstr "Verkleinen/vergroten " #: 02230402.xhp msgctxt "" @@ -11326,7 +11326,7 @@ "hd_id3156543\n" "help.text" msgid "Action" -msgstr "" +msgstr "Actie " #: 02230402.xhp msgctxt "" @@ -17254,7 +17254,7 @@ "par_id130820131011365891\n" "help.text" msgid "Formatting code" -msgstr "" +msgstr "Opmaakcodes" #: 05020301.xhp msgctxt "" @@ -17262,7 +17262,7 @@ "par_id13082016201136632\n" "help.text" msgid "Explanation" -msgstr "" +msgstr "Uitleg" #: 05020301.xhp msgctxt "" @@ -17278,7 +17278,7 @@ "par_id130820161733112114\n" "help.text" msgid "Spell out as cardinal number: 1 → one" -msgstr "" +msgstr "Spel als kardinaal getal: 1 → een" #: 05020301.xhp msgctxt "" @@ -17326,7 +17326,7 @@ "par_id130820161715331121110\n" "help.text" msgid "Spell out with capitalization, as cardinal number: 1 → One" -msgstr "" +msgstr "Spel met hoofdletter als kardinaal getal:1 → Een" #: 05020301.xhp msgctxt "" @@ -20062,7 +20062,7 @@ "hd_id3153750\n" "help.text" msgid "AutoUpdate" -msgstr "" +msgstr "Autom. bijwerken" #: 05040100.xhp msgctxt "" @@ -20742,7 +20742,7 @@ "par_id3153821\n" "help.text" msgid "To add a header to the current page style, select Header on, and then click OK." -msgstr "" +msgstr "Om een koptekst aan het huidige document toe te voegen, selecteert u Koptekst activeren en klikt u vervolgens op OK." #: 05040300.xhp msgctxt "" @@ -20942,7 +20942,7 @@ "hd_id3155306\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Bewerken" #: 05040300.xhp msgctxt "" @@ -20958,7 +20958,7 @@ "par_id3145749\n" "help.text" msgid "Add or edit header text." -msgstr "" +msgstr "Toevoegen of bewerken van koptekst." #: 05040300.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-10-19 21:29+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2019-01-11 08:49+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: 1539984555.000000\n" +"X-POOTLE-MTIME: 1547196565.000000\n" #: 01000000.xhp msgctxt "" @@ -878,7 +878,7 @@ "hd_id2659077\n" "help.text" msgid "ODF format version" -msgstr "ODF-formaat versie" +msgstr "ODF-indeling versie" #: 01010200.xhp msgctxt "" @@ -7230,7 +7230,7 @@ "hd_id3145640\n" "help.text" msgid "Add spacing between paragraphs and tables" -msgstr "Een spatie tussen alinea's en tabellen toevoegen" +msgstr "Afstand tussen alinea's en tabellen toevoegen" #: 01041000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/simpress.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/simpress.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/simpress.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/simpress.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-12-18 12:31+0100\n" -"PO-Revision-Date: 2018-01-07 06:53+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2018-12-22 08:02+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: 1515308025.000000\n" +"X-POOTLE-MTIME: 1545465722.000000\n" #: main0000.xhp msgctxt "" @@ -878,7 +878,7 @@ "par_id3152597\n" "help.text" msgid "To display the Text Formatting Bar, place the cursor inside a text object." -msgstr "Als u de balk Tekstopmaak wilt weergeven, plaatst u de cursor in een tekstobject." +msgstr "Als u de werkbalk Tekstopmaak wilt weergeven, plaatst u de cursor in een tekstobject." #: main0203.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-11-25 12:58+0000\n" +"PO-Revision-Date: 2019-01-21 07:56+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: 1543150699.000000\n" +"X-POOTLE-MTIME: 1548057418.000000\n" #: 00000004.xhp msgctxt "" @@ -1470,7 +1470,7 @@ "par_id3156364\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New (for List Styles)" -msgstr "Kies Beeld - Opmaakprofielen open contextmenu Wijzigen/Nieuw (voor Lijstopmaakprofielen)" +msgstr "Kies Beeld - Opmaakprofielen open contextmenu Aanpassen/Nieuw (voor Lijstopmaakprofielen)" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-11-25 12:58+0000\n" +"PO-Revision-Date: 2018-12-28 13:53+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: 1543150707.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546005226.000000\n" #: 01120000.xhp msgctxt "" @@ -4862,7 +4862,7 @@ "hd_id3149695\n" "help.text" msgid "Database field" -msgstr "Gegevensbronveld" +msgstr "Databaseveld" #: 04070100.xhp msgctxt "" @@ -4870,7 +4870,7 @@ "par_id3155180\n" "help.text" msgid "Select the database field containing the address data that you want to insert, and then click the left arrow button. The data is added to the address box containing the cursor." -msgstr "Selecteer het gegevensbronveld met de adresgegevens die u wilt invoegen, en klik dan op de knop met de pijl naar links. De gegevens worden ingevoegd in het adresvak waar de cursor in staat." +msgstr "Selecteer het databaseveld met de adresgegevens die u wilt invoegen, en klik dan op de knop met de pijl naar links. De gegevens worden ingevoegd in het adresvak waar de cursor in staat." #: 04070200.xhp msgctxt "" @@ -6710,7 +6710,7 @@ "par_id3146865\n" "help.text" msgid "You can also insert database fields in the Then and Else boxes using the format \"databasename.tablename.fieldname\"." -msgstr "U kunt ook gegevensbronvelden in de vakken Dan en Anders invoegen via de notatie \"gegevensbronnaam.tabelnaam.veldnaam\"." +msgstr "U kunt ook databasevelden in de vakken Dan en Anders invoegen via de notatie \"databasenaam.tabelnaam.veldnaam\"." #: 04090003.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-11-25 13:00+0000\n" +"PO-Revision-Date: 2018-12-22 08:17+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: 1543150822.000000\n" +"X-POOTLE-MTIME: 1545466675.000000\n" #: anchor_object.xhp msgctxt "" @@ -15790,7 +15790,7 @@ "par_id3154252\n" "help.text" msgid "Drag one of the corner handles of the text object." -msgstr "Versleep een van de hoekpuntgrepen van het tekstobject." +msgstr "Versleep een van de hoekpunthandvatten van het tekstobject." #: text_rotate.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter.po --- libreoffice-l10n-6.1.4/translations/source/nl/helpcontent2/source/text/swriter.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-10-19 21:30+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2018-12-22 08:03+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: 1539984623.000000\n" +"X-POOTLE-MTIME: 1545465793.000000\n" #: classificationbar.xhp msgctxt "" @@ -2462,7 +2462,7 @@ "hd_id3155366\n" "help.text" msgid "Text Object Bar" -msgstr "Tekstobjectbalk" +msgstr "Werkbalk Tekstobject" #: main0220.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-12-09 10:12+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2018-12-13 13:36+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: Pootle 2.8\n" -"X-POOTLE-MTIME: 1544350347.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1544708161.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3587,7 +3587,7 @@ "Label\n" "value.text" msgid "Lin~ks to External Files..." -msgstr "~Koppelingen naar externe verbanden..." +msgstr "~Koppelingen naar externe bestanden..." #: CalcCommands.xcu msgctxt "" @@ -7808,7 +7808,7 @@ "Label\n" "value.text" msgid "Lin~ks to External Files..." -msgstr "~Koppelingen naar externe verbanden..." +msgstr "~Koppelingen naar externe bestanden..." #: DrawImpressCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/nl/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-05 09:35+0000\n" +"PO-Revision-Date: 2019-01-11 10:06+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: 1530783304.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547201162.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Het certificaat kon niet worden gevalideerd en het document is slechts gedeeltelijk ondertekend." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/svtools/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/svtools/messages.po --- libreoffice-l10n-6.1.4/translations/source/nl/svtools/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/svtools/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: 2018-07-05 09:35+0000\n" +"PO-Revision-Date: 2018-12-28 13:27+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: 1530783319.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546003648.000000\n" #: include/svtools/strings.hrc:25 msgctxt "STR_UNDO" @@ -4097,7 +4097,7 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:9 msgctxt "addresstemplatedialog|AddressTemplateDialog" msgid "Templates: Address Book Assignment" -msgstr "Sjablonen: Adresboek-toewijziging" +msgstr "Sjablonen: Adresboek-toewijzing" #: svtools/uiconfig/ui/addresstemplatedialog.ui:104 msgctxt "addresstemplatedialog|label33" diff -Nru libreoffice-l10n-6.1.4/translations/source/nl/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nl/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/nl/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nl/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-10-30 06:58+0000\n" +"PO-Revision-Date: 2019-01-11 08:53+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: 1540882718.000000\n" +"X-POOTLE-MTIME: 1547196792.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -7343,7 +7343,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:141 msgctxt "cardmediumpage|label4" msgid "Database:" -msgstr "Gegevensbank:" +msgstr "Database:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:179 msgctxt "cardmediumpage|label7" @@ -7353,7 +7353,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:217 msgctxt "cardmediumpage|label8" msgid "Database field:" -msgstr "Gegevensbronveld:" +msgstr "Databaseveld:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:255 msgctxt "cardmediumpage|insert|tooltip_text" @@ -8348,7 +8348,7 @@ #: sw/uiconfig/swriter/ui/envdialog.ui:8 msgctxt "envdialog|EnvDialog" msgid "Envelope" -msgstr "Enveloppe" +msgstr "Envelop" #: sw/uiconfig/swriter/ui/envdialog.ui:24 msgctxt "envdialog|ok" @@ -13207,12 +13207,12 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:57 msgctxt "optcompatpage|format" msgid "Add spacing between paragraphs and tables" -msgstr "Een spatie tussen alinea's en tabellen toevoegen" +msgstr "Afstand tussen alinea's en tabellen toevoegen" #: sw/uiconfig/swriter/ui/optcompatpage.ui:58 msgctxt "optcompatpage|format" msgid "Add paragraph and table spacing at tops of pages" -msgstr "Een spatie van alinea en tabel bovenaan de pagina's toevoegen" +msgstr "Alinea- en tabelafstand aan de bovenkant van pagina’s toevoegen" #: sw/uiconfig/swriter/ui/optcompatpage.ui:59 msgctxt "optcompatpage|format" @@ -14436,7 +14436,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:199 msgctxt "paradialog|labelTP_NUMPARA" msgid "Outline & Numbering" -msgstr "Overzicht & Nummering" +msgstr "Overzicht en Nummering" #: sw/uiconfig/swriter/ui/paradialog.ui:222 msgctxt "paradialog|labelTP_TABULATOR" @@ -16125,7 +16125,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:8 msgctxt "templatedialog16|TemplateDialog16" msgid "Numbering Style" -msgstr "Nummering opmaakprofiel" +msgstr "Nummering" #: sw/uiconfig/swriter/ui/templatedialog16.ui:147 msgctxt "templatedialog16|organizer" @@ -16140,7 +16140,7 @@ #: sw/uiconfig/swriter/ui/templatedialog16.ui:240 msgctxt "templatedialog16|numbering" msgid "Numbering Style" -msgstr "Nummering opmaakprofiel" +msgstr "Nummering" #: sw/uiconfig/swriter/ui/templatedialog16.ui:287 msgctxt "templatedialog16|outline" @@ -17125,7 +17125,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:55 msgctxt "tocstylespage|label2" msgid "Paragraph _Styles" -msgstr "Alineaop_maakprofiel" +msgstr "Aline-aop_maakprofiel" #: sw/uiconfig/swriter/ui/tocstylespage.ui:117 msgctxt "tocstylespage|default" diff -Nru libreoffice-l10n-6.1.4/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-07 15:09+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: 1536332980.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D-modell …" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nn/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/nn/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/nn/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nn/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-08-12 09:59+0000\n" +"PO-Revision-Date: 2018-12-17 11:24+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: 1534067975.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545045853.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1280,7 +1280,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Kunne ikkje verifisera sertifikatet slik at dokumentet er berre delvis signert." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 04:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23586,15 +23586,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 04:56+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23251,15 +23251,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-17 17:01+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: 1539795717.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modèl 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/om/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/om/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/om/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 05:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23255,15 +23255,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/or/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/or/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/or/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 05:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Oriya \n" @@ -23255,15 +23255,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-12-24 05:58+0000\n" "Last-Translator: Mangat veer Sagar \n" "Language-Team: LANGUAGE \n" @@ -23241,15 +23241,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-25 10:14+0000\n" "Last-Translator: Piotr Roszkowski \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: 1537870448.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/pl/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/pl/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/pl/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pl/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-07-02 09:28+0000\n" +"PO-Revision-Date: 2019-01-13 15:04+0000\n" "Last-Translator: Piotr Roszkowski \n" "Language-Team: LANGUAGE \n" "Language: pl\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: LibreOffice\n" -"X-POOTLE-MTIME: 1530523713.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547391882.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1281,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "Certyfikat nie mógł zostać sprawdzony, a dokument jest tylko częściowo podpisany." #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt/formula/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/pt/formula/messages.po --- libreoffice-l10n-6.1.4/translations/source/pt/formula/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt/formula/messages.po 2019-01-30 17:56:45.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: 2018-10-09 13:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2018-04-23 18:10+0200\n" +"PO-Revision-Date: 2019-01-15 13:16+0000\n" +"Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" +"Language: pt\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: 1547558197.000000\n" #: formula/inc/core_resource.hrc:2258 msgctxt "RID_STRLIST_FUNCTION_NAMES" @@ -1226,6 +1229,11 @@ msgid "TEXT" msgstr "TEXTO" +#: formula/inc/core_resource.hrc:2500 +msgctxt "RID_STRLIST_FUNCTION_NAMES" +msgid "SUBSTITUTE" +msgstr "SUBST" + #: formula/inc/core_resource.hrc:2501 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "REPT" @@ -1449,12 +1457,12 @@ #: formula/inc/core_resource.hrc:2545 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE.SNGL" -msgstr "MODO.SIMPLES" +msgstr "MODA.SIMPLES" #: formula/inc/core_resource.hrc:2546 msgctxt "RID_STRLIST_FUNCTION_NAMES" msgid "MODE.MULT" -msgstr "MODO.MÚLT" +msgstr "MODA.MÚLT" #: formula/inc/core_resource.hrc:2547 msgctxt "RID_STRLIST_FUNCTION_NAMES" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/pt/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.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: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-09-03 21:47+0000\n" +"PO-Revision-Date: 2019-01-15 13:16+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: 1536011262.000000\n" +"X-POOTLE-MTIME: 1547558194.000000\n" #: 01120000.xhp msgctxt "" @@ -23790,7 +23790,7 @@ "bm_id3154830\n" "help.text" msgid "SUBSTITUTE function" -msgstr "Função SUBSTITUIR" +msgstr "Função SUBST" #: 04060110.xhp msgctxt "" @@ -23798,7 +23798,7 @@ "hd_id3154830\n" "help.text" msgid "SUBSTITUTE" -msgstr "SUBSTITUIR" +msgstr "SUBST" #: 04060110.xhp msgctxt "" @@ -23822,7 +23822,7 @@ "par_id3147582\n" "help.text" msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)" -msgstr "SUBSTITUIR(\"texto\"; \"texto_antigo\"; \"novo_texto\"; ocorrência)" +msgstr "SUBST(\"texto\"; \"texto_antigo\"; \"novo_texto\"; ocorrência)" #: 04060110.xhp msgctxt "" @@ -23870,7 +23870,7 @@ "par_id3150412\n" "help.text" msgid "=SUBSTITUTE(\"123123123\";\"3\";\"abc\") returns 12abc12abc12abc." -msgstr "=SUBSTITUIR(\"123123123\";\"3\";\"abc\") devolve 12abc12abc12abc." +msgstr "=SUBST(\"123123123\";\"3\";\"abc\") devolve 12abc12abc12abc." #: 04060110.xhp msgctxt "" @@ -23878,7 +23878,7 @@ "par_id3154915\n" "help.text" msgid "=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2) returns 12312abc123." -msgstr "=SUBSTITUIR(\"123123123\";\"3\";\"abc\";2) devolve 12312abc123." +msgstr "=SUBST(\"123123123\";\"3\";\"abc\";2) devolve 12312abc123." #: 04060110.xhp msgctxt "" @@ -41462,7 +41462,7 @@ "bm_id2953933\n" "help.text" msgid "MODE.SNGL functionmost common value" -msgstr "função MODO.SIMPLESvalor mais frequente" +msgstr "função MODA.SIMPLESvalor mais frequente" #: 04060184.xhp msgctxt "" @@ -41470,7 +41470,7 @@ "hd_id2953933\n" "help.text" msgid "MODE.SNGL" -msgstr "MODO.SIMPLES" +msgstr "MODA.SIMPLES" #: 04060184.xhp msgctxt "" @@ -41510,7 +41510,7 @@ "par_id2963792\n" "help.text" msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value." -msgstr "Se o conjunto de dados não possuir dados duplicados, MODO.SIMPLES devolve o erro #VALOR." +msgstr "Se o conjunto de dados não possuir dados duplicados, MODA.SIMPLES devolve o erro #VALOR." #: 04060184.xhp msgctxt "" @@ -41526,7 +41526,7 @@ "par_id2953733\n" "help.text" msgid "=MODE.SNGL(A1:A50)" -msgstr "=MODO.SIMPLES(A1:A50)" +msgstr "=MODA.SIMPLES(A1:A50)" #: 04060184.xhp msgctxt "" @@ -41534,7 +41534,7 @@ "bm_id2853933\n" "help.text" msgid "MODE.MULT functionmost common value" -msgstr "função MODO.MÚLTvalor mais frequente" +msgstr "função MODA.MÚLTvalor mais frequente" #: 04060184.xhp msgctxt "" @@ -41542,7 +41542,7 @@ "hd_id2853933\n" "help.text" msgid "MODE.MULT" -msgstr "MODO.MÚLT" +msgstr "MODA.MÚLT" #: 04060184.xhp msgctxt "" @@ -41550,7 +41550,7 @@ "par_id2853085\n" "help.text" msgid "Returns a vertical array of the statistical modes (the most frequently occurring values) within a list of supplied numbers." -msgstr "Devolve uma matriz vertical dos valores mais frequentes de um intervalo ou matriz de dados." +msgstr "Devolve o valor que ocorre ou que se repete com mais frequência numa matriz ou intervalo de dados." #: 04060184.xhp msgctxt "" @@ -41582,7 +41582,7 @@ "par_id2863792\n" "help.text" msgid "As the MODE.MULT function returns an array of values, it must be entered as an array formula. If the function is not entered as an array formula, only the first mode is returned, which is the same as using the MODE.SNGL function." -msgstr "Uma vez que MODO.MÚLT devolve uma matriz de dados, deve utilizar uma fórmula de matriz. Se não introduzir a fórmula de matriz na função, penas é devolvido o primeiro modo, isto é, como se estivesse a utilizar a função MODO.SIMPLES." +msgstr "Uma vez que MODA.MÚLT devolve uma matriz de dados, deve utilizar uma fórmula de matriz. Se não introduzir a fórmula de matriz na função, penas é devolvido o primeiro modo, isto é, como se estivesse a utilizar a função MODA.SIMPLES." #: 04060184.xhp msgctxt "" @@ -41598,7 +41598,7 @@ "par_id2853733\n" "help.text" msgid "=MODE.MULT(A1:A50)" -msgstr "=MODO.MÚLT(A1:A50)" +msgstr "=MODA.MÚLT(A1:A50)" #: 04060184.xhp msgctxt "" @@ -57294,7 +57294,7 @@ "par_id230920151136016\n" "help.text" msgid "MODE.SNGL" -msgstr "MODO.SIMPLES" +msgstr "MODA.SIMPLES" #: func_aggregate.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-03 21:23+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2018-12-20 22:04+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: 1536009806.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1545343493.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -1166,7 +1166,7 @@ "Label\n" "value.text" msgid "C~onditional" -msgstr "C~ondicional" +msgstr "Formatação c~ondicional" #: CalcCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modelo 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/pt/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/pt/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-07-04 21:59+0000\n" +"PO-Revision-Date: 2018-12-23 22:55+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1530741574.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545605709.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -7434,7 +7434,7 @@ #: sc/inc/scfuncs.hrc:1925 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" msgid "Returns the most common value in a sample." -msgstr "Devolve uma matriz vertical dos valores mais frequentes de um intervalo ou matriz de dados." +msgstr "Devolve o valor que ocorre ou que se repete com mais frequência numa matriz ou intervalo de dados" #: sc/inc/scfuncs.hrc:1926 msgctxt "SC_OPCODE_MODAL_VALUE_MULTI" @@ -19149,7 +19149,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1478 msgctxt "notebookbar_groups|conditionalb" msgid "Conditional" -msgstr "Condicional" +msgstr "Formatação condicional" #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1605 msgctxt "notebookbar_groups|topb" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-20 11:29+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \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: 1537442950.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modelo 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/pt-BR/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/pt-BR/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/pt-BR/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/pt-BR/sw/messages.po 2019-01-30 17:56:45.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: 2018-10-29 19:46+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2018-08-22 01:07+0200\n" +"PO-Revision-Date: 2019-01-15 00:12+0000\n" +"Last-Translator: Olivier Hallot \n" "Language-Team: LANGUAGE \n" +"Language: pt_BR\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: 1547511150.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -1003,7 +1006,7 @@ #: sw/inc/strings.hrc:137 msgctxt "STR_POOLCOLL_LABEL_ABB" msgid "Illustration" -msgstr "Figura" +msgstr "Ilustração" #: sw/inc/strings.hrc:138 msgctxt "STR_POOLCOLL_LABEL_TABLE" @@ -1020,6 +1023,11 @@ msgid "Drawing" msgstr "Desenho" +#: sw/inc/strings.hrc:141 +msgctxt "STR_POOLCOLL_LABEL_FIGURE" +msgid "Figure" +msgstr "Figura" + #: sw/inc/strings.hrc:142 msgctxt "STR_POOLCOLL_JAKETADRESS" msgid "Addressee" diff -Nru libreoffice-l10n-6.1.4/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-07-21 06:39+0000\n" "Last-Translator: Ákos Nagy \n" "Language-Team: LANGUAGE \n" @@ -23017,15 +23017,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Model 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-10-13 13:54+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: 1539438858.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Трёхмерная модель..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ru/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/ru/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/ru/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ru/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-12-11 14:17+0100\n" +"PO-Revision-Date: 2019-01-17 23:16+0000\n" "Last-Translator: bormant \n" "Language-Team: LANGUAGE \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: LibreOffice\n" -"X-POOTLE-MTIME: 1543591253.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547767002.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -1023,6 +1023,11 @@ msgid "Drawing" msgstr "Рисунок" +#: sw/inc/strings.hrc:141 +msgctxt "STR_POOLCOLL_LABEL_FIGURE" +msgid "Figure" +msgstr "Фигура" + #: sw/inc/strings.hrc:142 msgctxt "STR_POOLCOLL_JAKETADRESS" msgid "Addressee" diff -Nru libreoffice-l10n-6.1.4/translations/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 07:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23258,15 +23258,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 06:54+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -22912,15 +22912,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-05-16 09:20+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" @@ -23276,15 +23276,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 07:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23809,15 +23809,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sd/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 07:18+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23317,15 +23317,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/si/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/si/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/si/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 08:14+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23231,15 +23231,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sid/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-08 23:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Sidaama Translators\n" @@ -23238,15 +23238,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-06-08 15:39+0000\n" "Last-Translator: Miloš Šrámek \n" "Language-Team: LANGUAGE \n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D Model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sq/dbaccess/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/sq/dbaccess/messages.po --- libreoffice-l10n-6.1.4/translations/source/sq/dbaccess/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sq/dbaccess/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-23 18:10+0200\n" -"PO-Revision-Date: 2017-12-15 10:08+0000\n" -"Last-Translator: Anxhelo Lushka \n" +"PO-Revision-Date: 2019-01-07 10:47+0000\n" +"Last-Translator: Augest \n" "Language-Team: LANGUAGE \n" "Language: sq\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: 1513332505.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546858043.000000\n" #: dbaccess/inc/query.hrc:26 #, fuzzy @@ -31,7 +31,7 @@ #: dbaccess/inc/query.hrc:28 msgctxt "RSC_QUERY_OBJECT_TYPE" msgid "The SQL statement" -msgstr "" +msgstr "Deklarata SQL" #: dbaccess/inc/strings.hrc:25 msgctxt "RID_STR_CONNECTION_INVALID" @@ -46,17 +46,17 @@ #: dbaccess/inc/strings.hrc:27 msgctxt "RID_STR_COULDNOTCONNECT_UNSPECIFIED" msgid "The connection to the external data source could not be established. An unknown error occurred. The driver is probably defective." -msgstr "" +msgstr "Lidhja me burimin e të dhënave të jashtme nuk mund të bëhet. Ka ndodhur një gabim i paidentifikueshëm. Kjo paisje ndoshta mund të jetë e dëmtuar." #: dbaccess/inc/strings.hrc:28 msgctxt "RID_STR_COULDNOTCONNECT_NODRIVER" msgid "The connection to the external data source could not be established. No SDBC driver was found for the URL '$name$'." -msgstr "" +msgstr "Lidhja me burimin e të dhënave të jashtme nuk mund të bëhet. Asnjë paisje SDBC nuk është gjetur për URL-në '$name$'. " #: dbaccess/inc/strings.hrc:29 msgctxt "RID_STR_COULDNOTLOAD_MANAGER" msgid "The connection to the external data source could not be established. The SDBC driver manager could not be loaded." -msgstr "" +msgstr "Lidhja me burimin e të dhënave të jashtme nuk mund të bëhet. Menaxhuesi i paisjes SDBC nuk mund të ngarkohet. " #: dbaccess/inc/strings.hrc:30 msgctxt "RID_STR_FORM" @@ -79,6 +79,8 @@ "The given command is not a SELECT statement.\n" "Only queries are allowed." msgstr "" +"Komanda e dhënë nuk është një deklaratë SELECT\n" +"Vetëm kërkesat janë të lejuara. " #: dbaccess/inc/strings.hrc:34 msgctxt "RID_STR_NO_VALUE_CHANGED" diff -Nru libreoffice-l10n-6.1.4/translations/source/sq/helpcontent2/source/auxiliary.po libreoffice-l10n-6.1.5~rc2/translations/source/sq/helpcontent2/source/auxiliary.po --- libreoffice-l10n-6.1.4/translations/source/sq/helpcontent2/source/auxiliary.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sq/helpcontent2/source/auxiliary.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2016-05-02 13:49+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2018-12-15 13:52+0000\n" +"Last-Translator: Sidorela \n" "Language-Team: LANGUAGE \n" "Language: sq\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: 1462196961.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1544881946.000000\n" #: sbasic.tree msgctxt "" @@ -22,7 +22,7 @@ "07\n" "help_section.text" msgid "Macros and Programming" -msgstr "Makrot dhe Programimi" +msgstr "Makrot dhe Programim" #: sbasic.tree msgctxt "" @@ -30,7 +30,7 @@ "0701\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "Informacioni i Përgjithshëm dhe Përdorimi i Ndërfaqes së Përdoruesit" +msgstr "Informacion i Përgjithshëm dhe Përdorimi i Ndërfaqes së Përdoruesit " #: sbasic.tree msgctxt "" @@ -38,7 +38,7 @@ "0702\n" "node.text" msgid "Command Reference" -msgstr "Referimi i komandove" +msgstr "Referimi i komandës" #: sbasic.tree msgctxt "" @@ -46,7 +46,7 @@ "070202\n" "node.text" msgid "Functions, Statements, and Operators" -msgstr "" +msgstr "Funksionet, Deklarimet dhe Operatorët" #: sbasic.tree msgctxt "" @@ -54,7 +54,7 @@ "070201\n" "node.text" msgid "Alphabetic List of Functions, Statements, and Operators" -msgstr "Lista Alfabetike e Funksioneve, Deklaratave dhe Operatorëve" +msgstr "Lista Alfabetike e Funksioneve, Deklaratave dhe Operatorëve " #: sbasic.tree msgctxt "" @@ -62,7 +62,7 @@ "070205\n" "node.text" msgid "Advanced Basic Libraries" -msgstr "" +msgstr "Libraritë Themelore të Avancuara" #: sbasic.tree msgctxt "" @@ -70,7 +70,7 @@ "0703\n" "node.text" msgid "Guides" -msgstr "Guidat" +msgstr "Vijat udhëzuese" #: scalc.tree msgctxt "" @@ -78,7 +78,7 @@ "08\n" "help_section.text" msgid "Spreadsheets" -msgstr "Microsoft &Excel tabela kalkuluese" +msgstr "Tabelat kalkuluese" #: scalc.tree msgctxt "" @@ -86,7 +86,7 @@ "0801\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "Informacioni i përgjithshëm dhe Përdorimi i Ndërfaqes së Përdoruesit" +msgstr "Informacion i përgjithshëm dhe Përdorimi i Ndërfaqes së Përdoruesit" #: scalc.tree msgctxt "" @@ -350,7 +350,7 @@ "10071\n" "node.text" msgid "Digital Signatures" -msgstr "" +msgstr "Nënshkrimi digjital..." #: shared.tree msgctxt "" @@ -606,7 +606,7 @@ "0411\n" "node.text" msgid "Slide Shows" -msgstr "" +msgstr "Prezantime" #: smath.tree msgctxt "" @@ -791,7 +791,7 @@ "0215\n" "node.text" msgid "Numbering and Lists" -msgstr "" +msgstr "Numërzimi dhe Listat " #: swriter.tree msgctxt "" @@ -799,7 +799,7 @@ "0216\n" "node.text" msgid "Spellchecking, Thesaurus, and Languages" -msgstr "" +msgstr "Kontrolli drejtshkrimor, Fjalori, dhe Gjuhët" #: swriter.tree msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/sq/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/sq/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-6.1.4/translations/source/sq/helpcontent2/source/text/sbasic/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sq/helpcontent2/source/text/sbasic/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-25 13:24+0200\n" -"PO-Revision-Date: 2016-05-02 13:49+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2019-01-07 09:24+0000\n" +"Last-Translator: Sidorela Uku \n" "Language-Team: LANGUAGE \n" "Language: sq\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: 1462196962.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546853082.000000\n" #: access2base.xhp msgctxt "" @@ -46,7 +46,7 @@ "hd_idA2B003\n" "help.text" msgid "What is Access2Base?" -msgstr "" +msgstr "Çfarë është Access2Base?" #: access2base.xhp msgctxt "" @@ -54,7 +54,7 @@ "par_idA2B004\n" "help.text" msgid "Access2Base is a LibreOffice Basic library of macros for (business or personal) application developers and advanced users. It is one of the libraries stored in \"LibreOffice macros and dialogs\"." -msgstr "" +msgstr "Access2Base është një librari Themelore LibreOffice e makrove për zhvillues programesh (personalë ose biznesi) dhe përdorues të avancuar. Ajo është një nga libraritë e ruajtura në \"LibreOffice makro dhe dialogë\". " #: access2base.xhp msgctxt "" @@ -62,7 +62,7 @@ "par_idA2B005\n" "help.text" msgid "The functionalities provided by the implemented macros are all directly inspired by Microsoft Access. The macros are callable mainly from a LibreOffice Base application, but also from any LibreOffice document (Writer, Calc, ...) where access to data stored in a database makes sense." -msgstr "" +msgstr "Këto funksionalitete të mundësuara duke implementuar macros janë të gjitha të frymëzuara nga Microsoft Access. Macros janë kërkueshme kryesisht nga një aplikacion LibreOffice Base, por gjithashtu nga çdo dokument LibreOffice (Writer, Calc, ...) ku aksesi në të dhënat e ruajtura në një bazë të dhënash bëjnë sens." #: access2base.xhp msgctxt "" @@ -70,7 +70,7 @@ "par_idA2B006\n" "help.text" msgid "The API provided by Access2Base is intended to be more concise, intuitive and easy to learn than the standard UNO API (API = Application Programming Interface)." -msgstr "" +msgstr "API e dhënë nga Access2Base është menduar të jetë më konçize, intuitive dhe e thjeshtë të mësohet sesa standardja UNO API (API = Application Programming Interface)." #: access2base.xhp msgctxt "" @@ -78,7 +78,7 @@ "par_idA2B007\n" "help.text" msgid "The library is documented online on http://www.access2base.com." -msgstr "" +msgstr "Libraria është e dokumentuar online në http://www.access2base.com." #: access2base.xhp msgctxt "" @@ -86,7 +86,7 @@ "hd_idA2B008\n" "help.text" msgid "The implemented macros include:" -msgstr "" +msgstr "Makrot e implementuara përfshijnë: " #: access2base.xhp msgctxt "" @@ -94,7 +94,7 @@ "par_idA2B009\n" "help.text" msgid "a simplified and extensible API for forms, dialogs and controls manipulations similar with the Microsoft Access object model," -msgstr "" +msgstr "një API e thjeshtuar dhe zgjeruar për modifikimet e formave, dialogjeve dhe kontrolleve e ngjashme me modelin e objektit Microsoft Access," #: access2base.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_idA2B010\n" "help.text" msgid "an API for database access with the table, query, recordset and field objects," -msgstr "" +msgstr "një API për aksesin në bazën e të dhënave me tabelën, query, rekordet dhe objektet e fushës" #: access2base.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_idA2B011\n" "help.text" msgid "a number of actions with a syntax identical to their corresponding Microsoft Access macros/actions," -msgstr "" +msgstr "një numër i veprimeve me një sintaksë identike me marcos/veprimet korresponduese me Microsoft Access," #: access2base.xhp msgctxt "" @@ -118,7 +118,7 @@ "par_idA2B012\n" "help.text" msgid "the DLookup, DSum, ... database functions," -msgstr "" +msgstr "DLookup, DSum, ... funksionet e bazës së të dhënave," #: access2base.xhp msgctxt "" @@ -126,7 +126,7 @@ "par_idA2B013\n" "help.text" msgid "the support of the shortcut notations like Forms!myForm!myControl" -msgstr "" +msgstr "suporti per shenime te shkurtruara si Forms!myForm!myControl " #: access2base.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_idA2B016\n" "help.text" msgid "facilities for programming form, dialog and control events and" -msgstr "" +msgstr "lehtësi për programimin e eventeve për forma, dialog dhe kontrolle dhe" #: access2base.xhp msgctxt "" @@ -158,7 +158,7 @@ "par_idA2B017\n" "help.text" msgid "the support of both embedded forms and standalone (Writer) forms." -msgstr "" +msgstr "suporti i të dyja formave të ngulitura dhe të pavaruara (Writer)." #: access2base.xhp msgctxt "" @@ -166,7 +166,7 @@ "hd_idA2B018\n" "help.text" msgid "Compare Access2Base with Microsoft Access VBA" -msgstr "" +msgstr "Krahaso Access2Base me MSAccess VBA" #: control_properties.xhp msgctxt "" @@ -174,7 +174,7 @@ "tit\n" "help.text" msgid "Changing the Properties of Controls in the Dialog Editor" -msgstr "" +msgstr "Ndryshimi i veçorive të kontrollit në Dialog Editor" #: control_properties.xhp msgctxt "" @@ -182,7 +182,7 @@ "bm_id3145786\n" "help.text" msgid "properties; controls in dialog editorchanging;control propertiescontrols;changing propertiesdialog editor;changing control properties" -msgstr "" +msgstr "veçoritë; kontrolli në dialog editorndryshim;veçoritë e kontrollitkontrolle;ndryshimi i veçoroivedialog editor;ndryshimi i veçorive të kontrollit" #: control_properties.xhp msgctxt "" @@ -190,7 +190,7 @@ "hd_id3145786\n" "help.text" msgid "Changing the Properties of Controls in the Dialog Editor" -msgstr "" +msgstr "Ndryshimi i Vetive të Kontrolleve në Editorin e Dialogut " #: control_properties.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id3147317\n" "help.text" msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime." -msgstr "" +msgstr "Mund të ndryshosh mënyrën e kontrollit që i shton një dritareje dialoguese. Për shembull, mund të ndryshosh ngjyrën, emrin dhe madhësinë e butonit që do të shtosh. Mund të ndryshosh shumicën e mënyrave të kontrollit kur krijon ose ndryshon një dritare dialoguese. Megjithatë, mund të ndryshosh vetëm disa mënyra në të njëjtën kohë. " #: control_properties.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id3145749\n" "help.text" msgid "To change the properties of a control in design mode, right-click the control, and then choose Properties." -msgstr "" +msgstr "Pë të ndryshuar veçoritë e kontrollit në modalitetin e dizanjit, kliko me të djathtën te kontrolli dhe zgjidh Properties." #: create_dialog.xhp msgctxt "" @@ -222,7 +222,7 @@ "bm_id3149346\n" "help.text" msgid "dialogs;creating Basic dialogs" -msgstr "" +msgstr "dialogjet;Krijimi i dialogjeve bazikë" #: create_dialog.xhp msgctxt "" @@ -230,7 +230,7 @@ "hd_id3149346\n" "help.text" msgid "Creating a Basic Dialog" -msgstr "" +msgstr "Krijimi i një dialogu Bazikë" #: create_dialog.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_id3163802\n" "help.text" msgid "Choose Tools - Macros - Organize Dialogs, and then click New." -msgstr "" +msgstr "ZgjidhMjetet - Makrot - Organizo Dialogjet, dhe më pas kliko New." #: create_dialog.xhp msgctxt "" @@ -246,7 +246,7 @@ "par_id3150447\n" "help.text" msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose Rename." -msgstr "" +msgstr "Vendos një emër per dritaren dialoguese, dhe kliko OK. Për të riemërtuar dritaren dialoguese më vonë, kliko me të djathtën mbi emrin në skedë dhe zgjidh Riemërto" #: create_dialog.xhp msgctxt "" @@ -254,7 +254,7 @@ "par_idN1065F\n" "help.text" msgid "Click Edit. The Basic dialog editor opens and contains a blank dialog." -msgstr "" +msgstr "Kliko Modifiko. Editori i dritares dialoguese hapet dhe përmban një dritare bosh." #: create_dialog.xhp msgctxt "" @@ -262,7 +262,7 @@ "par_id3153726\n" "help.text" msgid "If you do not see the Toolbox bar, click the arrow next to the Insert Controls icon to open the Toolbox bar." -msgstr "" +msgstr "Nëse nuk shikoni shiritin Toolbox, klikoni në hapësirën ngjitur me ikonën Insert Controls për të hapur shiritin Toolbox." #: create_dialog.xhp msgctxt "" @@ -270,7 +270,7 @@ "par_id3148455\n" "help.text" msgid "Click a tool and then drag in the dialog to create the control." -msgstr "" +msgstr "Kliko një mjet dhe më pas tërhiqe atë te dritarja dialoguese për të krijuar kontrollin." #: insert_control.xhp msgctxt "" @@ -278,7 +278,7 @@ "tit\n" "help.text" msgid "Creating Controls in the Dialog Editor" -msgstr "" +msgstr "Krijimi i kontrolleve në Editorin e Dritareve dialoguese" #: insert_control.xhp msgctxt "" @@ -286,7 +286,7 @@ "bm_id3149182\n" "help.text" msgid "controls; creating in the dialog editordialog editor;creating controls" -msgstr "" +msgstr "kontrolle; krijimi në dialog editordialog editor;krijimi i kontrolleve" #: insert_control.xhp msgctxt "" @@ -294,7 +294,7 @@ "hd_id3149182\n" "help.text" msgid "Creating Controls in the Dialog Editor" -msgstr "" +msgstr "Krijimi i Kontrollit në Dialog Editor" #: insert_control.xhp msgctxt "" @@ -302,7 +302,7 @@ "par_id3146797\n" "help.text" msgid "Use the tools on the Toolbox of the BASIC dialog editor to add controls to your dialog." -msgstr "" +msgstr "Përdorni veglën në Toolbox të përpunuesit bazë të dialogut për të vendosur kontroll në dialogun tuaj." #: insert_control.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_id3150276\n" "help.text" msgid "To open the Toolbox, click the arrow next to the Insert Controls icon on the Macro toolbar." -msgstr "" +msgstr "Për të hapur Toolbox, klikoni shigjetat ngjitur ikonës Insert Controls në shiritin e mjeteve Macro." #: insert_control.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id3145068\n" "help.text" msgid "Click a tool on the toolbar, for example, Button." -msgstr "" +msgstr "Kliko një nga mjetet në menu, për shembull, Buton." #: insert_control.xhp msgctxt "" @@ -326,7 +326,7 @@ "par_id3153360\n" "help.text" msgid "On the dialog, drag the button to the size you want." -msgstr "" +msgstr "Në dritaren dialoguese, tërhiq butonin në madhësinë që dëshiron." #: sample_code.xhp msgctxt "" @@ -334,7 +334,7 @@ "tit\n" "help.text" msgid "Programming Examples for Controls in the Dialog Editor" -msgstr "" +msgstr "Shembuj Programimi për kontrollet në Editorin Dialogues" #: sample_code.xhp msgctxt "" @@ -366,7 +366,7 @@ "par_id3154141\n" "help.text" msgid "Be consistent with uppercase and lowercase letter when you attach a control to an object variable." -msgstr "" +msgstr "Jini i qëndrueshëm me shkronjat e mëdha dhe të vogla kur bashkangjit një kontroll në një variabël objekt." #: sample_code.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sq/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2017-12-15 09:49+0000\n" "Last-Translator: Anxhelo Lushka \n" "Language-Team: sq\n" @@ -23238,15 +23238,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ss/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 08:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23546,15 +23546,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/st/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/st/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/st/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 08:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23562,15 +23562,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-02 10:16+0000\n" "Last-Translator: Påvel Nicklasson \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: 1541153768.000000\n" #: BaseWindowState.xcu @@ -22967,15 +22967,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D modell..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 09:06+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23265,15 +23265,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/szl/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-08-29 09:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -22906,15 +22906,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-21 17:49+0000\n" "Last-Translator: அருண் குமார் (Arun Kumar) \n" "Language-Team: Tamil <>\n" @@ -23081,15 +23081,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D மாதிரி..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/te/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/te/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/te/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-23 13:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Telugu \n" @@ -23252,15 +23252,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tg/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 09:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23260,15 +23260,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/th/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 09:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23249,15 +23249,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ti/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ti/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ti/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ti/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 09:50+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -22966,15 +22966,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tn/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 10:16+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23550,15 +23550,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/tr/chart2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/tr/chart2/messages.po --- libreoffice-l10n-6.1.4/translations/source/tr/chart2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tr/chart2/messages.po 2019-01-30 17:56:45.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: 2018-05-22 13:16+0200\n" -"PO-Revision-Date: 2018-02-27 22:14+0000\n" -"Last-Translator: Necdet Yucel \n" +"POT-Creation-Date: 2018-11-19 16:56+0100\n" +"PO-Revision-Date: 2019-01-02 15:11+0000\n" +"Last-Translator: sabri ünal \n" "Language-Team: LANGUAGE \n" "Language: tr\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: 1519769680.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1546441915.000000\n" #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" @@ -2801,7 +2801,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:502 msgctxt "tp_Scale|TXT_ORIGIN" msgid "Re_ference value" -msgstr "Başvuru değeri" +msgstr "Baş_vuru değeri" #: chart2/uiconfig/ui/tp_Scale.ui:524 msgctxt "tp_Scale|CBX_AUTO_ORIGIN" diff -Nru libreoffice-l10n-6.1.4/translations/source/tr/connectivity/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/tr/connectivity/messages.po --- libreoffice-l10n-6.1.4/translations/source/tr/connectivity/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tr/connectivity/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-11-01 02:35+0000\n" +"PO-Revision-Date: 2019-01-02 15:12+0000\n" "Last-Translator: sabri ünal \n" "Language-Team: LANGUAGE \n" "Language: tr\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: 1541039702.000000\n" +"X-POOTLE-MTIME: 1546441950.000000\n" #. = the mozab driver's resource strings #: connectivity/inc/strings.hrc:26 @@ -76,7 +76,7 @@ #: connectivity/inc/strings.hrc:38 msgctxt "STR_WRONG_PARAM_INDEX" msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source." -msgstr "'$pos$' konumundaki parametreyi belirlemek istediniz fakat orada sadece '$count$' parametresine(lerine) izin verilir. Kurulmasının bir sebebi de \"ParameterNameSubstitution\" özelliği veri kaynağında TRUE olarak tanımlanmamış olmasıdır." +msgstr "'$pos$' konumundaki parametreyi belirlemek istediniz fakat orada sadece '$count$' parametresine(lerine) izin verilir. Bir diğer sebep de \"ParameterNameSubstitution\" özelliği veri kaynağında TRUE olarak tanımlanmamış olabilir." #: connectivity/inc/strings.hrc:39 msgctxt "STR_NO_INPUTSTREAM" diff -Nru libreoffice-l10n-6.1.4/translations/source/tr/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/tr/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/tr/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tr/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-11-01 02:42+0000\n" +"PO-Revision-Date: 2019-01-02 15:14+0000\n" "Last-Translator: sabri ünal \n" "Language-Team: LANGUAGE \n" "Language: tr\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: 1541040142.000000\n" +"X-POOTLE-MTIME: 1546442087.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -1027,8 +1027,8 @@ "does not exist." msgstr "" "$file$\n" -" dosyası\n" -" yok." +"dosyası\n" +"yok." #: cui/inc/strings.hrc:237 msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE" @@ -1738,7 +1738,7 @@ #: cui/inc/treeopt.hrc:38 msgctxt "SID_GENERAL_OPTIONS_RES" msgid "Personalization" -msgstr "Kişiselleştirmek" +msgstr "Kişiselleştir" #: cui/inc/treeopt.hrc:39 msgctxt "SID_GENERAL_OPTIONS_RES" @@ -2068,7 +2068,7 @@ #: cui/inc/treeopt.hrc:144 msgctxt "SID_FILTER_DLG_RES" msgid "Microsoft Office" -msgstr "Microsoft Ofis" +msgstr "Microsoft Office" #: cui/inc/treeopt.hrc:145 msgctxt "SID_FILTER_DLG_RES" @@ -2233,7 +2233,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:157 msgctxt "accelconfigpage|load" msgid "_Load..." -msgstr "Yükle..." +msgstr "_Yükle..." #: cui/uiconfig/ui/accelconfigpage.ui:172 msgctxt "accelconfigpage|save" @@ -2268,7 +2268,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:50 msgctxt "acorexceptpage|autoabbrev" msgid "_AutoInclude" -msgstr "Otomatik İçer" +msgstr "Otom_atik İçer" #: cui/uiconfig/ui/acorexceptpage.ui:83 msgctxt "acorexceptpage|newabbrev-atkobject" @@ -2293,7 +2293,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:220 msgctxt "acorexceptpage|autodouble" msgid "A_utoInclude" -msgstr "Otomatik İçer" +msgstr "Ot_omatik İçer" #: cui/uiconfig/ui/acorexceptpage.ui:253 msgctxt "acorexceptpage|newdouble-atkobject" @@ -2303,7 +2303,7 @@ #: cui/uiconfig/ui/acorexceptpage.ui:265 msgctxt "acorexceptpage|replace1" msgid "_Replace" -msgstr "Değiştir" +msgstr "Değişti_r" #: cui/uiconfig/ui/acorexceptpage.ui:289 msgctxt "acorexceptpage|deldouble-atkobject" @@ -2318,12 +2318,12 @@ #: cui/uiconfig/ui/acorreplacepage.ui:38 msgctxt "acorreplacepage|replace" msgid "_Replace" -msgstr "Değiştir" +msgstr "_Değiştir" #: cui/uiconfig/ui/acorreplacepage.ui:121 msgctxt "acorreplacepage|label1" msgid "Repla_ce" -msgstr "Değiştir" +msgstr "~Değiştir" #: cui/uiconfig/ui/acorreplacepage.ui:141 msgctxt "acorreplacepage|label2" @@ -2408,7 +2408,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:197 msgctxt "applylocalizedpage|defaultsingle" msgid "_Default" -msgstr "Varsayılan" +msgstr "_Varsayılan" #: cui/uiconfig/ui/applylocalizedpage.ui:205 msgctxt "applylocalizedpage|defaultsingle-atkobject" @@ -2438,7 +2438,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:318 msgctxt "applylocalizedpage|doublereplace" msgid "Repla_ce" -msgstr "Değiştir" +msgstr "_Değiştir" #: cui/uiconfig/ui/applylocalizedpage.ui:338 msgctxt "applylocalizedpage|label6" @@ -2458,7 +2458,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:397 msgctxt "applylocalizedpage|defaultdouble" msgid "_Default" -msgstr "Varsayılan" +msgstr "_Varsayılan" #: cui/uiconfig/ui/applylocalizedpage.ui:405 msgctxt "applylocalizedpage|defaultdouble-atkobject" @@ -2933,7 +2933,7 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:526 msgctxt "bitmaptabpage|label8" msgid "Preview" -msgstr "Ön izleme" +msgstr "Önizleme" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:14 msgctxt "blackorwhitelistentrydialog|os-liststore" diff -Nru libreoffice-l10n-6.1.4/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tr/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-11-01 00:25+0000\n" "Last-Translator: sabri ünal \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: 1541031933.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3B Model..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ts/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 10:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23579,15 +23579,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/tt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/tt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/tt/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/tt/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 10:32+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Tatar <>\n" @@ -23175,15 +23175,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ug/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-13 15:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23068,15 +23068,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D مودېل…" - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-07-03 09:35+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: translation@linux.org.ua\n" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Просторова модель..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ur/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ur/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ur/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ur/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-12-07 10:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -22944,15 +22944,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/uz/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 11:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23241,15 +23241,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/ve/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 11:21+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23584,15 +23584,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2018-09-12 15:16+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: 1536765386.000000\n" #: BaseWindowState.xcu @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "Modeło 3D..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/vi/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23233,15 +23233,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/xh/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23546,15 +23546,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/basctl/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/basctl/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/basctl/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/basctl/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-11-25 05:34+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-21 17:37+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543124087.000000\n" +"X-POOTLE-MTIME: 1548092249.000000\n" #: basctl/inc/strings.hrc:25 msgctxt "RID_STR_FILTER_ALLFILES" @@ -331,7 +331,7 @@ #: basctl/inc/strings.hrc:87 msgctxt "RID_STR_TRANSLATION_DEFAULT" msgid "[Default Language]" -msgstr "缺省语言" +msgstr "[默认语言]" #: basctl/inc/strings.hrc:88 msgctxt "RID_STR_DOCUMENT_OBJECTS" @@ -486,12 +486,12 @@ #: basctl/inc/strings.hrc:114 msgctxt "RID_STR_DEF_LANG" msgid "[Default Language]" -msgstr "[Default Language]" +msgstr "[默认语言]" #: basctl/inc/strings.hrc:115 msgctxt "RID_STR_CREATE_LANG" msgid "" -msgstr "<点击“添加”以创建语言资源>" +msgstr "<点击「添加」以创建语言资源>" #: basctl/inc/strings.hrc:116 msgctxt "RID_STR_EXPORTPACKAGE" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/chart2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/chart2/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/chart2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/chart2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:56+0100\n" -"PO-Revision-Date: 2018-11-25 05:43+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-20 03:54+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543124582.000000\n" +"X-POOTLE-MTIME: 1547956476.000000\n" #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" @@ -330,7 +330,7 @@ #: chart2/inc/strings.hrc:86 msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS" msgid "Trend line %FORMULA with accuracy R² = %RSQUARED" -msgstr "精度为 R² = % RSQUARED 的趋势线 % FORMULA" +msgstr "精度为 R² = %RSQUARED 的趋势线 %FORMULA" #: chart2/inc/strings.hrc:87 msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS" @@ -401,7 +401,7 @@ #, c-format msgctxt "STR_TIP_DATASERIES" msgid "Data Series '%SERIESNAME'" -msgstr "数据序列 '%SERIESNAME'" +msgstr "数据序列「%SERIESNAME」" #: chart2/inc/strings.hrc:101 msgctxt "STR_TIP_DATAPOINT_INDEX" @@ -421,7 +421,7 @@ #: chart2/inc/strings.hrc:104 msgctxt "STR_STATUS_DATAPOINT_MARKED" msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES" -msgstr "已选中数据序列 %%SERIESNUMBER 中的数据点 %%POINTNUMBER,值:%%POINTVALUES" +msgstr "已选中数据序列 %SERIESNUMBER 中的数据点 %POINTNUMBER,值:%POINTVALUES" #: chart2/inc/strings.hrc:105 msgctxt "STR_STATUS_OBJECT_MARKED" @@ -436,7 +436,7 @@ #: chart2/inc/strings.hrc:107 msgctxt "STR_OBJECT_FOR_SERIES" msgid "%OBJECTNAME for Data Series '%SERIESNAME'" -msgstr "数据序列 '%SERIESNAME' 的 %OBJECTNAME" +msgstr "数据序列「%SERIESNAME」的 %OBJECTNAME" #: chart2/inc/strings.hrc:108 msgctxt "STR_OBJECT_FOR_ALL_SERIES" @@ -2801,7 +2801,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:502 msgctxt "tp_Scale|TXT_ORIGIN" msgid "Re_ference value" -msgstr "参考值(_F)" +msgstr "引用值(_F)" #: chart2/uiconfig/ui/tp_Scale.ui:524 msgctxt "tp_Scale|CBX_AUTO_ORIGIN" @@ -3016,7 +3016,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:211 msgctxt "tp_axisLabel|textflowL" msgid "Text Flow" -msgstr "文本方向" +msgstr "文字流" #: chart2/uiconfig/ui/tp_axisLabel.ui:279 msgctxt "tp_axisLabel|degreeL" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/connectivity/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/connectivity/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/connectivity/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/connectivity/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-02-07 11:00+0000\n" -"Last-Translator: Playhi <000902play@gmail.com>\n" +"PO-Revision-Date: 2018-12-18 02:19+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1518001205.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545099548.000000\n" #. = the mozab driver's resource strings #: connectivity/inc/strings.hrc:26 @@ -136,7 +136,7 @@ #: connectivity/inc/strings.hrc:50 msgctxt "STR_CANNOT_CONVERT_STRING" msgid "The string '$string$' cannot be converted using the encoding '$charset$'." -msgstr "无法使用编码 '$charset$' 转换字符串 '$string$' 。" +msgstr "无法使用编码「$charset$」转换字符串「$string$」。" #: connectivity/inc/strings.hrc:51 msgctxt "STR_URI_SYNTAX_ERROR" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-11-25 06:01+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-24 08:53+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543125702.000000\n" +"X-POOTLE-MTIME: 1548319985.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -400,7 +400,7 @@ #: cui/inc/strings.hrc:100 msgctxt "RID_SVXSTR_MISSING_GLYPH" msgid "Missing Glyph" -msgstr "缺失的字型:" +msgstr "缺失的字型" #: cui/inc/strings.hrc:101 msgctxt "RID_SVXSTR_ADD_FAVORITES" @@ -456,7 +456,7 @@ #: cui/inc/strings.hrc:112 msgctxt "RID_SVXSTR_EDITHINT" msgid "[Enter text here]" -msgstr "‘[’在此输入文本‘]’" +msgstr "[在此输入文本]" #: cui/inc/strings.hrc:113 msgctxt "RID_SVXSTR_HANGUL" @@ -866,7 +866,7 @@ #: cui/inc/strings.hrc:196 msgctxt "RID_STR_SEARCH_GENERAL_ERROR" msgid "An unknown error occurred. The search could not be finished." -msgstr "出现未知的错误。无法完成查找!" +msgstr "出现未知的错误。无法完成查找。" #: cui/inc/strings.hrc:197 msgctxt "RID_STR_OVERFLOW_FORWARD" @@ -901,7 +901,7 @@ #: cui/inc/strings.hrc:204 msgctxt "RID_SVXSTR_GALLERY_ALLFILES" msgid "" -msgstr "<全部的文件>" +msgstr "<所有文件>" #: cui/inc/strings.hrc:205 msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS" @@ -951,7 +951,7 @@ #: cui/inc/strings.hrc:216 msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2" msgid "Set the password by entering the same password in both boxes." -msgstr "设置密码:在两个框中输入相同的密码" +msgstr "设置密码: 在两个框中输入相同的密码。" #: cui/inc/strings.hrc:218 msgctxt "STR_AUTOLINK" @@ -1126,12 +1126,12 @@ #: cui/inc/strings.hrc:254 msgctxt "RID_SVXSTR_ERROR_AT_LINE" msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER." -msgstr "运行 %LANGUAGENAME 脚本 %SCRIPTNAME 时出错,它位于行:%LINENUMBER。" +msgstr "运行 %LANGUAGENAME 脚本 %SCRIPTNAME 时出错,它位于行: %LINENUMBER。" #: cui/inc/strings.hrc:255 msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE" msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER." -msgstr "运行 %LANGUAGENAME 脚本 %SCRIPTNAME 时出现异常,它位于行:%LINENUMBER。" +msgstr "运行 %LANGUAGENAME 脚本 %SCRIPTNAME 时出现异常,它位于行: %LINENUMBER。" #: cui/inc/strings.hrc:256 #, c-format @@ -1260,7 +1260,7 @@ #: cui/inc/strings.hrc:298 msgctxt "RID_SVXSTR_HYPH" msgid "Hyphenation" -msgstr "断词处理" +msgstr "断词" #: cui/inc/strings.hrc:299 msgctxt "RID_SVXSTR_THES" @@ -1300,27 +1300,27 @@ #: cui/inc/strings.hrc:306 msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN" msgid "Minimal number of characters for hyphenation: " -msgstr "断词处理时最少的字符数:" +msgstr "断词处理时最少的字符数:" #: cui/inc/strings.hrc:307 msgctxt "RID_SVXSTR_NUM_PRE_BREAK" msgid "Characters before line break: " -msgstr "连字符之前的字母数:" +msgstr "连字符之前的字母数:" #: cui/inc/strings.hrc:308 msgctxt "RID_SVXSTR_NUM_POST_BREAK" msgid "Characters after line break: " -msgstr "连字符之后的字母数:" +msgstr "连字符之后的字母数:" #: cui/inc/strings.hrc:309 msgctxt "RID_SVXSTR_HYPH_AUTO" msgid "Hyphenate without inquiry" -msgstr "自动断字而不询问" +msgstr "自动断词而不询问" #: cui/inc/strings.hrc:310 msgctxt "RID_SVXSTR_HYPH_SPECIAL" msgid "Hyphenate special regions" -msgstr "特殊区域断字" +msgstr "特殊区域断词" #: cui/inc/strings.hrc:312 msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED" @@ -1364,12 +1364,12 @@ #: cui/inc/strings.hrc:319 msgctxt "RID_SVXSTR_DESC_GRADIENT" msgid "Please enter a name for the gradient:" -msgstr "请为新的渐变输入一个名称:" +msgstr "请为新的渐变输入一个名称:" #: cui/inc/strings.hrc:320 msgctxt "RID_SVXSTR_DESC_NEW_BITMAP" msgid "Please enter a name for the bitmap:" -msgstr "请您在此为新的位图输入一个名称:" +msgstr "请您在此为新的位图输入一个名称:" #: cui/inc/strings.hrc:321 msgctxt "RID_SVXSTR_DESC_EXT_BITMAP" @@ -1379,12 +1379,12 @@ #: cui/inc/strings.hrc:322 msgctxt "RID_SVXSTR_DESC_NEW_PATTERN" msgid "Please enter a name for the pattern:" -msgstr "请为该模式输入一个名称:" +msgstr "请为该模式输入一个名称:" #: cui/inc/strings.hrc:323 msgctxt "RID_SVXSTR_DESC_LINESTYLE" msgid "Please enter a name for the line style:" -msgstr "请为新的线条样式输入一个名称:" +msgstr "请为新的线条样式输入一个名称:" #: cui/inc/strings.hrc:324 msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE" @@ -1398,7 +1398,7 @@ #: cui/inc/strings.hrc:325 msgctxt "RID_SVXSTR_DESC_HATCH" msgid "Please enter a name for the hatching:" -msgstr "请为这个阴影线输入一个名称:" +msgstr "请为这个阴影线输入一个名称:" #: cui/inc/strings.hrc:326 msgctxt "RID_SVXSTR_CHANGE" @@ -1413,7 +1413,7 @@ #: cui/inc/strings.hrc:328 msgctxt "RID_SVXSTR_DESC_COLOR" msgid "Please enter a name for the new color:" -msgstr "请您在此为新的颜色输入一个名称:" +msgstr "请您在此为新的颜色输入一个名称:" #: cui/inc/strings.hrc:329 msgctxt "RID_SVXSTR_TABLE" @@ -1433,22 +1433,22 @@ #: cui/inc/strings.hrc:332 msgctxt "RID_SVXSTR_CHARNAME_FAMILY" msgid "Family:" -msgstr "家族:" +msgstr "家族:" #: cui/inc/strings.hrc:333 msgctxt "RID_SVXSTR_CHARNAME_FONT" msgid "Font:" -msgstr "字体:" +msgstr "字体:" #: cui/inc/strings.hrc:334 msgctxt "RID_SVXSTR_CHARNAME_STYLE" msgid "Style:" -msgstr "样式:" +msgstr "样式:" #: cui/inc/strings.hrc:335 msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE" msgid "Typeface:" -msgstr "字型:" +msgstr "字型:" #: cui/inc/strings.hrc:336 msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING" @@ -1518,7 +1518,7 @@ #: cui/inc/strings.hrc:349 msgctxt "RID_SVXSTR_BULLET" msgid "Replace bullets with: " -msgstr "项目符号替换成: " +msgstr "项目符号替换成: " #: cui/inc/strings.hrc:350 msgctxt "RID_SVXSTR_RIGHT_MARGIN" @@ -1528,7 +1528,7 @@ #: cui/inc/strings.hrc:351 msgctxt "RID_SVXSTR_NUM" msgid "Bulleted and numbered lists. Bullet symbol: " -msgstr "项目和编号列表。项目符号:" +msgstr "项目和编号列表。项目符号:" #: cui/inc/strings.hrc:352 msgctxt "RID_SVXSTR_BORDER" @@ -1583,7 +1583,7 @@ #: cui/inc/strings.hrc:363 msgctxt "RID_SVXSTR_SELECTEDPERSONA" msgid "Selected Theme: " -msgstr "已选择的主题:" +msgstr "已选择的主题: " #: cui/inc/strings.hrc:364 msgctxt "RID_SVXSTR_SEARCHING" @@ -1693,7 +1693,7 @@ #: cui/inc/strings.hrc:386 msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY" msgid "Signed by: %1" -msgstr "签名者:%1" +msgstr "签名者: %1" #: cui/inc/treeopt.hrc:30 msgctxt "SID_GENERAL_OPTIONS_RES" @@ -2138,12 +2138,12 @@ #: cui/uiconfig/ui/aboutconfigvaluedialog.ui:87 msgctxt "aboutconfigvaluedialog|label1" msgid "Value:" -msgstr "值:" +msgstr "值:" #: cui/uiconfig/ui/aboutdialog.ui:6 msgctxt "aboutdialog|textbuffer1" msgid "Version: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX" -msgstr "版本:%ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX" +msgstr "版本: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX" #: cui/uiconfig/ui/aboutdialog.ui:11 msgctxt "aboutdialog|AboutDialog" @@ -2168,17 +2168,17 @@ #: cui/uiconfig/ui/aboutdialog.ui:128 msgctxt "aboutdialog|buildid" msgid "Build ID: $BUILDID" -msgstr "Build ID:$BUILDID" +msgstr "Build ID: $BUILDID" #: cui/uiconfig/ui/aboutdialog.ui:141 msgctxt "aboutdialog|locale" msgid "Locale: $LOCALE" -msgstr "区域语言:$LOCALE" +msgstr "区域语言: $LOCALE" #: cui/uiconfig/ui/aboutdialog.ui:174 msgctxt "aboutdialog|buildIdLink" msgid "See Log: $GITHASH" -msgstr "参阅日志:$GITHASH" +msgstr "参阅日志: $GITHASH" #: cui/uiconfig/ui/aboutdialog.ui:191 msgctxt "aboutdialog|description" @@ -2188,12 +2188,14 @@ #: cui/uiconfig/ui/aboutdialog.ui:214 msgctxt "aboutdialog|copyright" msgid "Copyright © 2000–2018 LibreOffice contributors." -msgstr "版权所有 © 2000–2018 LibreOffice 的贡献者。" +msgstr "版权所有 © 2000–2018 LibreOffice 贡献者。" #: cui/uiconfig/ui/aboutdialog.ui:228 msgctxt "aboutdialog|libreoffice" msgid "LibreOffice was based on OpenOffice.org." -msgstr "LibreOffice 基于 OpenOffice.org。" +msgstr "" +"LibreOffice 基于 OpenOffice.org。\n" +"(使用 QQ 的用户,可加入 QQ 群获取帮助:190535062)" #: cui/uiconfig/ui/aboutdialog.ui:242 msgctxt "aboutdialog|derived" @@ -2328,7 +2330,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:141 msgctxt "acorreplacepage|label2" msgid "_With:" -msgstr "替换为(_W):" +msgstr "替换为(_W):" #: cui/uiconfig/ui/acorreplacepage.ui:154 msgctxt "acorreplacepage|textonly" @@ -2563,7 +2565,7 @@ #: cui/uiconfig/ui/asiantypography.ui:59 msgctxt "asiantypography|checkApplySpacing" msgid "Apply spacing between Asian and non-Asian text" -msgstr "在亚洲语言(比如汉字)与非亚洲语言(比如英文字母)之间添加间隙" +msgstr "在亚洲文字与非亚洲文字之间添加间隙" #: cui/uiconfig/ui/asiantypography.ui:82 msgctxt "asiantypography|labelLineChange" @@ -2578,7 +2580,7 @@ #: cui/uiconfig/ui/assigncomponentdialog.ui:98 msgctxt "assigncomponentdialog|label1" msgid "Component method name:" -msgstr "组件方法名称:" +msgstr "组件方法名称:" #: cui/uiconfig/ui/autocorrectdialog.ui:9 msgctxt "autocorrectdialog|AutoCorrectDialog" @@ -2638,12 +2640,12 @@ #: cui/uiconfig/ui/backgroundpage.ui:45 msgctxt "backgroundpage|asft" msgid "A_s:" -msgstr "填充(_S):" +msgstr "填充(_S):" #: cui/uiconfig/ui/backgroundpage.ui:71 msgctxt "backgroundpage|forft" msgid "F_or:" -msgstr "用于(_O):" +msgstr "用于(_O):" #: cui/uiconfig/ui/backgroundpage.ui:91 msgctxt "backgroundpage|tablelb" @@ -2743,7 +2745,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:146 msgctxt "baselinksdialog|LINKS" msgid "Element:" -msgstr "元素:" +msgstr "元素:" #: cui/uiconfig/ui/baselinksdialog.ui:160 msgctxt "baselinksdialog|TYPE" @@ -2768,17 +2770,17 @@ #: cui/uiconfig/ui/baselinksdialog.ui:247 msgctxt "baselinksdialog|SOURCE2" msgid "Element:" -msgstr "元素:" +msgstr "元素:" #: cui/uiconfig/ui/baselinksdialog.ui:261 msgctxt "baselinksdialog|TYPE2" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: cui/uiconfig/ui/baselinksdialog.ui:275 msgctxt "baselinksdialog|UPDATE" msgid "Update:" -msgstr "更新:" +msgstr "更新:" #: cui/uiconfig/ui/baselinksdialog.ui:352 msgctxt "baselinksdialog|AUTOMATIC" @@ -2803,7 +2805,7 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:110 msgctxt "bitmaptabpage|label3" msgid "Style:" -msgstr "样式:" +msgstr "样式:" #: cui/uiconfig/ui/bitmaptabpage.ui:126 msgctxt "bitmaptabpage|bitmapstyle" @@ -2823,17 +2825,17 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:154 msgctxt "bitmaptabpage|label4" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: cui/uiconfig/ui/bitmaptabpage.ui:172 msgctxt "bitmaptabpage|label5" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: cui/uiconfig/ui/bitmaptabpage.ui:198 msgctxt "bitmaptabpage|label6" msgid "Height:" -msgstr "高度:" +msgstr "高度:" #: cui/uiconfig/ui/bitmaptabpage.ui:229 msgctxt "bitmaptabpage|scaletsb" @@ -2843,7 +2845,7 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:260 msgctxt "bitmaptabpage|label7" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: cui/uiconfig/ui/bitmaptabpage.ui:276 msgctxt "bitmaptabpage|positionlb" @@ -2893,17 +2895,17 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:310 msgctxt "bitmaptabpage|label9" msgid "Tiling Position:" -msgstr "平铺位置:" +msgstr "平铺位置:" #: cui/uiconfig/ui/bitmaptabpage.ui:329 msgctxt "bitmaptabpage|label10" msgid "X-Offset:" -msgstr "X 偏移量:" +msgstr "X 偏移量:" #: cui/uiconfig/ui/bitmaptabpage.ui:354 msgctxt "bitmaptabpage|label11" msgid "Y-Offset:" -msgstr "Y 偏移量:" +msgstr "Y 偏移量:" #: cui/uiconfig/ui/bitmaptabpage.ui:399 msgctxt "bitmaptabpage|label15" @@ -2943,27 +2945,27 @@ #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:188 msgctxt "blackorwhitelistentrydialog|label4" msgid "Operating system:" -msgstr "操作系统:" +msgstr "操作系统:" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:201 msgctxt "blackorwhitelistentrydialog|label5" msgid "Version:" -msgstr "版本:" +msgstr "版本:" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:214 msgctxt "blackorwhitelistentrydialog|label6" msgid "OpenCL vendor:" -msgstr "OpenCL 供应商:" +msgstr "OpenCL 供应商:" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:227 msgctxt "blackorwhitelistentrydialog|label7" msgid "Device:" -msgstr "设备:" +msgstr "设备:" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:240 msgctxt "blackorwhitelistentrydialog|label8" msgid "Driver version:" -msgstr "驱动版本:" +msgstr "驱动版本:" #: cui/uiconfig/ui/blackorwhitelistentrydialog.ui:258 msgctxt "blackorwhitelistentrydialog|bledittitle" @@ -3028,17 +3030,17 @@ #: cui/uiconfig/ui/borderpage.ui:71 msgctxt "borderpage|userdefft" msgid "_User-defined:" -msgstr "自定义(_U):" +msgstr "自定义(_U):" #: cui/uiconfig/ui/borderpage.ui:85 msgctxt "borderpage|label14" msgid "Pr_esets:" -msgstr "预置(_E):" +msgstr "预置(_E):" #: cui/uiconfig/ui/borderpage.ui:110 msgctxt "borderpage|rmadjcellbordersft" msgid "_Adjacent Cells:" -msgstr "相邻单元格(_A):" +msgstr "相邻单元格(_A):" #: cui/uiconfig/ui/borderpage.ui:121 msgctxt "borderpage|rmadjcellborders" @@ -3053,7 +3055,7 @@ #: cui/uiconfig/ui/borderpage.ui:176 msgctxt "borderpage|label15" msgid "St_yle:" -msgstr "样式(_Y):" +msgstr "样式(_Y):" #: cui/uiconfig/ui/borderpage.ui:190 msgctxt "borderpage|label16" @@ -3063,7 +3065,7 @@ #: cui/uiconfig/ui/borderpage.ui:204 msgctxt "borderpage|label17" msgid "_Color:" -msgstr "颜色(_C):" +msgstr "颜色(_C):" #: cui/uiconfig/ui/borderpage.ui:253 msgctxt "borderpage|label9" @@ -3073,7 +3075,7 @@ #: cui/uiconfig/ui/borderpage.ui:336 msgctxt "borderpage|leftft" msgid "_Left:" -msgstr "左(_L):" +msgstr "左(_L):" #: cui/uiconfig/ui/borderpage.ui:350 msgctxt "borderpage|rightft" @@ -3083,12 +3085,12 @@ #: cui/uiconfig/ui/borderpage.ui:364 msgctxt "borderpage|topft" msgid "_Top:" -msgstr "顶端(_T):" +msgstr "顶端(_T):" #: cui/uiconfig/ui/borderpage.ui:378 msgctxt "borderpage|bottomft" msgid "_Bottom:" -msgstr "底部(_B):" +msgstr "底部(_B):" #: cui/uiconfig/ui/borderpage.ui:389 msgctxt "borderpage|sync" @@ -3103,17 +3105,17 @@ #: cui/uiconfig/ui/borderpage.ui:454 msgctxt "borderpage|label22" msgid "_Position:" -msgstr "位置(_P):" +msgstr "位置(_P):" #: cui/uiconfig/ui/borderpage.ui:468 msgctxt "borderpage|distanceft" msgid "Distan_ce:" -msgstr "距离(_C):" +msgstr "距离(_C):" #: cui/uiconfig/ui/borderpage.ui:482 msgctxt "borderpage|shadowcolorft" msgid "C_olor:" -msgstr "颜色(_O):" +msgstr "颜色(_O):" #: cui/uiconfig/ui/borderpage.ui:533 msgctxt "borderpage|label11" @@ -3138,7 +3140,7 @@ #: cui/uiconfig/ui/breaknumberoption.ui:15 msgctxt "breaknumberoption|BreakNumberOption" msgid "Hyphenation" -msgstr "断词处理" +msgstr "断词" #: cui/uiconfig/ui/breaknumberoption.ui:99 msgctxt "breaknumberoption|beforelabel" @@ -3203,7 +3205,7 @@ #: cui/uiconfig/ui/calloutpage.ui:74 msgctxt "calloutpage|label2" msgid "_Extension:" -msgstr "扩展(_E):" +msgstr "扩展(_E):" #: cui/uiconfig/ui/calloutpage.ui:123 msgctxt "calloutpage|lengthft" @@ -3218,12 +3220,12 @@ #: cui/uiconfig/ui/calloutpage.ui:164 msgctxt "calloutpage|positionft" msgid "_Position:" -msgstr "位置(_P):" +msgstr "位置(_P):" #: cui/uiconfig/ui/calloutpage.ui:178 msgctxt "calloutpage|byft" msgid "_By:" -msgstr "值(_B):" +msgstr "值(_B):" #: cui/uiconfig/ui/calloutpage.ui:192 msgctxt "calloutpage|position" @@ -3258,7 +3260,7 @@ #: cui/uiconfig/ui/calloutpage.ui:234 msgctxt "calloutpage|label1" msgid "_Spacing:" -msgstr "间隔(_S):" +msgstr "间隔(_S):" #: cui/uiconfig/ui/calloutpage.ui:312 msgctxt "calloutpage|linetypes" @@ -3318,7 +3320,7 @@ #: cui/uiconfig/ui/cellalignment.ui:66 msgctxt "cellalignment|liststoreVertAlign" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: cui/uiconfig/ui/cellalignment.ui:70 msgctxt "cellalignment|liststoreVertAlign" @@ -3328,7 +3330,7 @@ #: cui/uiconfig/ui/cellalignment.ui:74 msgctxt "cellalignment|liststoreVertAlign" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: cui/uiconfig/ui/cellalignment.ui:78 msgctxt "cellalignment|liststoreVertAlign" @@ -3343,12 +3345,12 @@ #: cui/uiconfig/ui/cellalignment.ui:123 msgctxt "cellalignment|labelDegrees" msgid "_Degrees:" -msgstr "度(_D):" +msgstr "度(_D):" #: cui/uiconfig/ui/cellalignment.ui:137 msgctxt "cellalignment|labelRefEdge" msgid "_Reference edge:" -msgstr "基准边缘(_R):" +msgstr "基准边缘(_R):" #: cui/uiconfig/ui/cellalignment.ui:196 msgctxt "cellalignment|checkVertStack" @@ -3378,12 +3380,12 @@ #: cui/uiconfig/ui/cellalignment.ui:308 msgctxt "cellalignment|checkHyphActive" msgid "Hyphenation _active" -msgstr "启用断字处理(_A)" +msgstr "断词开启(_A)" #: cui/uiconfig/ui/cellalignment.ui:334 msgctxt "cellalignment|LabelTxtDir" msgid "Te_xt direction:" -msgstr "文本方向(_X):" +msgstr "文本方向(_X):" #: cui/uiconfig/ui/cellalignment.ui:369 msgctxt "cellalignment|labelProperties" @@ -3473,22 +3475,22 @@ #: cui/uiconfig/ui/charnamepage.ui:46 msgctxt "charnamepage|westlangft-nocjk" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: cui/uiconfig/ui/charnamepage.ui:185 msgctxt "charnamepage|westsizeft-nocjk" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: cui/uiconfig/ui/charnamepage.ui:257 msgctxt "charnamepage|westsizeft-cjk" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: cui/uiconfig/ui/charnamepage.ui:272 msgctxt "charnamepage|westlangft-cjk" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: cui/uiconfig/ui/charnamepage.ui:346 msgctxt "charnamepage|label4" @@ -3498,12 +3500,12 @@ #: cui/uiconfig/ui/charnamepage.ui:415 msgctxt "charnamepage|eastsizeft" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: cui/uiconfig/ui/charnamepage.ui:430 msgctxt "charnamepage|eastlangft" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: cui/uiconfig/ui/charnamepage.ui:503 msgctxt "charnamepage|label5" @@ -3513,12 +3515,12 @@ #: cui/uiconfig/ui/charnamepage.ui:572 msgctxt "charnamepage|ctlsizeft" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: cui/uiconfig/ui/charnamepage.ui:587 msgctxt "charnamepage|ctllangft" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: cui/uiconfig/ui/charnamepage.ui:661 msgctxt "charnamepage|label6" @@ -3608,7 +3610,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:383 msgctxt "colorconfigwin|index" msgid "Index and table shadings" -msgstr "目录和索引阴影" +msgstr "索引与目录阴影" #: cui/uiconfig/ui/colorconfigwin.ui:399 msgctxt "colorconfigwin|section" @@ -3818,7 +3820,7 @@ #: cui/uiconfig/ui/colorpage.ui:82 msgctxt "colorpage|label21" msgid "Palette:" -msgstr "调色版:" +msgstr "调色板:" #: cui/uiconfig/ui/colorpage.ui:122 msgctxt "colorpage|label20" @@ -3978,22 +3980,22 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:281 msgctxt "colorpickerdialog|redRadiobutton" msgid "_Red:" -msgstr "红色(_R):" +msgstr "红色(_R):" #: cui/uiconfig/ui/colorpickerdialog.ui:298 msgctxt "colorpickerdialog|greenRadiobutton" msgid "_Green:" -msgstr "绿色(_G):" +msgstr "绿色(_G):" #: cui/uiconfig/ui/colorpickerdialog.ui:315 msgctxt "colorpickerdialog|blueRadiobutton" msgid "_Blue:" -msgstr "蓝色(_B):" +msgstr "蓝色(_B):" #: cui/uiconfig/ui/colorpickerdialog.ui:370 msgctxt "colorpickerdialog|label2" msgid "Hex _#:" -msgstr "十六进制(_#):" +msgstr "十六进制(_#):" #: cui/uiconfig/ui/colorpickerdialog.ui:399 msgctxt "colorpickerdialog|label1" @@ -4003,17 +4005,17 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:438 msgctxt "colorpickerdialog|hueRadiobutton" msgid "H_ue:" -msgstr "色相(_U):" +msgstr "色相(_U):" #: cui/uiconfig/ui/colorpickerdialog.ui:455 msgctxt "colorpickerdialog|satRadiobutton" msgid "_Saturation:" -msgstr "饱和度(_S):" +msgstr "饱和度(_S):" #: cui/uiconfig/ui/colorpickerdialog.ui:472 msgctxt "colorpickerdialog|brightRadiobutton" msgid "Bright_ness:" -msgstr "亮度(_N):" +msgstr "亮度(_N):" #: cui/uiconfig/ui/colorpickerdialog.ui:531 msgctxt "colorpickerdialog|label3" @@ -4023,17 +4025,17 @@ #: cui/uiconfig/ui/colorpickerdialog.ui:571 msgctxt "colorpickerdialog|label5" msgid "_Cyan:" -msgstr "青色(_C):" +msgstr "青色(_C):" #: cui/uiconfig/ui/colorpickerdialog.ui:586 msgctxt "colorpickerdialog|label6" msgid "_Magenta:" -msgstr "品红色(_M):" +msgstr "品红色(_M):" #: cui/uiconfig/ui/colorpickerdialog.ui:601 msgctxt "colorpickerdialog|label7" msgid "_Yellow:" -msgstr "黄色(_Y):" +msgstr "黄色(_Y):" #: cui/uiconfig/ui/colorpickerdialog.ui:616 msgctxt "colorpickerdialog|label8" @@ -4088,17 +4090,17 @@ #: cui/uiconfig/ui/connectortabpage.ui:85 msgctxt "connectortabpage|FT_LINE_1" msgid "Line _1:" -msgstr "线条 _1:" +msgstr "线条 _1:" #: cui/uiconfig/ui/connectortabpage.ui:99 msgctxt "connectortabpage|FT_LINE_2" msgid "Line _2:" -msgstr "线条 _2:" +msgstr "线条 _2:" #: cui/uiconfig/ui/connectortabpage.ui:113 msgctxt "connectortabpage|FT_LINE_3" msgid "Line _3:" -msgstr "线条 _3:" +msgstr "线条 _3:" #: cui/uiconfig/ui/connectortabpage.ui:167 msgctxt "connectortabpage|label2" @@ -4108,22 +4110,22 @@ #: cui/uiconfig/ui/connectortabpage.ui:203 msgctxt "connectortabpage|FT_HORZ_1" msgid "_Begin horizontal:" -msgstr "起始水平(_B):" +msgstr "起始水平(_B):" #: cui/uiconfig/ui/connectortabpage.ui:217 msgctxt "connectortabpage|FT_HORZ_2" msgid "End _horizontal:" -msgstr "结尾水平(_H):" +msgstr "结尾水平(_H):" #: cui/uiconfig/ui/connectortabpage.ui:231 msgctxt "connectortabpage|FT_VERT_1" msgid "Begin _vertical:" -msgstr "起始垂直(_V):" +msgstr "起始垂直(_V):" #: cui/uiconfig/ui/connectortabpage.ui:245 msgctxt "connectortabpage|FT_VERT_2" msgid "_End vertical:" -msgstr "结尾垂直(_E):" +msgstr "结尾垂直(_E):" #: cui/uiconfig/ui/connectortabpage.ui:311 msgctxt "connectortabpage|label3" @@ -4153,7 +4155,7 @@ #: cui/uiconfig/ui/connpooloptions.ui:102 msgctxt "connpooloptions|driverlabel" msgid "Current driver:" -msgstr "当前驱动:" +msgstr "当前驱动:" #: cui/uiconfig/ui/connpooloptions.ui:133 msgctxt "connpooloptions|enablepooling" @@ -4183,22 +4185,22 @@ #: cui/uiconfig/ui/croppage.ui:97 msgctxt "croppage|label2" msgid "_Left:" -msgstr "左(_L):" +msgstr "左(_L):" #: cui/uiconfig/ui/croppage.ui:123 msgctxt "croppage|label3" msgid "_Right:" -msgstr "右(_R):" +msgstr "右(_R):" #: cui/uiconfig/ui/croppage.ui:161 msgctxt "croppage|label4" msgid "_Top:" -msgstr "顶端(_T):" +msgstr "顶端(_T):" #: cui/uiconfig/ui/croppage.ui:175 msgctxt "croppage|label5" msgid "_Bottom:" -msgstr "底部(_B):" +msgstr "底部(_B):" #: cui/uiconfig/ui/croppage.ui:222 msgctxt "croppage|label1" @@ -4248,27 +4250,27 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:96 msgctxt "cuiimapdlg|label1" msgid "_URL:" -msgstr "_URL:" +msgstr "_URL:" #: cui/uiconfig/ui/cuiimapdlg.ui:137 msgctxt "cuiimapdlg|label2" msgid "F_rame:" -msgstr "框架(_R):" +msgstr "框架(_R):" #: cui/uiconfig/ui/cuiimapdlg.ui:184 msgctxt "cuiimapdlg|label3" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N):" #: cui/uiconfig/ui/cuiimapdlg.ui:225 msgctxt "cuiimapdlg|label4" msgid "Alternative _text:" -msgstr "替代文字(_T):" +msgstr "替代文字(_T):" #: cui/uiconfig/ui/cuiimapdlg.ui:266 msgctxt "cuiimapdlg|label5" msgid "_Description:" -msgstr "说明(_D):" +msgstr "说明(_D):" #: cui/uiconfig/ui/customizedialog.ui:8 msgctxt "customizedialog|CustomizeDialog" @@ -4313,12 +4315,12 @@ #: cui/uiconfig/ui/databaselinkdialog.ui:104 msgctxt "databaselinkdialog|label1" msgid "_Database file:" -msgstr "数据库文件(_D):" +msgstr "数据库文件(_D):" #: cui/uiconfig/ui/databaselinkdialog.ui:148 msgctxt "databaselinkdialog|label4" msgid "Registered _name:" -msgstr "注册的名称(_N):" +msgstr "注册的名称(_N):" #: cui/uiconfig/ui/databaselinkdialog.ui:179 msgctxt "databaselinkdialog|alttitle" @@ -4348,32 +4350,32 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:53 msgctxt "dimensionlinestabpage|FT_LINE_DIST" msgid "Line _distance:" -msgstr "线条间隔(_D):" +msgstr "线条间隔(_D):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:67 msgctxt "dimensionlinestabpage|FT_HELPLINE_OVERHANG" msgid "Guide _overhang:" -msgstr "辅助线延长(_O):" +msgstr "辅助线延长(_O):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:81 msgctxt "dimensionlinestabpage|FT_HELPLINE_DIST" msgid "_Guide distance:" -msgstr "辅助线间隔(_G):" +msgstr "辅助线间隔(_G):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:95 msgctxt "dimensionlinestabpage|FT_HELPLINE1_LEN" msgid "_Left guide:" -msgstr "左辅助线(_L):" +msgstr "左辅助线(_L):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:109 msgctxt "dimensionlinestabpage|FT_HELPLINE2_LEN" msgid "_Right guide:" -msgstr "右辅助线(_R):" +msgstr "右辅助线(_R):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:123 msgctxt "dimensionlinestabpage|FT_DECIMALPLACES" msgid "Decimal _places:" -msgstr "小数位数(_P):" +msgstr "小数位数(_P):" #: cui/uiconfig/ui/dimensionlinestabpage.ui:134 msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE" @@ -4533,7 +4535,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:108 msgctxt "editmodulesdialog|label2" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: cui/uiconfig/ui/editmodulesdialog.ui:153 msgctxt "editmodulesdialog|up" @@ -4748,42 +4750,42 @@ #: cui/uiconfig/ui/effectspage.ui:218 msgctxt "effectspage|fontcolorft" msgid "Font color:" -msgstr "字体颜色:" +msgstr "字体颜色:" #: cui/uiconfig/ui/effectspage.ui:232 msgctxt "effectspage|effectsft" msgid "Effects:" -msgstr "特效:" +msgstr "特效:" #: cui/uiconfig/ui/effectspage.ui:246 msgctxt "effectspage|reliefft" msgid "Relief:" -msgstr "浮雕:" +msgstr "浮雕:" #: cui/uiconfig/ui/effectspage.ui:260 msgctxt "effectspage|label46" msgid "Overlining:" -msgstr "上划线:" +msgstr "上划线:" #: cui/uiconfig/ui/effectspage.ui:274 msgctxt "effectspage|label47" msgid "Strikethrough:" -msgstr "删除线:" +msgstr "删除线:" #: cui/uiconfig/ui/effectspage.ui:288 msgctxt "effectspage|label48" msgid "Underlining:" -msgstr "下划线:" +msgstr "下划线:" #: cui/uiconfig/ui/effectspage.ui:302 msgctxt "effectspage|overlinecolorft" msgid "Overline color:" -msgstr "上划线颜色:" +msgstr "上划线颜色:" #: cui/uiconfig/ui/effectspage.ui:316 msgctxt "effectspage|underlinecolorft" msgid "Underline color:" -msgstr "下划线颜色:" +msgstr "下划线颜色:" #: cui/uiconfig/ui/effectspage.ui:413 msgctxt "effectspage|outlinecb" @@ -4808,7 +4810,7 @@ #: cui/uiconfig/ui/effectspage.ui:500 msgctxt "effectspage|positionft" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: cui/uiconfig/ui/effectspage.ui:514 msgctxt "effectspage|emphasisft" @@ -4838,7 +4840,7 @@ #: cui/uiconfig/ui/embossdialog.ui:120 msgctxt "embossdialog|label2" msgid "_Light source:" -msgstr "光源(_L):" +msgstr "光源(_L):" #: cui/uiconfig/ui/embossdialog.ui:155 msgctxt "embossdialog|label1" @@ -4888,7 +4890,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:31 msgctxt "eventsconfigpage|label1" msgid "Assign:" -msgstr "指定:" +msgstr "指定:" #: cui/uiconfig/ui/eventsconfigpage.ui:49 msgctxt "eventsconfigpage|macro" @@ -4903,7 +4905,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:105 msgctxt "eventsconfigpage|label2" msgid "Save in:" -msgstr "保存于:" +msgstr "保存于:" #: cui/uiconfig/ui/eventsconfigpage.ui:156 msgctxt "eventsconfigpage|eventft" @@ -4928,7 +4930,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:142 msgctxt "fmsearchdialog|rbSearchForText" msgid "_Text:" -msgstr "文本(_T):" +msgstr "文本(_T):" #: cui/uiconfig/ui/fmsearchdialog.ui:166 msgctxt "fmsearchdialog|rbSearchForNull" @@ -4943,12 +4945,12 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:216 msgctxt "fmsearchdialog|flSearchFor" msgid "_Search for" -msgstr "搜索(_S):" +msgstr "搜索(_S):" #: cui/uiconfig/ui/fmsearchdialog.ui:272 msgctxt "fmsearchdialog|rbSingleField" msgid "_Single field:" -msgstr "单个字段(_S):" +msgstr "单个字段(_S):" #: cui/uiconfig/ui/fmsearchdialog.ui:309 msgctxt "fmsearchdialog|rbAllFields" @@ -4958,7 +4960,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:335 msgctxt "fmsearchdialog|ftForm" msgid "Form:" -msgstr "表单:" +msgstr "表单:" #: cui/uiconfig/ui/fmsearchdialog.ui:409 msgctxt "fmsearchdialog|label2" @@ -4968,7 +4970,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:460 msgctxt "fmsearchdialog|ftPosition" msgid "_Position:" -msgstr "位置(_P):" +msgstr "位置(_P):" #: cui/uiconfig/ui/fmsearchdialog.ui:496 msgctxt "fmsearchdialog|HalfFullFormsCJK" @@ -5033,7 +5035,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:740 msgctxt "fmsearchdialog|ftRecordLabel" msgid "Record:" -msgstr "记录:" +msgstr "记录:" #: cui/uiconfig/ui/fmsearchdialog.ui:751 msgctxt "fmsearchdialog|ftRecord" @@ -5088,7 +5090,7 @@ #: cui/uiconfig/ui/galleryfilespage.ui:30 msgctxt "galleryfilespage|label1" msgid "_File type:" -msgstr "文件类型(_F):" +msgstr "文件类型(_F):" #: cui/uiconfig/ui/galleryfilespage.ui:77 msgctxt "galleryfilespage|files-atkobject" @@ -5118,22 +5120,22 @@ #: cui/uiconfig/ui/gallerygeneralpage.ui:22 msgctxt "gallerygeneralpage|label1" msgid "Modified:" -msgstr "修改:" +msgstr "修改:" #: cui/uiconfig/ui/gallerygeneralpage.ui:63 msgctxt "gallerygeneralpage|label2" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: cui/uiconfig/ui/gallerygeneralpage.ui:90 msgctxt "gallerygeneralpage|label3" msgid "Location:" -msgstr "位置:" +msgstr "位置:" #: cui/uiconfig/ui/gallerygeneralpage.ui:104 msgctxt "gallerygeneralpage|label4" msgid "Contents:" -msgstr "内容:" +msgstr "内容:" #: cui/uiconfig/ui/gallerygeneralpage.ui:162 msgctxt "gallerygeneralpage|image-atkobject" @@ -5158,7 +5160,7 @@ #: cui/uiconfig/ui/gallerythemedialog.ui:8 msgctxt "gallerythemedialog|GalleryThemeDialog" msgid "Properties of " -msgstr "属性:" +msgstr "属性:" #: cui/uiconfig/ui/gallerythemedialog.ui:106 msgctxt "gallerythemedialog|general" @@ -5188,7 +5190,7 @@ #: cui/uiconfig/ui/gallerytitledialog.ui:89 msgctxt "gallerytitledialog|label2" msgid "Title:" -msgstr "标题:" +msgstr "标题:" #: cui/uiconfig/ui/galleryupdateprogress.ui:8 msgctxt "galleryupdateprogress|GalleryUpdateProgress" @@ -5213,7 +5215,7 @@ #: cui/uiconfig/ui/gradientpage.ui:149 msgctxt "gradientpage|typeft" msgid "_Type:" -msgstr "类型(_T):" +msgstr "类型(_T):" #: cui/uiconfig/ui/gradientpage.ui:165 msgctxt "gradientpage|gradienttypelb" @@ -5248,7 +5250,7 @@ #: cui/uiconfig/ui/gradientpage.ui:197 msgctxt "gradientpage|incrementft" msgid "Increment:" -msgstr "递增:" +msgstr "递增:" #: cui/uiconfig/ui/gradientpage.ui:235 msgctxt "gradientpage|autoincrement" @@ -5258,7 +5260,7 @@ #: cui/uiconfig/ui/gradientpage.ui:272 msgctxt "gradientpage|angleft" msgid "A_ngle:" -msgstr "角度(_N):" +msgstr "角度(_N):" #: cui/uiconfig/ui/gradientpage.ui:298 msgctxt "gradientpage|centerft" @@ -5268,17 +5270,17 @@ #: cui/uiconfig/ui/gradientpage.ui:364 msgctxt "gradientpage|borderft" msgid "_Border:" -msgstr "边框(_B):" +msgstr "边框(_B):" #: cui/uiconfig/ui/gradientpage.ui:421 msgctxt "gradientpage|colorfromft" msgid "_From Color:" -msgstr "起始颜色(_F):" +msgstr "起始颜色(_F):" #: cui/uiconfig/ui/gradientpage.ui:500 msgctxt "gradientpage|colortoft" msgid "_To Color:" -msgstr "终止颜色(_T):" +msgstr "终止颜色(_T):" #: cui/uiconfig/ui/gradientpage.ui:527 msgctxt "gradientpage|a11y_center_x" @@ -5513,17 +5515,17 @@ #: cui/uiconfig/ui/hatchpage.ui:148 msgctxt "hatchpage|distanceft" msgid "_Spacing:" -msgstr "间隔(_S):" +msgstr "间隔(_S):" #: cui/uiconfig/ui/hatchpage.ui:174 msgctxt "hatchpage|angleft" msgid "A_ngle:" -msgstr "角度(_N):" +msgstr "角度(_N):" #: cui/uiconfig/ui/hatchpage.ui:227 msgctxt "hatchpage|linetypeft" msgid "_Line type:" -msgstr "线条类型(_L):" +msgstr "线条类型(_L):" #: cui/uiconfig/ui/hatchpage.ui:241 msgctxt "hatchpage|linetypelb" @@ -5543,7 +5545,7 @@ #: cui/uiconfig/ui/hatchpage.ui:257 msgctxt "hatchpage|linecolorft" msgid "Line _color:" -msgstr "线条颜色(_C):" +msgstr "线条颜色(_C):" #: cui/uiconfig/ui/hatchpage.ui:279 msgctxt "hatchpage|backgroundcolor" @@ -5583,7 +5585,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:39 msgctxt "hyperlinkdocpage|path_label" msgid "_Path:" -msgstr "路径(_P):" +msgstr "路径(_P):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:61 msgctxt "hyperlinkdocpage|fileopen" @@ -5603,12 +5605,12 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:118 msgctxt "hyperlinkdocpage|target_label" msgid "Targ_et:" -msgstr "目标(_E):" +msgstr "目标(_E):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:133 msgctxt "hyperlinkdocpage|url_label" msgid "URL:" -msgstr "URL:" +msgstr "URL:" #: cui/uiconfig/ui/hyperlinkdocpage.ui:143 msgctxt "hyperlinkdocpage|browse" @@ -5633,22 +5635,22 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:228 msgctxt "hyperlinkdocpage|frame_label" msgid "F_rame:" -msgstr "框架(_R):" +msgstr "框架(_R):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:243 msgctxt "hyperlinkdocpage|indication_label" msgid "Te_xt:" -msgstr "文字(_X):" +msgstr "文字(_X):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:258 msgctxt "hyperlinkdocpage|name_label" msgid "N_ame:" -msgstr "名称(_A):" +msgstr "名称(_A):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:299 msgctxt "hyperlinkdocpage|form_label" msgid "F_orm:" -msgstr "形式(_O):" +msgstr "形式(_O):" #: cui/uiconfig/ui/hyperlinkdocpage.ui:325 msgctxt "hyperlinkdocpage|script|tooltip_text" @@ -5673,17 +5675,17 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:86 msgctxt "hyperlinkinternetpage|target_label" msgid "_URL:" -msgstr "_URL:" +msgstr "_URL:" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:112 msgctxt "hyperlinkinternetpage|login_label" msgid "_Login name:" -msgstr "登录用户名(_L):" +msgstr "登录用户名(_L):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:127 msgctxt "hyperlinkinternetpage|password_label" msgid "_Password:" -msgstr "密码(_P):" +msgstr "密码(_P):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:161 msgctxt "hyperlinkinternetpage|anonymous" @@ -5698,22 +5700,22 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:227 msgctxt "hyperlinkinternetpage|frame_label" msgid "F_rame:" -msgstr "框架(_R):" +msgstr "框架(_R):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:242 msgctxt "hyperlinkinternetpage|indication_label" msgid "Te_xt:" -msgstr "文字(_X):" +msgstr "文字(_X):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:257 msgctxt "hyperlinkinternetpage|name_label" msgid "Na_me:" -msgstr "名称(_M):" +msgstr "名称(_M):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:298 msgctxt "hyperlinkinternetpage|form_label" msgid "F_orm:" -msgstr "形式(_O):" +msgstr "形式(_O):" #: cui/uiconfig/ui/hyperlinkinternetpage.ui:325 msgctxt "hyperlinkinternetpage|script|tooltip_text" @@ -5728,7 +5730,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:39 msgctxt "hyperlinkmailpage|receiver_label" msgid "Re_cipient:" -msgstr "接收者(_C):" +msgstr "接收者(_C):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:61 msgctxt "hyperlinkmailpage|adressbook" @@ -5743,7 +5745,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:80 msgctxt "hyperlinkmailpage|subject_label" msgid "_Subject:" -msgstr "主题(_S):" +msgstr "主题(_S):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:117 msgctxt "hyperlinkmailpage|label2" @@ -5753,22 +5755,22 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:156 msgctxt "hyperlinkmailpage|frame_label" msgid "F_rame:" -msgstr "框架(_R):" +msgstr "框架(_R):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:171 msgctxt "hyperlinkmailpage|indication_label" msgid "Te_xt:" -msgstr "文字(_X):" +msgstr "文字(_X):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:186 msgctxt "hyperlinkmailpage|name_label" msgid "N_ame:" -msgstr "名称(_N):" +msgstr "名称(_N):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:227 msgctxt "hyperlinkmailpage|form_label" msgid "F_orm:" -msgstr "形式(_O):" +msgstr "形式(_O):" #: cui/uiconfig/ui/hyperlinkmailpage.ui:253 msgctxt "hyperlinkmailpage|script|tooltip_text" @@ -5813,7 +5815,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:89 msgctxt "hyperlinknewdocpage|file_label" msgid "_File:" -msgstr "文件(_F):" +msgstr "文件(_F):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:111 msgctxt "hyperlinknewdocpage|create" @@ -5828,7 +5830,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:131 msgctxt "hyperlinknewdocpage|types_label" msgid "File _type:" -msgstr "文件类型(_T):" +msgstr "文件类型(_T):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:171 msgctxt "hyperlinknewdocpage|label2" @@ -5838,22 +5840,22 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:210 msgctxt "hyperlinknewdocpage|frame_label" msgid "F_rame:" -msgstr "框架(_R):" +msgstr "框架(_R):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:225 msgctxt "hyperlinknewdocpage|indication_label" msgid "Te_xt:" -msgstr "文字(_X):" +msgstr "文字(_X):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:240 msgctxt "hyperlinknewdocpage|name_label" msgid "N_ame:" -msgstr "名称(_N):" +msgstr "名称(_N):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:280 msgctxt "hyperlinknewdocpage|form_label" msgid "F_orm:" -msgstr "形式(_O):" +msgstr "形式(_O):" #: cui/uiconfig/ui/hyperlinknewdocpage.ui:306 msgctxt "hyperlinknewdocpage|script|tooltip_text" @@ -5868,17 +5870,17 @@ #: cui/uiconfig/ui/hyphenate.ui:19 msgctxt "hyphenate|HyphenateDialog" msgid "Hyphenation" -msgstr "断字处理" +msgstr "断词" #: cui/uiconfig/ui/hyphenate.ui:48 msgctxt "hyphenate|hyphall" msgid "Hyphenate All" -msgstr "全部断字" +msgstr "全部断词" #: cui/uiconfig/ui/hyphenate.ui:98 msgctxt "hyphenate|ok" msgid "Hyphenate" -msgstr "断字" +msgstr "断词" #: cui/uiconfig/ui/hyphenate.ui:112 msgctxt "hyphenate|continue" @@ -5888,7 +5890,7 @@ #: cui/uiconfig/ui/hyphenate.ui:148 msgctxt "hyphenate|label1" msgid "Word:" -msgstr "单词:" +msgstr "单词:" #: cui/uiconfig/ui/iconchangedialog.ui:61 msgctxt "iconchangedialog|label1" @@ -5926,7 +5928,7 @@ "The size of an icon should be 16x16 pixel to achieve best quality.\n" "Different sized icons will be scaled automatically." msgstr "" -"注意:\n" +"注意: \n" "要获得最佳质量,图标大小应该为 16x16 像素。\n" "其它大小的图标会被自动缩放。" @@ -5938,12 +5940,12 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:128 msgctxt "insertfloatingframe|label6" msgid "Name:" -msgstr "名称:" +msgstr "名称:" #: cui/uiconfig/ui/insertfloatingframe.ui:141 msgctxt "insertfloatingframe|label7" msgid "Contents:" -msgstr "内容:" +msgstr "内容:" #: cui/uiconfig/ui/insertfloatingframe.ui:150 msgctxt "insertfloatingframe|buttonbrowse" @@ -5988,12 +5990,12 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:362 msgctxt "insertfloatingframe|widthlabel" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: cui/uiconfig/ui/insertfloatingframe.ui:375 msgctxt "insertfloatingframe|heightlabel" msgid "Height:" -msgstr "高度:" +msgstr "高度:" #: cui/uiconfig/ui/insertfloatingframe.ui:409 msgctxt "insertfloatingframe|defaultwidth" @@ -6723,12 +6725,12 @@ #: cui/uiconfig/ui/movemenu.ui:112 msgctxt "movemenu|menunameft" msgid "Menu name:" -msgstr "菜单名称:" +msgstr "菜单名称:" #: cui/uiconfig/ui/movemenu.ui:155 msgctxt "movemenu|label1" msgid "Menu _position:" -msgstr "菜单位置(_P):" +msgstr "菜单位置(_P):" #: cui/uiconfig/ui/movemenu.ui:227 msgctxt "movemenu|up-atkobject" @@ -6753,7 +6755,7 @@ #: cui/uiconfig/ui/multipathdialog.ui:164 msgctxt "multipathdialog|pathlist" msgid "Path list:" -msgstr "路径列表:" +msgstr "路径列表:" #: cui/uiconfig/ui/multipathdialog.ui:185 msgctxt "multipathdialog|label1" @@ -6818,12 +6820,12 @@ #: cui/uiconfig/ui/newtoolbardialog.ui:97 msgctxt "newtoolbardialog|label1" msgid "_Toolbar name:" -msgstr "工具栏名称(_T):" +msgstr "工具栏名称(_T):" #: cui/uiconfig/ui/newtoolbardialog.ui:138 msgctxt "newtoolbardialog|label2" msgid "_Save in:" -msgstr "保存于(_S):" +msgstr "保存于(_S):" #: cui/uiconfig/ui/numberingformatpage.ui:38 msgctxt "numberingformatpage|liststore1" @@ -6913,17 +6915,17 @@ #: cui/uiconfig/ui/numberingformatpage.ui:289 msgctxt "numberingformatpage|decimalsft" msgid "_Decimal places:" -msgstr "小数位数(_D):" +msgstr "小数位数(_D):" #: cui/uiconfig/ui/numberingformatpage.ui:304 msgctxt "numberingformatpage|denominatorft" msgid "Den_ominator places:" -msgstr "分母位置(_O):" +msgstr "分母位置(_O):" #: cui/uiconfig/ui/numberingformatpage.ui:325 msgctxt "numberingformatpage|leadzerosft" msgid "Leading _zeroes:" -msgstr "前导零(_Z):" +msgstr "前导零(_Z):" #: cui/uiconfig/ui/numberingformatpage.ui:336 msgctxt "numberingformatpage|negnumred" @@ -6973,27 +6975,27 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:110 msgctxt "numberingoptionspage|label4" msgid "Number:" -msgstr "编号:" +msgstr "编号:" #: cui/uiconfig/ui/numberingoptionspage.ui:157 msgctxt "numberingoptionspage|startatft" msgid "Start at:" -msgstr "开始于:" +msgstr "开始于:" #: cui/uiconfig/ui/numberingoptionspage.ui:181 msgctxt "numberingoptionspage|bitmapft" msgid "Graphics:" -msgstr "图形:" +msgstr "图形:" #: cui/uiconfig/ui/numberingoptionspage.ui:195 msgctxt "numberingoptionspage|widthft" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: cui/uiconfig/ui/numberingoptionspage.ui:221 msgctxt "numberingoptionspage|heightft" msgid "Height:" -msgstr "高度:" +msgstr "高度:" #: cui/uiconfig/ui/numberingoptionspage.ui:246 msgctxt "numberingoptionspage|keepratio" @@ -7003,7 +7005,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:263 msgctxt "numberingoptionspage|orientft" msgid "Alignment:" -msgstr "对齐:" +msgstr "对齐:" #: cui/uiconfig/ui/numberingoptionspage.ui:278 msgctxt "numberingoptionspage|orientlb" @@ -7063,7 +7065,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:348 msgctxt "numberingoptionspage|prefixft" msgid "Before:" -msgstr "之前:" +msgstr "之前:" #: cui/uiconfig/ui/numberingoptionspage.ui:369 msgctxt "numberingoptionspage|separator" @@ -7073,12 +7075,12 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:403 msgctxt "numberingoptionspage|suffixft" msgid "After:" -msgstr "之后:" +msgstr "之后:" #: cui/uiconfig/ui/numberingoptionspage.ui:417 msgctxt "numberingoptionspage|sublevelsft" msgid "Show sublevels:" -msgstr "显示下级:" +msgstr "显示下级:" #: cui/uiconfig/ui/numberingoptionspage.ui:432 msgctxt "numberingoptionspage|bulletft" @@ -7088,17 +7090,17 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:446 msgctxt "numberingoptionspage|relsizeft" msgid "_Relative size:" -msgstr "相对的大小(_R):" +msgstr "相对的大小(_R):" #: cui/uiconfig/ui/numberingoptionspage.ui:460 msgctxt "numberingoptionspage|colorft" msgid "Color:" -msgstr "颜色:" +msgstr "颜色:" #: cui/uiconfig/ui/numberingoptionspage.ui:474 msgctxt "numberingoptionspage|charstyleft" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: cui/uiconfig/ui/numberingoptionspage.ui:518 msgctxt "numberingoptionspage|label2" @@ -7163,32 +7165,32 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:139 msgctxt "numberingpositionpage|numfollowedby" msgid "Numbering followed by:" -msgstr "编号之后:" +msgstr "编号之后:" #: cui/uiconfig/ui/numberingpositionpage.ui:153 msgctxt "numberingpositionpage|num2align" msgid "N_umbering alignment:" -msgstr "编号对齐(_U):" +msgstr "编号对齐(_U):" #: cui/uiconfig/ui/numberingpositionpage.ui:167 msgctxt "numberingpositionpage|alignedat" msgid "Aligned at:" -msgstr "对齐于:" +msgstr "对齐于:" #: cui/uiconfig/ui/numberingpositionpage.ui:181 msgctxt "numberingpositionpage|indentat" msgid "Indent at:" -msgstr "缩进于:" +msgstr "缩进于:" #: cui/uiconfig/ui/numberingpositionpage.ui:216 msgctxt "numberingpositionpage|at" msgid "Tab stop at:" -msgstr "制表符位于:" +msgstr "制表符位于:" #: cui/uiconfig/ui/numberingpositionpage.ui:263 msgctxt "numberingpositionpage|indent" msgid "Indent:" -msgstr "缩进:" +msgstr "缩进:" #: cui/uiconfig/ui/numberingpositionpage.ui:286 msgctxt "numberingpositionpage|relative" @@ -7207,12 +7209,12 @@ "numbering and text:" msgstr "" "编号与文字之间的\n" -"最小间隙:" +"最小间隙:" #: cui/uiconfig/ui/numberingpositionpage.ui:360 msgctxt "numberingpositionpage|numalign" msgid "N_umbering alignment:" -msgstr "编号对齐(_U):" +msgstr "编号对齐(_U):" #: cui/uiconfig/ui/numberingpositionpage.ui:388 msgctxt "numberingpositionpage|label10" @@ -7247,7 +7249,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:120 msgctxt "objecttitledescdialog|desc_label" msgid "_Description:" -msgstr "描述(_D):" +msgstr "描述(_D):" #: cui/uiconfig/ui/optaccessibilitypage.ui:31 msgctxt "optaccessibilitypage|acctool" @@ -7302,7 +7304,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:72 msgctxt "optadvancedpage|label2" msgid "_Java runtime environments (JRE) already installed:" -msgstr "已安装的 _Java 运行时环境(JRE):" +msgstr "已安装的 _Java 运行时环境(JRE):" #: cui/uiconfig/ui/optadvancedpage.ui:98 msgctxt "optadvancedpage|add" @@ -7347,7 +7349,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:254 msgctxt "optadvancedpage|javapath" msgid "Location: " -msgstr "位置:" +msgstr "位置:" #: cui/uiconfig/ui/optadvancedpage.ui:280 msgctxt "optadvancedpage|label1" @@ -7377,7 +7379,7 @@ #: cui/uiconfig/ui/optappearancepage.ui:35 msgctxt "optappearancepage|label3" msgid "_Scheme:" -msgstr "方案(_S):" +msgstr "方案(_S):" #: cui/uiconfig/ui/optappearancepage.ui:89 msgctxt "optappearancepage|label1" @@ -7417,7 +7419,7 @@ #: cui/uiconfig/ui/optasianpage.ui:73 msgctxt "optasianpage|label1" msgid "Kerning" -msgstr "字距微调 (Kerning)" +msgstr "字距微调" #: cui/uiconfig/ui/optasianpage.ui:105 msgctxt "optasianpage|nocompression" @@ -7552,7 +7554,7 @@ #: cui/uiconfig/ui/optctlpage.ui:135 msgctxt "optctlpage|label3" msgid "Movement:" -msgstr "移动:" +msgstr "移动:" #: cui/uiconfig/ui/optctlpage.ui:145 msgctxt "optctlpage|movementlogical" @@ -7602,7 +7604,7 @@ #: cui/uiconfig/ui/optemailpage.ui:26 msgctxt "optemailpage|label2" msgid "_E-mail program:" -msgstr "电子邮件程序(_E):" +msgstr "电子邮件程序(_E):" #: cui/uiconfig/ui/optemailpage.ui:54 msgctxt "optemailpage|browse" @@ -7642,7 +7644,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:116 msgctxt "optfltrembedpage|label5" msgid "Export as:" -msgstr "导出为:" +msgstr "导出为:" #: cui/uiconfig/ui/optfltrembedpage.ui:131 msgctxt "optfltrembedpage|highlighting" @@ -7717,12 +7719,12 @@ #: cui/uiconfig/ui/optfontspage.ui:59 msgctxt "optfontspage|label2" msgid "_Font:" -msgstr "字体(_F):" +msgstr "字体(_F):" #: cui/uiconfig/ui/optfontspage.ui:73 msgctxt "optfontspage|label3" msgid "Re_place with:" -msgstr "替换成(_P):" +msgstr "替换成(_P):" #: cui/uiconfig/ui/optfontspage.ui:110 msgctxt "optfontspage|always" @@ -7757,12 +7759,12 @@ #: cui/uiconfig/ui/optfontspage.ui:266 msgctxt "optfontspage|label8" msgid "Fon_ts:" -msgstr "字体(_T):" +msgstr "字体(_T):" #: cui/uiconfig/ui/optfontspage.ui:281 msgctxt "optfontspage|label9" msgid "_Size:" -msgstr "大小(_S):" +msgstr "大小(_S):" #: cui/uiconfig/ui/optfontspage.ui:295 msgctxt "optfontspage|fontname" @@ -7862,37 +7864,37 @@ #: cui/uiconfig/ui/opthtmlpage.ui:90 msgctxt "opthtmlpage|size7FT" msgid "Size _7:" -msgstr "大小 _7:" +msgstr "大小 _7:" #: cui/uiconfig/ui/opthtmlpage.ui:118 msgctxt "opthtmlpage|size6FT" msgid "Size _6:" -msgstr "大小 _6:" +msgstr "大小 _6:" #: cui/uiconfig/ui/opthtmlpage.ui:146 msgctxt "opthtmlpage|size5FT" msgid "Size _5:" -msgstr "大小 _5:" +msgstr "大小 _5:" #: cui/uiconfig/ui/opthtmlpage.ui:174 msgctxt "opthtmlpage|size4FT" msgid "Size _4:" -msgstr "大小 _4:" +msgstr "大小 _4:" #: cui/uiconfig/ui/opthtmlpage.ui:202 msgctxt "opthtmlpage|size3FT" msgid "Size _3:" -msgstr "大小 _3:" +msgstr "大小 _3:" #: cui/uiconfig/ui/opthtmlpage.ui:230 msgctxt "opthtmlpage|size2FT" msgid "Size _2:" -msgstr "大小 _2:" +msgstr "大小 _2:" #: cui/uiconfig/ui/opthtmlpage.ui:258 msgctxt "opthtmlpage|size1FT" msgid "Size _1:" -msgstr "大小 _1:" +msgstr "大小 _1:" #: cui/uiconfig/ui/opthtmlpage.ui:290 msgctxt "opthtmlpage|label1" @@ -7912,7 +7914,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:376 msgctxt "opthtmlpage|numbersenglishus" msgid "_Use '%ENGLISHUSLOCALE' locale for numbers" -msgstr "将 '%ENGLISHUSLOCALE' 本地化设置作为数字格式(_U)" +msgstr "数字部分使用「%ENGLISHUSLOCALE」本地化设置(_U)" #: cui/uiconfig/ui/opthtmlpage.ui:400 msgctxt "opthtmlpage|label2" @@ -8062,27 +8064,27 @@ #: cui/uiconfig/ui/optlanguagespage.ui:37 msgctxt "optlanguagespage|label4" msgid "_User interface:" -msgstr "用户界面(_U):" +msgstr "用户界面(_U):" #: cui/uiconfig/ui/optlanguagespage.ui:51 msgctxt "optlanguagespage|localesettingFT" msgid "Locale setting:" -msgstr "区域设置:" +msgstr "区域设置:" #: cui/uiconfig/ui/optlanguagespage.ui:65 msgctxt "optlanguagespage|label6" msgid "Decimal separator key:" -msgstr "小数分隔符键:" +msgstr "小数分隔符键:" #: cui/uiconfig/ui/optlanguagespage.ui:79 msgctxt "optlanguagespage|defaultcurrency" msgid "_Default currency:" -msgstr "默认货币(_D):" +msgstr "默认货币(_D):" #: cui/uiconfig/ui/optlanguagespage.ui:93 msgctxt "optlanguagespage|dataaccpatterns" msgid "Date acceptance _patterns:" -msgstr "接受日期格式(_P):" +msgstr "接受日期格式(_P):" #: cui/uiconfig/ui/optlanguagespage.ui:153 msgctxt "optlanguagespage|decimalseparator" @@ -8102,17 +8104,17 @@ #: cui/uiconfig/ui/optlanguagespage.ui:261 msgctxt "optlanguagespage|ctlsupport" msgid "Complex _text layout:" -msgstr "复杂文本排版(_T):" +msgstr "复杂文本排版(_T):" #: cui/uiconfig/ui/optlanguagespage.ui:276 msgctxt "optlanguagespage|asiansupport" msgid "Asian:" -msgstr "亚洲:" +msgstr "亚洲:" #: cui/uiconfig/ui/optlanguagespage.ui:294 msgctxt "optlanguagespage|western" msgid "Western:" -msgstr "西方:" +msgstr "西方:" #: cui/uiconfig/ui/optlanguagespage.ui:311 msgctxt "optlanguagespage|label2" @@ -8132,7 +8134,7 @@ #: cui/uiconfig/ui/optlingupage.ui:47 msgctxt "optlingupage|lingumodulesft" msgid "_Available language modules:" -msgstr "可用的语言模块(_A):" +msgstr "可用的语言模块(_A):" #: cui/uiconfig/ui/optlingupage.ui:74 msgctxt "optlingupage|lingumodulesedit" @@ -8147,7 +8149,7 @@ #: cui/uiconfig/ui/optlingupage.ui:112 msgctxt "optlingupage|lingudictsft" msgid "_User-defined dictionaries:" -msgstr "自定义词典(_U):" +msgstr "自定义词典(_U):" #: cui/uiconfig/ui/optlingupage.ui:146 msgctxt "optlingupage|lingudictsnew" @@ -8172,7 +8174,7 @@ #: cui/uiconfig/ui/optlingupage.ui:218 msgctxt "optlingupage|label4" msgid "_Options:" -msgstr "选项(_O):" +msgstr "选项(_O):" #: cui/uiconfig/ui/optlingupage.ui:230 msgctxt "optlingupage|moredictslink" @@ -8242,7 +8244,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:114 msgctxt "optonlineupdatepage|lastchecked" msgid "Last checked: %DATE%, %TIME%" -msgstr "最后一次检查:%DATE%,%TIME%" +msgstr "最后一次检查: %DATE%,%TIME%" #: cui/uiconfig/ui/optonlineupdatepage.ui:125 msgctxt "optonlineupdatepage|checknow" @@ -8277,7 +8279,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:244 msgctxt "optonlineupdatepage|useragent_label" msgid "User Agent:" -msgstr "用户代理:" +msgstr "用户代理:" #: cui/uiconfig/ui/optonlineupdatepage.ui:256 msgctxt "optonlineupdatepage|useragent_changed" @@ -8287,7 +8289,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:288 msgctxt "optonlineupdatepage|neverchecked" msgid "Last checked: Not yet" -msgstr "最后一次检查:未检查" +msgstr "最后一次检查: 未检查" #: cui/uiconfig/ui/optonlineupdatepage.ui:305 msgctxt "optonlineupdatepage|label1" @@ -8352,7 +8354,7 @@ #: cui/uiconfig/ui/optproxypage.ui:32 msgctxt "optproxypage|label2" msgid "Proxy s_erver:" -msgstr "代理服务器(_E):" +msgstr "代理服务器(_E):" #: cui/uiconfig/ui/optproxypage.ui:137 msgctxt "optproxypage|proxymode" @@ -8372,22 +8374,22 @@ #: cui/uiconfig/ui/optproxypage.ui:152 msgctxt "optproxypage|httpft" msgid "HT_TP proxy:" -msgstr "HTTP 代理服务器(_T):" +msgstr "HTTP 代理服务器(_T):" #: cui/uiconfig/ui/optproxypage.ui:165 msgctxt "optproxypage|httpportft" msgid "_Port:" -msgstr "端口(_P):" +msgstr "端口(_P):" #: cui/uiconfig/ui/optproxypage.ui:179 msgctxt "optproxypage|httpsft" msgid "HTTP_S proxy:" -msgstr "HTTPS 代理服务器(_S):" +msgstr "HTTPS 代理服务器(_S):" #: cui/uiconfig/ui/optproxypage.ui:193 msgctxt "optproxypage|ftpft" msgid "_FTP proxy:" -msgstr "FTP 代理服务器(_F):" +msgstr "FTP 代理服务器(_F):" #: cui/uiconfig/ui/optproxypage.ui:207 msgctxt "optproxypage|noproxyft" @@ -8397,12 +8399,12 @@ #: cui/uiconfig/ui/optproxypage.ui:220 msgctxt "optproxypage|httpsportft" msgid "P_ort:" -msgstr "端口(_O):" +msgstr "端口(_O):" #: cui/uiconfig/ui/optproxypage.ui:233 msgctxt "optproxypage|ftpportft" msgid "P_ort:" -msgstr "端口(_O):" +msgstr "端口(_O):" #: cui/uiconfig/ui/optproxypage.ui:247 msgctxt "optproxypage|noproxydesc" @@ -8432,7 +8434,7 @@ #: cui/uiconfig/ui/optsavepage.ui:111 msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "保存自动恢复信息的时间间隔(_A):" +msgstr "保存自动恢复信息的时间间隔(_A):" #: cui/uiconfig/ui/optsavepage.ui:139 msgctxt "optsavepage|autosave_mins" @@ -8664,37 +8666,37 @@ #: cui/uiconfig/ui/optuserpage.ui:45 msgctxt "optuserpage|companyft" msgid "_Company:" -msgstr "公司(_C):" +msgstr "公司(_C):" #: cui/uiconfig/ui/optuserpage.ui:59 msgctxt "optuserpage|nameft" msgid "First/last _name/initials:" -msgstr "名字/姓氏/缩写(_N):" +msgstr "名字/姓氏/缩写(_N):" #: cui/uiconfig/ui/optuserpage.ui:73 msgctxt "optuserpage|streetft" msgid "_Street:" -msgstr "街道(_S):" +msgstr "街道(_S):" #: cui/uiconfig/ui/optuserpage.ui:87 msgctxt "optuserpage|cityft" msgid "City/state/_zip:" -msgstr "省/市/邮编(_Z):" +msgstr "省/市/邮编(_Z):" #: cui/uiconfig/ui/optuserpage.ui:101 msgctxt "optuserpage|countryft" msgid "Country/re_gion:" -msgstr "国家/地区(_G):" +msgstr "国家/地区(_G):" #: cui/uiconfig/ui/optuserpage.ui:115 msgctxt "optuserpage|titleft" msgid "_Title/position:" -msgstr "头衔/职务(_T):" +msgstr "头衔/职务(_T):" #: cui/uiconfig/ui/optuserpage.ui:129 msgctxt "optuserpage|phoneft" msgid "Telephone (home/_work):" -msgstr "电话(住宅/工作)(_W):" +msgstr "电话(住宅/工作)(_W):" #: cui/uiconfig/ui/optuserpage.ui:134 msgctxt "phoneft-atkobject" @@ -8704,7 +8706,7 @@ #: cui/uiconfig/ui/optuserpage.ui:148 msgctxt "optuserpage|faxft" msgid "Fa_x/e-mail:" -msgstr "传真/电子邮件(_X):" +msgstr "传真/电子邮件(_X):" #: cui/uiconfig/ui/optuserpage.ui:170 msgctxt "optuserpage|firstname-atkobject" @@ -8774,7 +8776,7 @@ #: cui/uiconfig/ui/optuserpage.ui:438 msgctxt "optuserpage|rusnameft" msgid "Last name/first _name/father’s name/initials:" -msgstr "姓氏/名字/父亲名/缩写(_N):" +msgstr "姓氏/名字/父亲名/缩写(_N):" #: cui/uiconfig/ui/optuserpage.ui:460 msgctxt "ruslastname-atkobject" @@ -8799,7 +8801,7 @@ #: cui/uiconfig/ui/optuserpage.ui:531 msgctxt "optuserpage|eastnameft" msgid "Last/first _name/initials:" -msgstr "姓氏/名字/缩写(_N):" +msgstr "姓氏/名字/缩写(_N):" #: cui/uiconfig/ui/optuserpage.ui:553 msgctxt "eastlastname-atkobject" @@ -8819,7 +8821,7 @@ #: cui/uiconfig/ui/optuserpage.ui:607 msgctxt "optuserpage|russtreetft" msgid "_Street/apartment number:" -msgstr "街道/门牌号(_S):" +msgstr "街道/门牌号(_S):" #: cui/uiconfig/ui/optuserpage.ui:629 msgctxt "russtreet-atkobject" @@ -8834,7 +8836,7 @@ #: cui/uiconfig/ui/optuserpage.ui:666 msgctxt "optuserpage|icityft" msgid "_Zip/city:" -msgstr "邮编/城市(_Z):" +msgstr "邮编/城市(_Z):" #: cui/uiconfig/ui/optuserpage.ui:688 msgctxt "icity-atkobject" @@ -8854,12 +8856,12 @@ #: cui/uiconfig/ui/optuserpage.ui:836 msgctxt "optuserpage|signingkeylabel" msgid "OpenPGP signing key:" -msgstr "OpenPGP 签名密钥:" +msgstr "OpenPGP 签名密钥:" #: cui/uiconfig/ui/optuserpage.ui:850 msgctxt "optuserpage|encryptionkeylabel" msgid "OpenPGP encryption key:" -msgstr "OpenPGP 加密密钥:" +msgstr "OpenPGP 加密密钥:" #: cui/uiconfig/ui/optuserpage.ui:885 msgctxt "optuserpage|encrypttoself" @@ -8919,7 +8921,7 @@ #: cui/uiconfig/ui/optviewpage.ui:177 msgctxt "optviewpage|label13" msgid "Icons in men_us:" -msgstr "在菜单中显示图标(_U):" +msgstr "在菜单中显示图标(_U):" #: cui/uiconfig/ui/optviewpage.ui:191 msgctxt "optviewpage|contextmenushortcuts" @@ -8939,7 +8941,7 @@ #: cui/uiconfig/ui/optviewpage.ui:206 msgctxt "optviewpage|label10" msgid "Shortcuts in context menus:" -msgstr "在右键菜单中添加快捷方式:" +msgstr "在右键菜单中添加快捷方式:" #: cui/uiconfig/ui/optviewpage.ui:220 msgctxt "optviewpage|menuicons" @@ -8974,7 +8976,7 @@ #: cui/uiconfig/ui/optviewpage.ui:345 msgctxt "optviewpage|label8" msgid "Toolbar icon _size:" -msgstr "工具栏图标大小(_S):" +msgstr "工具栏图标大小(_S):" #: cui/uiconfig/ui/optviewpage.ui:360 msgctxt "optviewpage|iconstyle" @@ -9039,7 +9041,7 @@ #: cui/uiconfig/ui/optviewpage.ui:396 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" -msgstr "图标样式(_T):" +msgstr "图标样式(_T):" #: cui/uiconfig/ui/optviewpage.ui:407 msgctxt "optviewpage|aafont" @@ -9049,7 +9051,7 @@ #: cui/uiconfig/ui/optviewpage.ui:425 msgctxt "optviewpage|label9" msgid "Sidebar _icon size:" -msgstr "侧边栏图标大小(_I):" +msgstr "侧边栏图标大小(_I):" #: cui/uiconfig/ui/optviewpage.ui:439 msgctxt "optviewpage|sidebariconsize" @@ -9069,7 +9071,7 @@ #: cui/uiconfig/ui/optviewpage.ui:454 msgctxt "optviewpage|label7" msgid "_Notebookbar icon size:" -msgstr "笔记本工具栏图标大小(_N):" +msgstr "笔记本工具栏图标大小(_N):" #: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|notebookbariconsize" @@ -9089,7 +9091,7 @@ #: cui/uiconfig/ui/optviewpage.ui:489 msgctxt "optviewpage|aafrom" msgid "fro_m:" -msgstr "来自(_M):" +msgstr "来自(_M):" #: cui/uiconfig/ui/optviewpage.ui:529 msgctxt "optviewpage|label1" @@ -9099,12 +9101,12 @@ #: cui/uiconfig/ui/optviewpage.ui:566 msgctxt "optviewpage|label11" msgid "Mouse _positioning:" -msgstr "鼠标定位(_P):" +msgstr "鼠标定位(_P):" #: cui/uiconfig/ui/optviewpage.ui:580 msgctxt "optviewpage|label12" msgid "Middle mouse _button:" -msgstr "鼠标中键(_B):" +msgstr "鼠标中键(_B):" #: cui/uiconfig/ui/optviewpage.ui:596 msgctxt "optviewpage|mousepos" @@ -9179,7 +9181,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:238 msgctxt "pageformatpage|labelPaperTray" msgid "Paper _tray:" -msgstr "纸盒托盘(_T):" +msgstr "纸盒托盘(_T):" #: cui/uiconfig/ui/pageformatpage.ui:274 msgctxt "pageformatpage|labelPaperFormat" @@ -9204,7 +9206,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:409 msgctxt "pageformatpage|labelOuter" msgid "O_uter:" -msgstr "外测(_U):" +msgstr "外侧(_U):" #: cui/uiconfig/ui/pageformatpage.ui:435 msgctxt "pageformatpage|labelLeftMargin" @@ -9214,7 +9216,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:449 msgctxt "pageformatpage|labelInner" msgid "I_nner:" -msgstr "内测(_N):" +msgstr "内侧(_N):" #: cui/uiconfig/ui/pageformatpage.ui:474 msgctxt "pageformatpage|labelMargins" @@ -9229,7 +9231,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:526 msgctxt "pageformatpage|label4" msgid "Page numbers:" -msgstr "页码:" +msgstr "页码:" #: cui/uiconfig/ui/pageformatpage.ui:538 msgctxt "pageformatpage|checkRegisterTrue" @@ -9249,12 +9251,12 @@ #: cui/uiconfig/ui/pageformatpage.ui:559 msgctxt "pageformatpage|liststorePageLayout" msgid "Only right" -msgstr "只显示偶数(右)页" +msgstr "仅右页" #: cui/uiconfig/ui/pageformatpage.ui:560 msgctxt "pageformatpage|liststorePageLayout" msgid "Only left" -msgstr "只显示奇数(左)页" +msgstr "仅左页" #: cui/uiconfig/ui/pageformatpage.ui:583 msgctxt "pageformatpage|labelTblAlign" @@ -9385,7 +9387,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:330 msgctxt "paragalignpage|liststoreLB_VERTALIGN" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: cui/uiconfig/ui/paragalignpage.ui:331 msgctxt "paragalignpage|liststoreLB_VERTALIGN" @@ -9395,7 +9397,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:332 msgctxt "paragalignpage|liststoreLB_VERTALIGN" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: cui/uiconfig/ui/paragalignpage.ui:349 msgctxt "paragalignpage|labelFL_VERTALIGN" @@ -9460,7 +9462,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:327 msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING" msgid "Don't add space between paragraphs of the same style" -msgstr "不要在相同的样式的段落之间添加间隔" +msgstr "不要在相同样式的段落之间添加间隔" #: cui/uiconfig/ui/paraindentspacing.ui:349 msgctxt "paraindentspacing|labelFL_VERTALIGN" @@ -9500,7 +9502,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:394 msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "Leading" -msgstr "行间距(Leading)" +msgstr "行间距" #: cui/uiconfig/ui/paraindentspacing.ui:407 msgctxt "paraindentspacing|labelFT_LINEDIST" @@ -9620,7 +9622,7 @@ #: cui/uiconfig/ui/password.ui:149 msgctxt "password|label1" msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive." -msgstr "注意:如果设置了密码,该文档只能凭密码打开。如果您忘记了密码,该文档将不可恢复。同时请注意该密码区分字母大小写。" +msgstr "注意: 如果设置了密码,该文档只能凭密码打开。如果您忘记了密码,该文档将不可恢复。同时请注意该密码区分字母大小写。" #: cui/uiconfig/ui/password.ui:183 msgctxt "password|readonly" @@ -9660,7 +9662,7 @@ #: cui/uiconfig/ui/pastespecial.ui:100 msgctxt "pastespecial|label2" msgid "Source:" -msgstr "来源:" +msgstr "来源:" #: cui/uiconfig/ui/pastespecial.ui:184 msgctxt "pastespecial|label1" @@ -9680,7 +9682,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:135 msgctxt "patterntabpage|label4" msgid "Pattern Editor:" -msgstr "图案编辑器:" +msgstr "图案编辑器:" #: cui/uiconfig/ui/patterntabpage.ui:151 msgctxt "patterntabpage|CTL_PIXEL-atkobject" @@ -9690,12 +9692,12 @@ #: cui/uiconfig/ui/patterntabpage.ui:179 msgctxt "patterntabpage|label5" msgid "Foreground Color:" -msgstr "前景色:" +msgstr "前景色:" #: cui/uiconfig/ui/patterntabpage.ui:217 msgctxt "patterntabpage|label6" msgid "Background Color:" -msgstr "背景色:" +msgstr "背景色:" #: cui/uiconfig/ui/patterntabpage.ui:252 msgctxt "patterntabpage|label1" @@ -9745,7 +9747,7 @@ #: cui/uiconfig/ui/personalization_tab.ui:171 msgctxt "personalization_tab|extensions_label" msgid "Or, select from the Themes installed via extensions:" -msgstr "或者通过扩展选择已安装的主题:" +msgstr "或者通过扩展选择已安装的主题:" #: cui/uiconfig/ui/personalization_tab.ui:223 msgctxt "personalization_tab|personas_label" @@ -9860,7 +9862,7 @@ #: cui/uiconfig/ui/positionpage.ui:450 msgctxt "positionpage|pairkerning" msgid "Pair kerning" -msgstr "字距微调 (Pair kerning)" +msgstr "字距微调" #: cui/uiconfig/ui/positionpage.ui:472 msgctxt "positionpage|label22" @@ -9980,7 +9982,7 @@ #: cui/uiconfig/ui/posterdialog.ui:136 msgctxt "posterdialog|label2" msgid "Poster colors:" -msgstr "海报颜色:" +msgstr "海报颜色:" #: cui/uiconfig/ui/posterdialog.ui:159 msgctxt "posterdialog|label1" @@ -10180,7 +10182,7 @@ #: cui/uiconfig/ui/rotationtabpage.ui:123 msgctxt "rotationtabpage|FT_POSPRESETS" msgid "_Default settings:" -msgstr "默认设置(_D):" +msgstr "默认设置(_D):" #: cui/uiconfig/ui/rotationtabpage.ui:151 msgctxt "rotationtabpage|CTL_RECT|tooltip_text" @@ -10195,12 +10197,12 @@ #: cui/uiconfig/ui/rotationtabpage.ui:220 msgctxt "rotationtabpage|FT_ANGLE" msgid "_Angle:" -msgstr "角度(_A):" +msgstr "角度(_A):" #: cui/uiconfig/ui/rotationtabpage.ui:263 msgctxt "rotationtabpage|FT_ANGLEPRESETS" msgid "Default _settings:" -msgstr "默认设置(_S):" +msgstr "默认设置(_S):" #: cui/uiconfig/ui/rotationtabpage.ui:287 msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text" @@ -10225,12 +10227,12 @@ #: cui/uiconfig/ui/screenshotannotationdialog.ui:67 msgctxt "screenshotannotationdialog|label2" msgid "Click the widgets to add annotation:" -msgstr "点击小部件以添加标注:" +msgstr "点击小部件以添加标注:" #: cui/uiconfig/ui/screenshotannotationdialog.ui:93 msgctxt "screenshotannotationdialog|label1" msgid "Paste the following markup into the help file:" -msgstr "将以下 markup 粘贴到帮助文件中:" +msgstr "将以下 markup 粘贴到帮助文件中:" #: cui/uiconfig/ui/scriptorganizer.ui:7 msgctxt "scriptorganizer|ScriptOrganizerDialog" @@ -10305,7 +10307,7 @@ #: cui/uiconfig/ui/searchformatdialog.ui:244 msgctxt "searchformatdialog|labelTP_PARA_EXT" msgid "Text Flow" -msgstr "文字排列" +msgstr "文字流" #: cui/uiconfig/ui/searchformatdialog.ui:268 msgctxt "searchformatdialog|labelTP_PARA_ASIAN" @@ -10345,7 +10347,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:229 msgctxt "securityoptionsdialog|label3" msgid "Warn if document contains recorded changes, versions, hidden information or notes:" -msgstr "如果文档包含记录的更改、版本、隐藏的信息或备注,则发出警告:" +msgstr "如果文档包含记录的更改、版本、隐藏的信息或备注,则发出警告:" #: cui/uiconfig/ui/securityoptionsdialog.ui:245 msgctxt "securityoptionsdialog|label1" @@ -10420,7 +10422,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:120 msgctxt "shadowtabpage|FT_DISTANCE" msgid "_Distance:" -msgstr "间隔(_D):" +msgstr "间隔(_D):" #: cui/uiconfig/ui/shadowtabpage.ui:140 msgctxt "shadowtabpage|FT_TRANSPARENT" @@ -10430,7 +10432,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:160 msgctxt "shadowtabpage|FT_SHADOW_COLOR" msgid "_Color:" -msgstr "颜色(_C):" +msgstr "颜色(_C):" #: cui/uiconfig/ui/shadowtabpage.ui:203 msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject" @@ -10476,19 +10478,19 @@ #: cui/uiconfig/ui/signatureline.ui:149 msgctxt "signatureline|label_name" msgid "Name:" -msgstr "姓名:" +msgstr "姓名:" #. Suggested Signer Title #: cui/uiconfig/ui/signatureline.ui:163 msgctxt "signatureline|label_title" msgid "Title:" -msgstr "职位:" +msgstr "职位:" #. Suggested Signer email #: cui/uiconfig/ui/signatureline.ui:177 msgctxt "signatureline|label_email" msgid "Email:" -msgstr "电子邮件:" +msgstr "电子邮件:" #: cui/uiconfig/ui/signatureline.ui:194 msgctxt "signatureline|label_suggestedsigner" @@ -10508,7 +10510,7 @@ #: cui/uiconfig/ui/signatureline.ui:261 msgctxt "signatureline|label_instructions" msgid "Instructions to the signer:" -msgstr "给签名者的提示:" +msgstr "给签名者的提示:" #: cui/uiconfig/ui/signatureline.ui:300 msgctxt "signatureline|label_more" @@ -10529,7 +10531,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:125 msgctxt "signsignatureline|label_name" msgid "Your Name:" -msgstr "您的姓名:" +msgstr "您的姓名:" #. Certificate to be used for signing #: cui/uiconfig/ui/signsignatureline.ui:139 @@ -10550,12 +10552,12 @@ #: cui/uiconfig/ui/signsignatureline.ui:205 msgctxt "signsignatureline|label_add_comment" msgid "Add comment:" -msgstr "添加批注:" +msgstr "添加批注:" #: cui/uiconfig/ui/signsignatureline.ui:241 msgctxt "signsignatureline|label_hint" msgid "Instructions from the document creator:" -msgstr "来自文档创建者的提示:" +msgstr "来自文档创建者的提示:" #: cui/uiconfig/ui/signsignatureline.ui:274 msgctxt "signsignatureline|label_more" @@ -10570,17 +10572,17 @@ #: cui/uiconfig/ui/similaritysearchdialog.ui:109 msgctxt "similaritysearchdialog|label2" msgid "_Exchange characters:" -msgstr "交换字符(_E):" +msgstr "交换字符(_E):" #: cui/uiconfig/ui/similaritysearchdialog.ui:123 msgctxt "similaritysearchdialog|label3" msgid "_Add characters:" -msgstr "添加字符(_A):" +msgstr "添加字符(_A):" #: cui/uiconfig/ui/similaritysearchdialog.ui:137 msgctxt "similaritysearchdialog|label4" msgid "_Remove characters:" -msgstr "删除字符(_R):" +msgstr "删除字符(_R):" #: cui/uiconfig/ui/similaritysearchdialog.ui:149 msgctxt "similaritysearchdialog|relaxbox" @@ -10605,7 +10607,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:183 msgctxt "slantcornertabpage|FT_RADIUS" msgid "_Radius:" -msgstr "半径(_R):" +msgstr "半径(_R):" #: cui/uiconfig/ui/slantcornertabpage.ui:214 msgctxt "slantcornertabpage|label1" @@ -10615,7 +10617,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:248 msgctxt "slantcornertabpage|FT_ANGLE" msgid "_Angle:" -msgstr "角度(_A):" +msgstr "角度(_A):" #: cui/uiconfig/ui/slantcornertabpage.ui:279 msgctxt "slantcornertabpage|label2" @@ -10660,7 +10662,7 @@ #: cui/uiconfig/ui/smoothdialog.ui:138 msgctxt "smoothdialog|label2" msgid "_Smooth radius:" -msgstr "平滑半径(_S):" +msgstr "平滑半径(_S):" #: cui/uiconfig/ui/smoothdialog.ui:161 msgctxt "smoothdialog|label1" @@ -10675,7 +10677,7 @@ #: cui/uiconfig/ui/solarizedialog.ui:135 msgctxt "solarizedialog|label2" msgid "Threshold _value:" -msgstr "阀值(_V):" +msgstr "阈值(_V):" #: cui/uiconfig/ui/solarizedialog.ui:146 msgctxt "solarizedialog|invert" @@ -10700,12 +10702,12 @@ #: cui/uiconfig/ui/specialcharacters.ui:107 msgctxt "specialcharacters|subsetft" msgid "Subset:" -msgstr "子集:" +msgstr "子集:" #: cui/uiconfig/ui/specialcharacters.ui:121 msgctxt "specialcharacters|fontft" msgid "Font:" -msgstr "字体:" +msgstr "字体:" #: cui/uiconfig/ui/specialcharacters.ui:135 msgctxt "specialcharacters|srchft" @@ -10715,12 +10717,12 @@ #: cui/uiconfig/ui/specialcharacters.ui:221 msgctxt "specialcharacters|hexlabel" msgid "Hexadecimal:" -msgstr "十六进制:" +msgstr "十六进制:" #: cui/uiconfig/ui/specialcharacters.ui:274 msgctxt "specialcharacters|decimallabel" msgid "Decimal:" -msgstr "十进制:" +msgstr "十进制:" #: cui/uiconfig/ui/specialcharacters.ui:298 msgctxt "specialcharacters|favbtn" @@ -10730,22 +10732,22 @@ #: cui/uiconfig/ui/specialcharacters.ui:302 msgctxt "specialcharacters|favbtn|tooltip_text" msgid "Maximum Limit: 16 Characters" -msgstr "最多限制:16个字符" +msgstr "最多限制: 16个字符" #: cui/uiconfig/ui/specialcharacters.ui:349 msgctxt "specialcharacters|symboltext1" msgid "Recent Characters:" -msgstr "最近的字符:" +msgstr "最近的字符:" #: cui/uiconfig/ui/specialcharacters.ui:583 msgctxt "specialcharacters|favbtn|symboltext2" msgid "Favorite Characters:" -msgstr "收藏的字符:" +msgstr "收藏的字符:" #: cui/uiconfig/ui/spellingdialog.ui:9 msgctxt "spellingdialog|SpellingDialog" msgid "Spelling: $LANGUAGE ($LOCATION)" -msgstr "拼写:$LANGUAGE ($LOCATION)" +msgstr "拼写: $LANGUAGE ($LOCATION)" #: cui/uiconfig/ui/spellingdialog.ui:38 msgctxt "spellingdialog|options" @@ -10790,7 +10792,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:226 msgctxt "spellingdialog|languageft" msgid "Text languag_e:" -msgstr "文本语言(_E):" +msgstr "文本语言(_E):" #: cui/uiconfig/ui/spellingdialog.ui:252 msgctxt "spellingdialog|explainlink" @@ -10810,7 +10812,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:292 msgctxt "spellingdialog|alttitleft" msgid "Spelling: $LANGUAGE ($LOCATION)" -msgstr "拼写检查:$LANGUAGE ($LOCATION)" +msgstr "拼写检查: $LANGUAGE ($LOCATION)" #: cui/uiconfig/ui/spellingdialog.ui:319 msgctxt "spellingdialog|add" @@ -10855,7 +10857,7 @@ #: cui/uiconfig/ui/splitcellsdialog.ui:120 msgctxt "splitcellsdialog|label3" msgid "_Split cell into:" -msgstr "拆分单元格为(_S):" +msgstr "拆分单元格为(_S):" #: cui/uiconfig/ui/splitcellsdialog.ui:149 msgctxt "splitcellsdialog|label1" @@ -10865,7 +10867,7 @@ #: cui/uiconfig/ui/splitcellsdialog.ui:181 msgctxt "splitcellsdialog|hori" msgid "H_orizontally" -msgstr "水平(_O)" +msgstr "水平方向(_O)" #: cui/uiconfig/ui/splitcellsdialog.ui:200 msgctxt "splitcellsdialog|vert" @@ -10960,37 +10962,37 @@ #: cui/uiconfig/ui/swpossizepage.ui:304 msgctxt "swpossizepage|label1" msgid "Anchor" -msgstr "锚定" +msgstr "锚点" #: cui/uiconfig/ui/swpossizepage.ui:344 msgctxt "swpossizepage|horiposft" msgid "Hori_zontal:" -msgstr "横向(_Z):" +msgstr "横向(_Z):" #: cui/uiconfig/ui/swpossizepage.ui:358 msgctxt "swpossizepage|horibyft" msgid "b_y:" -msgstr "值(_Y):" +msgstr "值(_Y):" #: cui/uiconfig/ui/swpossizepage.ui:372 msgctxt "swpossizepage|vertbyft" msgid "_by:" -msgstr "值(_B):" +msgstr "值(_B):" #: cui/uiconfig/ui/swpossizepage.ui:386 msgctxt "swpossizepage|horitoft" msgid "_to:" -msgstr "至(_T):" +msgstr "至(_T):" #: cui/uiconfig/ui/swpossizepage.ui:433 msgctxt "swpossizepage|vertposft" msgid "_Vertical:" -msgstr "垂直(_V):" +msgstr "垂直(_V):" #: cui/uiconfig/ui/swpossizepage.ui:470 msgctxt "swpossizepage|verttoft" msgid "t_o:" -msgstr "至(_O):" +msgstr "至(_O):" #: cui/uiconfig/ui/swpossizepage.ui:492 msgctxt "swpossizepage|mirror" @@ -11000,7 +11002,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:509 msgctxt "swpossizepage|followtextflow" msgid "Follow te_xt flow" -msgstr "跟随文本流(_X)" +msgstr "跟随文字流(_X)" #: cui/uiconfig/ui/swpossizepage.ui:532 msgctxt "swpossizepage|label11" @@ -11025,7 +11027,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:63 msgctxt "textanimtabpage|FT_EFFECTS" msgid "E_ffect:" -msgstr "效果(_F):" +msgstr "效果(_F):" #: cui/uiconfig/ui/textanimtabpage.ui:80 msgctxt "textanimtabpage|liststoreEFFECT" @@ -11055,7 +11057,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:111 msgctxt "textanimtabpage|FT_DIRECTION" msgid "Direction:" -msgstr "方向:" +msgstr "方向:" #: cui/uiconfig/ui/textanimtabpage.ui:131 msgctxt "textanimtabpage|BTN_UP|tooltip_text" @@ -11110,7 +11112,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:305 msgctxt "textanimtabpage|FT_COUNT" msgid "Animation cycles:" -msgstr "动画循环的次数:" +msgstr "动画循环的次数:" #: cui/uiconfig/ui/textanimtabpage.ui:323 msgctxt "textanimtabpage|TSB_ENDLESS" @@ -11120,7 +11122,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:368 msgctxt "textanimtabpage|FT_AMOUNT" msgid "Increment:" -msgstr "增量:" +msgstr "增量:" #: cui/uiconfig/ui/textanimtabpage.ui:386 msgctxt "textanimtabpage|TSB_PIXEL" @@ -11130,7 +11132,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:431 msgctxt "textanimtabpage|FT_DELAY" msgid "Delay:" -msgstr "延迟:" +msgstr "延迟:" #: cui/uiconfig/ui/textanimtabpage.ui:449 msgctxt "textanimtabpage|TSB_AUTO" @@ -11185,22 +11187,22 @@ #: cui/uiconfig/ui/textattrtabpage.ui:248 msgctxt "textattrtabpage|label4" msgid "_Left:" -msgstr "左(_L):" +msgstr "左(_L):" #: cui/uiconfig/ui/textattrtabpage.ui:262 msgctxt "textattrtabpage|label5" msgid "_Right:" -msgstr "右(_R):" +msgstr "右(_R):" #: cui/uiconfig/ui/textattrtabpage.ui:276 msgctxt "textattrtabpage|label6" msgid "_Top:" -msgstr "顶端(_T):" +msgstr "顶端(_T):" #: cui/uiconfig/ui/textattrtabpage.ui:290 msgctxt "textattrtabpage|label7" msgid "_Bottom:" -msgstr "底部(_B):" +msgstr "底部(_B):" #: cui/uiconfig/ui/textattrtabpage.ui:360 msgctxt "textattrtabpage|label2" @@ -11215,7 +11217,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:446 msgctxt "textattrtabpage|label3" msgid "Text Anchor" -msgstr "文本锚定" +msgstr "文本锚点" #: cui/uiconfig/ui/textdialog.ui:8 msgctxt "textdialog|TextDialog" @@ -11250,12 +11252,12 @@ #: cui/uiconfig/ui/textflowpage.ui:164 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum number of consecutive hyphens" -msgstr "最多连续断字次数(_M)" +msgstr "最多连续断词次数(_M)" #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|LabelHyphenation" msgid "Hyphenation" -msgstr "断字处理" +msgstr "断词" #: cui/uiconfig/ui/textflowpage.ui:214 msgctxt "textflowpage|checkInsert" @@ -11265,7 +11267,7 @@ #: cui/uiconfig/ui/textflowpage.ui:230 msgctxt "textflowpage|checkPageStyle" msgid "With page st_yle:" -msgstr "应用页面样式(_Y):" +msgstr "应用页面样式(_Y):" #: cui/uiconfig/ui/textflowpage.ui:252 msgctxt "textflowpage|labelType" @@ -11275,12 +11277,12 @@ #: cui/uiconfig/ui/textflowpage.ui:279 msgctxt "textflowpage|labelPageNum" msgid "Page _number:" -msgstr "页码 (_N):" +msgstr "页码 (_N):" #: cui/uiconfig/ui/textflowpage.ui:300 msgctxt "textflowpage|labelPosition" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: cui/uiconfig/ui/textflowpage.ui:320 msgctxt "textflowpage|comboPageStyle-atkobject" @@ -11360,17 +11362,17 @@ #: cui/uiconfig/ui/thesaurus.ui:89 msgctxt "thesaurus|label1" msgid "Current word:" -msgstr "当前文字:" +msgstr "当前文字:" #: cui/uiconfig/ui/thesaurus.ui:104 msgctxt "thesaurus|label2" msgid "Alternatives:" -msgstr "替代文字:" +msgstr "替代文字:" #: cui/uiconfig/ui/thesaurus.ui:119 msgctxt "thesaurus|label3" msgid "Replace with:" -msgstr "替换为:" +msgstr "替换为:" #: cui/uiconfig/ui/transparencytabpage.ui:49 msgctxt "transparencytabpage|liststoreTYPE" @@ -11420,37 +11422,37 @@ #: cui/uiconfig/ui/transparencytabpage.ui:286 msgctxt "transparencytabpage|FT_TRGR_TYPE" msgid "Ty_pe:" -msgstr "类型(_P):" +msgstr "类型(_P):" #: cui/uiconfig/ui/transparencytabpage.ui:307 msgctxt "transparencytabpage|FT_TRGR_CENTER_X" msgid "Center _X:" -msgstr "中心 _X:" +msgstr "中心 _X:" #: cui/uiconfig/ui/transparencytabpage.ui:328 msgctxt "transparencytabpage|FT_TRGR_CENTER_Y" msgid "Center _Y:" -msgstr "中心 _Y:" +msgstr "中心 _Y:" #: cui/uiconfig/ui/transparencytabpage.ui:349 msgctxt "transparencytabpage|FT_TRGR_ANGLE" msgid "_Angle:" -msgstr "角度(_A):" +msgstr "角度(_A):" #: cui/uiconfig/ui/transparencytabpage.ui:370 msgctxt "transparencytabpage|FT_TRGR_BORDER" msgid "_Border:" -msgstr "边框(_B):" +msgstr "边框(_B):" #: cui/uiconfig/ui/transparencytabpage.ui:391 msgctxt "transparencytabpage|FT_TRGR_START_VALUE" msgid "_Start value:" -msgstr "起始值(_S):" +msgstr "起始值(_S):" #: cui/uiconfig/ui/transparencytabpage.ui:412 msgctxt "transparencytabpage|FT_TRGR_END_VALUE" msgid "_End value:" -msgstr "终止值(_E):" +msgstr "终止值(_E):" #: cui/uiconfig/ui/transparencytabpage.ui:469 msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject" @@ -11595,12 +11597,12 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:87 msgctxt "wordcompletionpage|label1" msgid "_Max. entries:" -msgstr "最大条目数(_M):" +msgstr "最大条目数(_M):" #: cui/uiconfig/ui/wordcompletionpage.ui:126 msgctxt "wordcompletionpage|label2" msgid "Mi_n. word length:" -msgstr "最小字词长度(_N):" +msgstr "最小字词长度(_N):" #: cui/uiconfig/ui/wordcompletionpage.ui:172 msgctxt "wordcompletionpage|appendspace" @@ -11630,7 +11632,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:299 msgctxt "wordcompletionpage|label3" msgid "Acc_ept with:" -msgstr "接受为(_E):" +msgstr "接受为(_E):" #: cui/uiconfig/ui/zoomdialog.ui:19 msgctxt "zoomdialog|ZoomDialog" @@ -11660,7 +11662,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:185 msgctxt "zoomdialog|variable" msgid "Variable:" -msgstr "可变:" +msgstr "可变:" #: cui/uiconfig/ui/zoomdialog.ui:214 msgctxt "zoomdialog|zoomsb-atkobject" @@ -11685,7 +11687,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:310 msgctxt "zoomdialog|columns" msgid "Columns:" -msgstr "分栏:" +msgstr "分栏:" #: cui/uiconfig/ui/zoomdialog.ui:341 msgctxt "zoomdialog|columnssb-atkobject" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dbaccess/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dbaccess/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dbaccess/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dbaccess/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-23 18:10+0200\n" -"PO-Revision-Date: 2018-11-25 06:10+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-21 17:08+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543126238.000000\n" +"X-POOTLE-MTIME: 1548090483.000000\n" #: dbaccess/inc/query.hrc:26 msgctxt "RSC_QUERY_OBJECT_TYPE" @@ -2255,7 +2255,7 @@ #: dbaccess/inc/strings.hrc:478 msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE" msgid "Unsupported source column type ($type$) at column position $pos$." -msgstr "在列 $pos$ 位置,不支持源列类型 ($type$)。" +msgstr "列位置 $pos$ 发现不支持的源列类型 ($type$)。" #: dbaccess/inc/strings.hrc:479 msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT" @@ -3004,7 +3004,7 @@ #: dbaccess/uiconfig/ui/indexdesigndialog.ui:352 msgctxt "indexdesigndialog|INDEX_DETAILS" msgid "Index Details" -msgstr "索引细节" +msgstr "索引详细信息" #: dbaccess/uiconfig/ui/jdbcconnectionpage.ui:20 msgctxt "jdbcconnectionpage|header" @@ -3948,7 +3948,7 @@ #: dbaccess/uiconfig/ui/specialsettingspage.ui:333 msgctxt "specialsettingspage|rowsft" msgid "Rows to scan column types:" -msgstr "判断字段类型要扫描的行数:" +msgstr "扫描列类型的行:" #: dbaccess/uiconfig/ui/sqlexception.ui:18 msgctxt "sqlexception|SQLExceptionDialog" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/desktop/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/desktop/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/desktop/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/desktop/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-23 18:11+0200\n" -"PO-Revision-Date: 2018-04-07 17:05+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-21 17:34+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -13,33 +13,33 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1523120735.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548092061.000000\n" #: desktop/inc/strings.hrc:25 msgctxt "RID_STR_COPYING_PACKAGE" msgid "Copying: " -msgstr "复制:" +msgstr "正在复制: " #: desktop/inc/strings.hrc:26 msgctxt "RID_STR_ERROR_WHILE_ADDING" msgid "Error while adding: " -msgstr "添加时出错:" +msgstr "添加时出错: " #: desktop/inc/strings.hrc:27 msgctxt "RID_STR_ERROR_WHILE_REMOVING" msgid "Error while removing: " -msgstr "删除时出错:" +msgstr "删除时出错: " #: desktop/inc/strings.hrc:28 msgctxt "RID_STR_PACKAGE_ALREADY_ADDED" msgid "Extension has already been added: " -msgstr "已添加扩展:" +msgstr "已添加扩展: " #: desktop/inc/strings.hrc:29 msgctxt "RID_STR_NO_SUCH_PACKAGE" msgid "There is no such extension deployed: " -msgstr "未部署此类扩展:" +msgstr "未部署此类扩展: " #: desktop/inc/strings.hrc:30 msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY" @@ -49,17 +49,17 @@ #: desktop/inc/strings.hrc:32 msgctxt "RID_STR_REGISTERING_PACKAGE" msgid "Enabling: " -msgstr "启用:" +msgstr "正在启用: " #: desktop/inc/strings.hrc:33 msgctxt "RID_STR_REVOKING_PACKAGE" msgid "Disabling: " -msgstr "禁用:" +msgstr "正在禁用: " #: desktop/inc/strings.hrc:34 msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE" msgid "Cannot detect media-type: " -msgstr "无法检测媒体类型: " +msgstr "无法侦测媒体类型: " #: desktop/inc/strings.hrc:35 msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE" @@ -69,17 +69,17 @@ #: desktop/inc/strings.hrc:36 msgctxt "RID_STR_ERROR_WHILE_REGISTERING" msgid "An error occurred while enabling: " -msgstr "启用时出错:" +msgstr "启用时出错: " #: desktop/inc/strings.hrc:37 msgctxt "RID_STR_ERROR_WHILE_REVOKING" msgid "An error occurred while disabling: " -msgstr "禁用时出错:" +msgstr "禁用时出错: " #: desktop/inc/strings.hrc:39 msgctxt "RID_STR_CONF_SCHEMA" msgid "Configuration Schema" -msgstr "配置架构" +msgstr "配置概要" #: desktop/inc/strings.hrc:40 msgctxt "RID_STR_CONF_DATA" @@ -149,12 +149,12 @@ #: desktop/inc/strings.hrc:58 msgctxt "RID_STR_HELPPROCESSING_GENERAL_ERROR" msgid "The extension cannot be installed because:\n" -msgstr "不能安装此扩展,因为:\n" +msgstr "无法安装此扩展,因为:\n" #: desktop/inc/strings.hrc:59 msgctxt "RID_STR_HELPPROCESSING_XMLPARSING_ERROR" msgid "The extension will not be installed because an error occurred in the Help files:\n" -msgstr "将不安装该扩展,因为帮助文件中出错:\n" +msgstr "将不会安装该扩展,因为帮助文件中出错:\n" #: desktop/inc/strings.hrc:61 msgctxt "RID_STR_ADD_PACKAGES" @@ -185,36 +185,36 @@ #, c-format msgctxt "RID_STR_ADDING_PACKAGES" msgid "Adding %EXTENSION_NAME" -msgstr "添加 %EXTENSION_NAME" +msgstr "正在添加 %EXTENSION_NAME" #: desktop/inc/strings.hrc:67 #, c-format msgctxt "RID_STR_REMOVING_PACKAGES" msgid "Removing %EXTENSION_NAME" -msgstr "删除 %EXTENSION_NAME" +msgstr "正在删除 %EXTENSION_NAME" #: desktop/inc/strings.hrc:68 #, c-format msgctxt "RID_STR_ENABLING_PACKAGES" msgid "Enabling %EXTENSION_NAME" -msgstr "启用 %EXTENSION_NAME" +msgstr "正在启用 %EXTENSION_NAME" #: desktop/inc/strings.hrc:69 #, c-format msgctxt "RID_STR_DISABLING_PACKAGES" msgid "Disabling %EXTENSION_NAME" -msgstr "禁用 %EXTENSION_NAME" +msgstr "正在禁用 %EXTENSION_NAME" #: desktop/inc/strings.hrc:70 #, c-format msgctxt "RID_STR_ACCEPT_LICENSE" msgid "Accept license for %EXTENSION_NAME" -msgstr "接受 %EXTENSION_NAME 许可协议" +msgstr "接受 %EXTENSION_NAME 的许可协议" #: desktop/inc/strings.hrc:71 msgctxt "RID_STR_ERROR_UNKNOWN_STATUS" msgid "Error: The status of this extension is unknown" -msgstr "错误:此扩展的状态未知" +msgstr "错误: 此扩展的状态未知" #: desktop/inc/strings.hrc:72 msgctxt "RID_STR_CLOSE_BTN" @@ -235,17 +235,17 @@ msgstr "" "%PRODUCTNAME 已更新至新版本。某些共享的 %PRODUCTNAME 扩展与此版本不兼容,必须更新这些扩展才能启动 %PRODUCTNAME。\n" "\n" -"更新共享的扩展需要管理员权限。请与您的系统管理员联系以更新以下共享的扩展:" +"更新共享的扩展需要管理员权限。请与您的系统管理员联系以更新以下共享的扩展:" #: desktop/inc/strings.hrc:77 msgctxt "RID_STR_ERROR_MISSING_DEPENDENCIES" msgid "The extension cannot be enabled as the following system dependencies are not fulfilled:" -msgstr "无法启用该扩展,因为不满足以下系统依赖性:" +msgstr "无法启用该扩展,因为不满足以下系统依赖:" #: desktop/inc/strings.hrc:78 msgctxt "RID_STR_ERROR_MISSING_LICENSE" msgid "This extension is disabled because you haven't accepted the license yet.\n" -msgstr "该扩展被禁用,因为您尚未接受其许可协议。\n" +msgstr "该扩展已被禁用,因为您尚未接受其许可协议。\n" #: desktop/inc/strings.hrc:79 msgctxt "RID_STR_SHOW_LICENSE_CMD" @@ -259,19 +259,19 @@ "Click 'OK' to proceed with the installation.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '%NAME'。\n" -"单击“确定”以继续安装。\n" -"单击“取消”以取消安装。 " +"您将要安装扩展「%NAME」。\n" +"单击「确定」可继续安装。\n" +"单击「取消」可取消安装。" #: desktop/inc/strings.hrc:83 msgctxt "RID_STR_WARNING_INSTALL_EXTENSION_DISABLED" msgid "Extension installation is currently disabled. Please consult your system administrator for more information." -msgstr "扩展安装当前已被禁止。请联系您的系统管理员获取更多信息。" +msgstr "扩展安装目前已禁用。请咨询您的系统管理员获取更多信息。" #: desktop/inc/strings.hrc:85 msgctxt "RID_STR_WARNING_REMOVE_EXTENSION_DISABLED" msgid "Extension removal is currently disabled. Please consult your system administrator for more information." -msgstr "当前已禁止移除扩展。请联系您的系统管理员获取更多信息。" +msgstr "扩展移除目前已禁用。请咨询您的系统管理员获取更多信息。" #: desktop/inc/strings.hrc:87 msgctxt "RID_STR_WARNING_REMOVE_EXTENSION" @@ -280,9 +280,9 @@ "Click 'OK' to remove the extension.\n" "Click 'Cancel' to stop removing the extension." msgstr "" -"您将要移除扩展 '%NAME'。\n" -"单击“确定”以移除安装。\n" -"单击“取消”以取消移除操作。" +"您将要移除扩展「%NAME」。\n" +"单击「确定」可移除该扩展。\n" +"单击「取消」可停止移除该扩展。" #: desktop/inc/strings.hrc:90 msgctxt "RID_STR_WARNING_REMOVE_SHARED_EXTENSION" @@ -291,9 +291,9 @@ "Click 'OK' to remove the extension.\n" "Click 'Cancel' to stop removing the extension." msgstr "" -"当在多用户环境下更改已共享的扩展时,请确保没有其他用户在使用同一个 %PRODUCTNAME。\n" -"单击“确定”以移除该扩展。\n" -"单击“取消”停止移除操作。" +"当在多用户环境下更改共享扩展时,请确保没有其他用户在操作同一个 %PRODUCTNAME。\n" +"单击「确定」可移除该扩展。\n" +"单击「取消」可停止移除该扩展。" #: desktop/inc/strings.hrc:94 msgctxt "RID_STR_WARNING_ENABLE_SHARED_EXTENSION" @@ -302,9 +302,9 @@ "Click 'OK' to enable the extension.\n" "Click 'Cancel' to stop enabling the extension." msgstr "" -"当在多用户环境下更改已共享的扩展时,请确保没有其他用户在使用同一个 %PRODUCTNAME。\n" -"单击“确定”以启用该扩展。\n" -"单击“取消”停止启用操作。" +"当在多用户环境下更改共享扩展时,请确保没有其他用户在操作同一个 %PRODUCTNAME。\n" +"单击「确定」可启用该扩展。\n" +"单击「取消」可停止启用该扩展。" #: desktop/inc/strings.hrc:98 msgctxt "RID_STR_WARNING_DISABLE_SHARED_EXTENSION" @@ -313,19 +313,19 @@ "Click 'OK' to disable the extension.\n" "Click 'Cancel' to stop disabling the extension." msgstr "" -"当在多用户环境下更改已共享的扩展时,请确保没有其他用户在使用同一个 %PRODUCTNAME。\n" -"单击“确定”以禁用该扩展。\n" -"单击“取消”停止禁用操作。" +"当在多用户环境下更改共享扩展时,请确保没有其他用户在操作同一个 %PRODUCTNAME。\n" +"单击「确定」可禁用该扩展。\n" +"单击「取消」可停止禁用该扩展。" #: desktop/inc/strings.hrc:102 msgctxt "RID_STR_UNSUPPORTED_PLATFORM" msgid "The extension '%Name' does not work on this computer." -msgstr "扩展 '%Name' 无法在该计算机上使用。" +msgstr "扩展「%Name」无法在该计算机上使用。" #: desktop/inc/strings.hrc:104 msgctxt "RID_DLG_UPDATE_INSTALL_INSTALLING" msgid "Installing extensions..." -msgstr "安装扩展..." +msgstr "正在安装扩展..." #: desktop/inc/strings.hrc:105 msgctxt "RID_DLG_UPDATE_INSTALL_FINISHED" @@ -340,27 +340,27 @@ #: desktop/inc/strings.hrc:107 msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_DOWNLOAD" msgid "Error while downloading extension %NAME. " -msgstr "下载扩展 %NAME 时出错。 " +msgstr "下载扩展「%NAME」时出错。 " #: desktop/inc/strings.hrc:108 msgctxt "RID_DLG_UPDATE_INSTALL_THIS_ERROR_OCCURRED" msgid "The error message is: " -msgstr "错误消息为:" +msgstr "错误消息为: " #: desktop/inc/strings.hrc:109 msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_INSTALLATION" msgid "Error while installing extension %NAME. " -msgstr "安装扩展 %NAME 时出错。 " +msgstr "安装扩展「%NAME」时出错。 " #: desktop/inc/strings.hrc:110 msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED" msgid "The license agreement for extension %NAME was refused. " -msgstr "扩展 %NAME 的许可协议被拒绝。 " +msgstr "扩展「%NAME」的许可协议被拒绝。 " #: desktop/inc/strings.hrc:111 msgctxt "RID_DLG_UPDATE_INSTALL_EXTENSION_NOINSTALL" msgid "The extension will not be installed." -msgstr "不会安装扩展。" +msgstr "不会安装该扩展。" #: desktop/inc/strings.hrc:113 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN" @@ -380,7 +380,7 @@ #: desktop/inc/strings.hrc:116 msgctxt "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN" msgid "Extension requires at least %PRODUCTNAME version %VERSION" -msgstr "扩展要求 %PRODUCTNAME 最低版本为 %VERSION" +msgstr "扩展要求的 %PRODUCTNAME 最低版本为 %VERSION" #: desktop/inc/strings.hrc:118 msgctxt "RID_STR_WARNING_VERSION_LESS" @@ -390,10 +390,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"这个扩展的新版本 $DEPLOYED 已经安装。\n" -"点击“确定”以替换已安装的扩展。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"这个扩展的更新版本 $DEPLOYED 已经安装。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:122 msgctxt "RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES" @@ -403,10 +403,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"名称为 '$OLDNAME' 的较新的版本 $DEPLOYED 已经安装。\n" -"点击“确定”以替换已安装版本。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"已经安装名称为「$OLDNAME」的较新的版本 $DEPLOYED。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:126 msgctxt "RID_STR_WARNING_VERSION_EQUAL" @@ -416,10 +416,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"这个版本已经安装。\n" -"点击“确定”以替换已安装的扩展。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"此版本已经安装。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:130 msgctxt "RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES" @@ -429,10 +429,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"该版本(名称为 '$OLDNAME' )已经安装。\n" -"点击“确定”以替换已安装版本。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"该版本(名称为「$OLDNAME」)已经安装。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:134 msgctxt "RID_STR_WARNING_VERSION_GREATER" @@ -442,10 +442,10 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"这个扩展的旧版本 $DEPLOYED 已经安装。\n" -"点击“确定”以替换已安装的扩展。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"已经安装该扩展的旧版本 $DEPLOYED。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:138 msgctxt "RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES" @@ -455,25 +455,25 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" -"更早的名称为 '$OLDNAME' 的版本 $DEPLOYED 已经安装。\n" -"点击“确定”以替换已安装的版本。\n" -"点击“取消”结束安装。" +"您将要安装扩展「$NAME」的 $NEW 版本。\n" +"已经安装名为「$OLDNAME」的较早版本 $DEPLOYED。\n" +"点击「确定」可替换已安装的扩展。\n" +"点击「取消」可停止安装。" #: desktop/inc/strings.hrc:143 msgctxt "RID_DLG_UPDATE_NONE" msgid "No new updates are available." -msgstr "没有新的更新。" +msgstr "没有新的更新可用。" #: desktop/inc/strings.hrc:144 msgctxt "RID_DLG_UPDATE_NOINSTALLABLE" msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'." -msgstr "没有可安装的更新。要查看已忽略或已禁用更新,请选中“显示所有更新”复选框。" +msgstr "没有可安装的更新。要查看已忽略或已禁用更新,请选中「显示所有更新」复选框。" #: desktop/inc/strings.hrc:145 msgctxt "RID_DLG_UPDATE_FAILURE" msgid "An error occurred:" -msgstr "发生错误:" +msgstr "发生错误:" #: desktop/inc/strings.hrc:146 msgctxt "RID_DLG_UPDATE_UNKNOWNERROR" @@ -483,12 +483,12 @@ #: desktop/inc/strings.hrc:147 msgctxt "RID_DLG_UPDATE_NODESCRIPTION" msgid "No more details are available for this update." -msgstr "此扩展无更多详情。" +msgstr "此扩展无更多详细信息。" #: desktop/inc/strings.hrc:148 msgctxt "RID_DLG_UPDATE_NOINSTALL" msgid "The extension cannot be updated because:" -msgstr "无法更新该扩展,原因如下:" +msgstr "无法更新该扩展,原因如下:" #: desktop/inc/strings.hrc:149 msgctxt "RID_DLG_UPDATE_NODEPENDENCY" @@ -533,12 +533,12 @@ #: desktop/inc/strings.hrc:158 msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START" msgid "The application cannot be started. " -msgstr "无法启动该应用程序。" +msgstr "无法启动应用程序。 " #: desktop/inc/strings.hrc:159 msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING" msgid "The configuration directory \"$1\" could not be found." -msgstr "无法找到配置路径 \"$1\"。" +msgstr "无法找到配置目录「$1」。" #: desktop/inc/strings.hrc:160 msgctxt "STR_BOOTSTRAP_ERR_PATH_INVALID" @@ -548,22 +548,22 @@ #: desktop/inc/strings.hrc:161 msgctxt "STR_BOOTSTRAP_ERR_INTERNAL" msgid "An internal error occurred." -msgstr "出现了一个内部的错误。" +msgstr "发生内部错误。" #: desktop/inc/strings.hrc:162 msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT" msgid "The configuration file \"$1\" is corrupt." -msgstr "配置文件 \"$1\" 已经损坏。" +msgstr "配置文件「$1」已经损坏。" #: desktop/inc/strings.hrc:163 msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING" msgid "The configuration file \"$1\" was not found." -msgstr "无法找到配置文件 \"$1\" 。" +msgstr "无法找到配置文件「$1」。" #: desktop/inc/strings.hrc:164 msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT" msgid "The configuration file \"$1\" does not support the current version." -msgstr "配置文件 \"$1\" 不支持当前版本。" +msgstr "配置文件「$1」不支持当前版本。" #: desktop/inc/strings.hrc:165 msgctxt "STR_BOOTSTRAP_ERR_LANGUAGE_MISSING" @@ -573,7 +573,7 @@ #: desktop/inc/strings.hrc:166 msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED" msgid "User installation could not be completed. " -msgstr "安装无法完成。" +msgstr "安装无法完成。 " #: desktop/inc/strings.hrc:167 msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE" @@ -583,12 +583,12 @@ #: desktop/inc/strings.hrc:168 msgctxt "STR_ASK_START_SETUP_MANUALLY" msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages." -msgstr "要修复您的程序,请您从光盘启动安装程序或从存有安装数据的目录直接启动安装程序。" +msgstr "要修复您的程序,请您从光盘启动安装程序或从存有安装包的目录直接启动安装程序。" #: desktop/inc/strings.hrc:169 msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL" msgid "A general error occurred while accessing your central configuration. " -msgstr "在访问您的中心配置时发生了一般的访问错误。" +msgstr "访问您的中央配置时发生了常规错误。 " #: desktop/inc/strings.hrc:170 msgctxt "STR_BOOTSTRAP_ERR_CFG_DATAACCESS" @@ -604,7 +604,7 @@ #: desktop/inc/strings.hrc:171 msgctxt "STR_INTERNAL_ERRMSG" msgid "The following internal error has occurred: " -msgstr "发生了以下的内部错误:" +msgstr "发生了以下内部错误: " #: desktop/inc/strings.hrc:172 msgctxt "STR_LO_MUST_BE_RESTARTED" @@ -619,8 +619,8 @@ "\n" "Do you really want to continue?" msgstr "" -"%PRODUCTNAME 的另外一个实例正在访问您的个人设置或您的设置已经被锁定。\n" -"同时访问个人设置会造成数据不一致。继续前请您确定用户 '$u' 已关闭 '$h' 上运行的 %PRODUCTNAME 。\n" +"%PRODUCTNAME 的另外一个实例正在访问您的个人设置或您的设置已被锁定。\n" +"同时访问个人设置会造成数据不一致。继续前请您确定用户「$u」已关闭主机「$h」上运行的 %PRODUCTNAME。\n" "\n" "您确定要继续吗?" @@ -637,7 +637,7 @@ #: desktop/inc/strings.hrc:176 msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE" msgid "The path manager is not available.\n" -msgstr "无法使用路径管理器。\n" +msgstr "路径管理器不可用。\n" #: desktop/inc/strings.hrc:177 msgctxt "STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE" @@ -665,17 +665,17 @@ #: desktop/inc/strings.hrc:181 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2" msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup." -msgstr "阅读上面显示的完整许可协议。在控制台上键入“是”接受许可协议,然后按 Return 键。键入“否”可拒绝并终止安装扩展软件。" +msgstr "阅读上面显示的完整许可协议。若要接受许可协议,请在控制台上键入「是」,然后按回车键。键入「否」可拒绝并终止扩展安装。" #: desktop/inc/strings.hrc:185 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3" msgid "[Enter \"yes\" or \"no\"]:" -msgstr "[输入“是”或“否”]:" +msgstr "[输入「是」或「否」]:" #: desktop/inc/strings.hrc:186 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4" msgid "Your input was not correct. Please enter \"yes\" or \"no\":" -msgstr "输入错误。请输入“是”或“否”:" +msgstr "输入错误。请输入「是」或「否」:" #: desktop/inc/strings.hrc:187 msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES" @@ -700,12 +700,12 @@ #: desktop/inc/strings.hrc:191 msgctxt "RID_STR_CONCURRENTINSTANCE" msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:" -msgstr "unopkg无法启动 。锁定文件提示它已在运行。如果您确定它已不再运行,请删除位于以下位置的锁定文件:" +msgstr "unopkg 无法启动。锁文件显示它已在运行。如果您确定它已不再运行,请删除位于以下位置的锁文件:" #: desktop/inc/strings.hrc:193 msgctxt "RID_STR_UNOPKG_ERROR" msgid "ERROR: " -msgstr "错误:" +msgstr "错误: " #: desktop/uiconfig/ui/dependenciesdialog.ui:9 msgctxt "dependenciesdialog|Dependencies" @@ -715,7 +715,7 @@ #: desktop/uiconfig/ui/dependenciesdialog.ui:60 msgctxt "dependenciesdialog|label1" msgid "The extension cannot be installed as the following system dependencies are not fulfilled:" -msgstr "由于未满足以下系统依赖关系,该扩展无法安装:" +msgstr "由于未满足以下系统依赖关系,该扩展无法安装:" #: desktop/uiconfig/ui/extensionmanager.ui:9 msgctxt "extensionmanager|ExtensionManagerDialog" @@ -815,7 +815,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:67 msgctxt "licensedialog|head" msgid "Please follow these steps to proceed with the installation of the extension:" -msgstr "请跟随以下步骤以完成该扩展的安装:" +msgstr "请跟随以下步骤以完成该扩展的安装:" #: desktop/uiconfig/ui/licensedialog.ui:90 msgctxt "licensedialog|label2" @@ -830,12 +830,12 @@ #: desktop/uiconfig/ui/licensedialog.ui:149 msgctxt "licensedialog|label4" msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text." -msgstr "阅读完整的许可协议。使用滚动条或者对话框中的“向下滚动”按钮来阅读整个文本。" +msgstr "阅读完整的许可协议。使用滚动条或对话框中的「向下滚动」按钮来阅读完整的许可文本。" #: desktop/uiconfig/ui/licensedialog.ui:167 msgctxt "licensedialog|label5" msgid "Accept the License Agreement for the extension by pressing the 'Accept' button." -msgstr "请点击“接受”按钮以接受该扩展的许可协议。" +msgstr "请点击「接受」按钮以接受该扩展的许可协议。" #: desktop/uiconfig/ui/licensedialog.ui:180 msgctxt "licensedialog|down" @@ -880,7 +880,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:214 msgctxt "updatedialog|PUBLISHER_LABEL" msgid "Publisher:" -msgstr "发布者:" +msgstr "发布者:" #: desktop/uiconfig/ui/updatedialog.ui:225 msgctxt "updatedialog|PUBLISHER_LINK" @@ -890,17 +890,17 @@ #: desktop/uiconfig/ui/updatedialog.ui:242 msgctxt "updatedialog|RELEASE_NOTES_LABEL" msgid "What is new:" -msgstr "新增功能:" +msgstr "新增功能:" #: desktop/uiconfig/ui/updatedialog.ui:253 msgctxt "updatedialog|RELEASE_NOTES_LINK" msgid "Release notes" -msgstr "发行注记" +msgstr "发行说明" #: desktop/uiconfig/ui/updateinstalldialog.ui:8 msgctxt "updateinstalldialog|UpdateInstallDialog" msgid "Download and Installation" -msgstr "下载并安装" +msgstr "下载与安装" #: desktop/uiconfig/ui/updateinstalldialog.ui:87 msgctxt "updateinstalldialog|DOWNLOADING" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/af_ZA.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/af_ZA.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/af_ZA.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/af_ZA.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 06:54+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 04:59+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787590.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Afrikaans spelling dictionary, and hyphenation rules" -msgstr "南非荷兰语拼写词典及连字符规则" +msgstr "南非荷兰语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/bg_BG.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/bg_BG.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/bg_BG.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/bg_BG.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:07+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 04:59+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787596.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Bulgarian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "保加利亚语拼写词典、连字符规则及同义词库" +msgstr "保加利亚语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/da_DK.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/da_DK.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/da_DK.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/da_DK.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:08+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:07+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547788031.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Danish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "丹麦语拼写词典、连字符规则及同义词库" +msgstr "丹麦语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/de.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/de.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/de.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/de.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2012-06-16 16:33+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 03:57+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547783871.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "German (Austria, Germany, Switzerland) spelling dictionaries, hyphenation rules, and thesaurus" -msgstr "德语 (奥地利、德国、瑞士) 拼写词典、断字规则及同义词库" +msgstr "德语 (奥地利、德国、瑞士) 拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/en.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/en.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/en.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/en.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-12-16 08:58+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:00+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787609.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker" -msgstr "英语拼写词典、连字符规则、同义词库及语法检查器" +msgstr "英语拼写词典、断词规则、同义词库及语法检查器" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/es.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/es.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/es.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/es.po 2019-01-30 17:56:45.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-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-06-06 04:12+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2019-01-18 03:57+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\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: Pootle 2.7\n" -"X-POOTLE-MTIME: 1465186325.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547783875.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for Spain and Latin America" -msgstr "西班牙及拉丁美洲西班牙语的拼写检查、断字规则及同义词典" +msgstr "西班牙及拉丁美洲西班牙语的拼写检查、断词规则及同义词典" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/et_EE.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/et_EE.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/et_EE.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/et_EE.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:10+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:00+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787618.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Estonian spelling dictionary, and hyphenation rules" -msgstr "爱沙尼亚语拼写词典及连字符规则" +msgstr "爱沙尼亚语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/fr_FR.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/fr_FR.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/fr_FR.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/fr_FR.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:11+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:00+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787623.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "French spelling dictionary, hyphenation rules, and thesaurus" -msgstr "法语拼写词典、连字符规则及同义词库" +msgstr "法语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/hr_HR.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/hr_HR.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/hr_HR.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/hr_HR.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:13+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787671.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Croatian spelling dictionary, and hyphenation rules" -msgstr "克罗地亚语拼写词典及连字符规则" +msgstr "克罗地亚语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/hu_HU.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/hu_HU.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/hu_HU.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/hu_HU.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-12-16 09:02+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787675.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Hungarian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "匈牙利语拼写词典、连字符规则、同义词库及语法检查器" +msgstr "匈牙利语拼写词典、断词规则、同义词库及语法检查器" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/id.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/id.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/id.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/id.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-04 22:52+0200\n" -"PO-Revision-Date: 2018-07-31 07:46+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533023178.000000\n" +"X-POOTLE-MTIME: 1547787691.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "印度尼西亚拼写词典、连字符规则及同义词库" +msgstr "印度尼西亚语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/it_IT.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/it_IT.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/it_IT.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/it_IT.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2011-10-08 09:14+0200\n" -"Last-Translator: Dean \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787697.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Italian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "意大利语拼写词典、连字符规则及同义词库" +msgstr "意大利语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/lt_LT.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/lt_LT.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/lt_LT.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/lt_LT.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:15+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787700.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Lithuanian spelling dictionary, and hyphenation rules" -msgstr "立陶宛语拼写词典及连字符规则" +msgstr "立陶宛语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/lv_LV.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/lv_LV.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/lv_LV.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/lv_LV.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:17+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787703.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Latvian spelling dictionary, and hyphenation rules" -msgstr "拉脱维亚语拼写词典及连字符规则" +msgstr "拉脱维亚语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/nl_NL.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/nl_NL.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/nl_NL.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/nl_NL.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:17+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787707.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Dutch spelling dictionary, and hyphenation rules" -msgstr "荷兰语语拼写词典及连字符规则" +msgstr "荷兰语拼写词典及断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/no.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/no.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/no.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/no.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\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-28 18:07+0200\n" -"PO-Revision-Date: 2011-10-08 09:19+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787711.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Norwegian (Nynorsk and Bokmål) spelling dictionary, hyphenation rules, and thesaurus" -msgstr "挪威语(新挪威语及书面挪威语)拼写词典、连字符规则及同义词库" +msgstr "挪威语(新挪威语及书面挪威语)拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pl_PL.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pl_PL.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pl_PL.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pl_PL.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:19+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787714.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Polish spelling dictionary, hyphenation rules, and thesaurus" -msgstr "波兰语拼写词典、连字符规则及同义词库" +msgstr "波兰语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pt_BR.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pt_BR.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pt_BR.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pt_BR.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2012-12-26 11:46+0000\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 03:58+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1356522371.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547783880.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Spelling, hyphenation and grammar checking tools for Brazilian Portuguese" -msgstr "巴西葡萄牙语拼写检查、断字规则与语法检查工具" +msgstr "巴西葡萄牙语拼写检查、断词规则与语法检查工具" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pt_PT.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pt_PT.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/pt_PT.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/pt_PT.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:20+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:02+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787720.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "European Portuguese spelling dictionary, hyphenation rules, and thesaurus" -msgstr "欧洲葡萄牙语拼写词典、连字符规则及同义词库" +msgstr "欧洲葡萄牙语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/ro.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/ro.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/ro.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/ro.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:21+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:02+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787753.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Romanian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "罗马尼亚语拼写词典、连字符规则及同义词库" +msgstr "罗马尼亚语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/ru_RU.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/ru_RU.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/ru_RU.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/ru_RU.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-12-20 05:31+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:02+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787779.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Russian spelling dictionary, hyphenation rules, thesaurus, and grammar checker" -msgstr "俄罗斯语拼写词典、连字符规则、同义词库及语法检查器" +msgstr "俄罗斯语拼写词典、断词规则、同义词库及语法检查器" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sk_SK.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sk_SK.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sk_SK.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sk_SK.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:21+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787782.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Slovak spelling dictionary, hyphenation rules, and thesaurus" -msgstr "斯洛伐克语拼写词典、连字符规则及同义词库" +msgstr "斯洛伐克语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sl_SI.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sl_SI.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sl_SI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sl_SI.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:21+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787799.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Slovenian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "斯洛文尼亚语拼写词典、连字符规则及同义词库" +msgstr "斯洛文尼亚语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sr.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sr.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/sr.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/sr.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:22+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787807.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Serbian (Cyrillic and Latin) spelling dictionary, and hyphenation rules" -msgstr "塞尔维亚语(西里尔体及拉丁体)拼写词典及连字符规则" +msgstr "塞尔维亚语(西里尔及拉丁字母)拼写词典与断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/uk_UA.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/uk_UA.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/uk_UA.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/uk_UA.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:23+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787816.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Ukrainian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "乌克兰语拼写词典、连字符规则及同义词库" +msgstr "乌克兰语拼写词典、断词规则及同义词库" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/zu_ZA.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/zu_ZA.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/dictionaries/zu_ZA.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/dictionaries/zu_ZA.po 2019-01-30 17:56:45.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LibO 350-l10n\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-10-08 09:24+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2019-01-18 05:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: none\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547787822.000000\n" #: description.xml msgctxt "" @@ -21,4 +22,4 @@ "dispname\n" "description.text" msgid "Zulu hyphenation rules" -msgstr "祖鲁语连字符规则" +msgstr "祖鲁语断词规则" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/editeng/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/editeng/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/editeng/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/editeng/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2017-11-20 06:39+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 14:29+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1511159946.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547821768.000000\n" #: editeng/uiconfig/ui/spellmenu.ui:12 msgctxt "spellmenu|ignore" @@ -706,7 +706,7 @@ #: include/editeng/editrids.hrc:177 msgctxt "RID_SVXITEMS_AUTOKERN_TRUE" msgid "Pair Kerning" -msgstr "字距微调 (Pair kerning)" +msgstr "字距微调" #: include/editeng/editrids.hrc:178 msgctxt "RID_SVXITEMS_AUTOKERN_FALSE" @@ -816,12 +816,12 @@ #: include/editeng/editrids.hrc:199 msgctxt "RID_SVXITEMS_HYPHEN_TRUE" msgid "Hyphenation" -msgstr "断字处理" +msgstr "断词" #: include/editeng/editrids.hrc:200 msgctxt "RID_SVXITEMS_HYPHEN_FALSE" msgid "No hyphenation" -msgstr "无断字处理" +msgstr "无断词处理" #: include/editeng/editrids.hrc:201 msgctxt "RID_SVXITEMS_PAGE_END_TRUE" @@ -947,7 +947,7 @@ #: include/editeng/editrids.hrc:226 msgctxt "RID_SVXITEMS_KERNING_COMPLETE" msgid "Kerning " -msgstr "字距微调 (Kerning)" +msgstr "字距微调" #: include/editeng/editrids.hrc:227 msgctxt "RID_SVXITEMS_KERNING_EXPANDED" @@ -1128,12 +1128,12 @@ #: include/editeng/editrids.hrc:263 msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT" msgid "Text direction right-to-left (vertical)" -msgstr "文字方向从右向左(竖写)" +msgstr "文字方向从右向左(竖排)" #: include/editeng/editrids.hrc:264 msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT" msgid "Text direction left-to-right (vertical)" -msgstr "文字方向从左向右(竖写)" +msgstr "文字方向从左向右(竖排)" #: include/editeng/editrids.hrc:265 msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT" @@ -1200,7 +1200,7 @@ #: include/editeng/editrids.hrc:281 msgctxt "RID_SVXITEMS_VERJUST_TOP" msgid "Align to top" -msgstr "顶部对齐" +msgstr "向上对齐" #: include/editeng/editrids.hrc:282 msgctxt "RID_SVXITEMS_VERJUST_CENTER" @@ -1210,7 +1210,7 @@ #: include/editeng/editrids.hrc:283 msgctxt "RID_SVXITEMS_VERJUST_BOTTOM" msgid "Align to bottom" -msgstr "底部对齐" +msgstr "向下对齐" #. enum SvxCellJustifyMethod ---------------------------------------------------- #: include/editeng/editrids.hrc:286 diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/extensions/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/extensions/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/extensions/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/extensions/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:14+0100\n" -"PO-Revision-Date: 2018-10-18 15:52+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-23 20:03+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1539877943.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548273838.000000\n" #: extensions/inc/command.hrc:29 msgctxt "RID_RSC_ENUM_COMMAND_TYPE" @@ -1044,7 +1044,7 @@ #: extensions/inc/strings.hrc:106 msgctxt "RID_STR_CLASSID" msgid "Class ID" -msgstr "类索引" +msgstr "类 ID" #: extensions/inc/strings.hrc:107 msgctxt "RID_STR_HEIGHT" @@ -1684,7 +1684,7 @@ #: extensions/inc/strings.hrc:234 msgctxt "RID_STR_ANCHOR_TYPE" msgid "Anchor" -msgstr "锚定" +msgstr "锚点" #. To translators: That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation. #: extensions/inc/strings.hrc:236 @@ -1987,7 +1987,7 @@ #: extensions/inc/strings.hrc:299 msgctxt "RID_UPDATE_STR_INSTALL_ERROR" 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。" #: extensions/inc/strings.hrc:300 msgctxt "RID_UPDATE_STR_OVERWRITE_WARNING" @@ -2166,7 +2166,7 @@ #: extensions/inc/strings.hrc:335 msgctxt "RID_BIB_STR_FRAME_TITLE" msgid "Bibliography Database" -msgstr "文献数据库" +msgstr "参考文献数据库" #: extensions/inc/strings.hrc:336 msgctxt "RID_MAP_QUESTION" @@ -2891,7 +2891,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:36 msgctxt "generalpage|shortname" msgid "_Short name" -msgstr "短名称(_S)" +msgstr "简称(_S)" #: extensions/uiconfig/sbibliography/ui/generalpage.ui:52 msgctxt "generalpage|authtype" @@ -3051,7 +3051,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:107 msgctxt "mappingdialog|label2" msgid "_Short name" -msgstr "短名称(_S)" +msgstr "简称(_S)" #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:122 msgctxt "mappingdialog|label3" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/extras/source/autocorr/emoji.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/extras/source/autocorr/emoji.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/extras/source/autocorr/emoji.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/extras/source/autocorr/emoji.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-12-20 08:16+0100\n" -"PO-Revision-Date: 2018-05-11 04:17+0000\n" -"Last-Translator: abryl \n" +"PO-Revision-Date: 2018-12-18 02:31+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1526012264.000000\n" +"X-POOTLE-MTIME: 1545100311.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1121,7 +1121,7 @@ "SET_MINUS\n" "LngText.text" msgid "\\" -msgstr "SET_MINUS" +msgstr "\\" #. √ (U+0221A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/filter/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/filter/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/filter/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/filter/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2017-12-22 15:22+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2018-12-18 12:41+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1513956159.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545136873.000000\n" #: filter/inc/strings.hrc:25 msgctxt "STR_COLUMN_HEADER_NAME" @@ -423,7 +423,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:450 msgctxt "pdfgeneralpage|embed" msgid "Hybrid PDF (em_bed ODF file)" -msgstr "混合PDF(在PDF中嵌入ODF文档)(_B)" +msgstr "混合式 PDF(内嵌 ODF 文件)(_B)" #: filter/uiconfig/ui/pdfgeneralpage.ui:454 msgctxt "pdfgeneralpage|embed|tooltip_text" @@ -433,7 +433,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:466 msgctxt "pdfgeneralpage|pdfa" msgid "Archive P_DF/A-1a (ISO 19005-1)" -msgstr "Archive P_DF/A-1a (ISO 19005-1)" +msgstr "存档 P_DF/A-1a (ISO 19005-1)" #: filter/uiconfig/ui/pdfgeneralpage.ui:470 msgctxt "pdfgeneralpage|pdfa|tooltip_text" @@ -443,7 +443,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:482 msgctxt "pdfgeneralpage|tagged" msgid "_Tagged PDF (add document structure)" -msgstr "_Tagged PDF(添加文档结构)" +msgstr "加标签的 PDF(添加文档结构)(_T)" #: filter/uiconfig/ui/pdfgeneralpage.ui:486 msgctxt "pdfgeneralpage|tagged|tooltip_text" @@ -518,7 +518,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:654 msgctxt "pdfgeneralpage|usereferencexobject" msgid "Use reference XObjects" -msgstr "使用 reference XObjects" +msgstr "使用引用 XObject" #: filter/uiconfig/ui/pdfgeneralpage.ui:669 msgctxt "pdfgeneralpage|hiddenpages" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/filter/source/config/fragments/filters.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/filter/source/config/fragments/filters.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/filter/source/config/fragments/filters.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/filter/source/config/fragments/filters.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-07-31 08:01+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-19 04:39+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533024065.000000\n" +"X-POOTLE-MTIME: 1547872751.000000\n" #: ADO_rowset_XML.xcu msgctxt "" @@ -1130,7 +1130,7 @@ "UIName\n" "value.text" msgid "Unified Office Format presentation" -msgstr "标文通演示文稿" +msgstr "标文通(UOF)演示文稿" #: UOF_spreadsheet.xcu msgctxt "" @@ -1139,7 +1139,7 @@ "UIName\n" "value.text" msgid "Unified Office Format spreadsheet" -msgstr "标文通电子表格" +msgstr "标文通(UOF)电子表格" #: UOF_text.xcu msgctxt "" @@ -1148,7 +1148,7 @@ "UIName\n" "value.text" msgid "Unified Office Format text" -msgstr "标文通文本文档" +msgstr "标文通(UOF)文本文档" #: VisioDocument.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/fpicker/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/fpicker/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/fpicker/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/fpicker/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-07-31 08:02+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2018-12-18 06:45+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533024162.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545115535.000000\n" #: fpicker/inc/strings.hrc:25 msgctxt "STR_EXPLORERFILE_OPEN" @@ -273,7 +273,7 @@ #: include/fpicker/strings.hrc:26 msgctxt "STR_SVT_FILEPICKER_IMAGE_ANCHOR" msgid "A~nchor:" -msgstr "锚定(~N):" +msgstr "锚点(~N):" #: include/fpicker/strings.hrc:27 msgctxt "STR_SVT_FILEPICKER_SELECTION" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/auxiliary.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/auxiliary.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/auxiliary.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-05-21 07:15+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:14+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1526886948.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548267299.000000\n" #: sbasic.tree msgctxt "" @@ -30,7 +30,7 @@ "0701\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般信息及用户界面使用" +msgstr "常规信息及用户界面用法" #: sbasic.tree msgctxt "" @@ -46,7 +46,7 @@ "070202\n" "node.text" msgid "Functions, Statements, and Operators" -msgstr "函数、语句及操作符" +msgstr "函数、语句及运算符" #: sbasic.tree msgctxt "" @@ -62,7 +62,7 @@ "070205\n" "node.text" msgid "Advanced Basic Libraries" -msgstr "" +msgstr "高级 Basic 库" #: sbasic.tree msgctxt "" @@ -86,7 +86,7 @@ "0801\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般信息及用户界面使用" +msgstr "常规信息及用户界面用法" #: scalc.tree msgctxt "" @@ -238,7 +238,7 @@ "0501\n" "node.text" msgid "General Information" -msgstr "一般信息" +msgstr "常规信息" #: shared.tree msgctxt "" @@ -254,7 +254,7 @@ "10\n" "help_section.text" msgid "Common Help Topics" -msgstr "一般性帮助" +msgstr "常见的帮助主题" #: shared.tree msgctxt "" @@ -262,7 +262,7 @@ "1001\n" "node.text" msgid "General Information" -msgstr "一般信息" +msgstr "常规信息" #: shared.tree msgctxt "" @@ -462,7 +462,7 @@ "0901\n" "node.text" msgid "General Information" -msgstr "一般信息" +msgstr "常规信息" #: simpress.tree msgctxt "" @@ -470,7 +470,7 @@ "04\n" "help_section.text" msgid "Presentations and Drawings" -msgstr "演示文稿及绘图" +msgstr "演示文稿与绘图" #: simpress.tree msgctxt "" @@ -478,7 +478,7 @@ "0401\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般信息及用户界面使用" +msgstr "常规信息及用户界面用法" #: simpress.tree msgctxt "" @@ -622,7 +622,7 @@ "0301\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般信息及用户界面使用" +msgstr "常规信息及用户界面用法" #: smath.tree msgctxt "" @@ -654,7 +654,7 @@ "0201\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般信息及用户界面使用" +msgstr "常规信息及用户界面用法" #: swriter.tree msgctxt "" @@ -726,7 +726,7 @@ "0208\n" "node.text" msgid "Tables of Contents and Indexes" -msgstr "内容目录和索引" +msgstr "目录与索引" #: swriter.tree msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sbasic/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sbasic/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-25 13:24+0200\n" -"PO-Revision-Date: 2018-07-31 06:29+0000\n" -"Last-Translator: LiuGuang \n" +"PO-Revision-Date: 2019-01-18 03:44+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533018599.000000\n" +"X-POOTLE-MTIME: 1547783078.000000\n" #: access2base.xhp msgctxt "" @@ -686,7 +686,7 @@ "par_id2224494\n" "help.text" msgid "If the current library already contains a localizable dialog, the Language toolbar is shown automatically." -msgstr "如果当前程序库已经包含可本地化对话框,则自动显示“语言”工具栏。" +msgstr "如果当前程序库含有可本地化对话框,则自动显示「语言」工具栏。" #: translation.xhp msgctxt "" @@ -694,7 +694,7 @@ "par_id7359233\n" "help.text" msgid "Click the Manage Languages iconManage Language icon on the Language toolbar or on the Toolbox bar." -msgstr "单击管理语言图标“管理语言”图标位于“语言”工具栏或“工具箱”栏。" +msgstr "点击「语言」工具栏或「工具箱」栏的「管理语言」图标「管理语言」图标。" #: translation.xhp msgctxt "" @@ -702,7 +702,7 @@ "par_id6549272\n" "help.text" msgid "You see the Manage User Interface Language dialog. The dialog manages languages for the current library. The name of the current library is shown on the title bar." -msgstr "您可以看到“管理用户界面语言”对话框。此对话框为当前程序库管理语言。标题栏显示当前程序库的名称。" +msgstr "您可以看到「管理用户界面语言」对话框。此对话框管理当前程序库的语言。标题栏显示当前程序库的名称。" #: translation.xhp msgctxt "" @@ -710,7 +710,7 @@ "par_id6529740\n" "help.text" msgid "Click Add in the dialog to add a language entry." -msgstr "在对话框中单击“添加”来添加语言条目。" +msgstr "在对话框中单击「添加」可添加语言条目。" #: translation.xhp msgctxt "" @@ -718,7 +718,7 @@ "par_id7811822\n" "help.text" msgid "This step enables all new dialogs to contain localizable string resources." -msgstr "此步骤使得全部新建对话框都包含可本地化的字符串资源。" +msgstr "此步骤使所有新建的对话框都包含可本地化的字符串资源。" #: translation.xhp msgctxt "" @@ -726,7 +726,7 @@ "par_id9121982\n" "help.text" msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language." -msgstr "第一次单击“添加”,您将看到“设置默认用户界面语言”对话框。以后单击“添加”,此对话框已有名称“添加用户界面语言”。" +msgstr "第一次点击「添加」,您将看到「设置默认用户界面语言」对话框。以后点击「添加」,此对话框的名称将变为「添加用户界面语言」。" #: translation.xhp msgctxt "" @@ -734,7 +734,7 @@ "par_id3640247\n" "help.text" msgid "You can also change the default language in the Manage User Interface Language dialog." -msgstr "您也可以在“管理用户界面语言”对话框中更改默认语言。" +msgstr "您也可以在「管理用户界面语言」对话框中更改默认语言。" #: translation.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sbasic/shared.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sbasic/shared.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-05-24 09:54+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:12+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1527155688.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548267148.000000\n" #: 00000002.xhp msgctxt "" @@ -1566,7 +1566,7 @@ "par_id3153708\n" "help.text" msgid "This is where you find general information about working with macros and $[officename] Basic." -msgstr "在此处查找有关使用宏和 $[officename] Basic 的一般信息。" +msgstr "在此处查找有关使用宏和 $[officename] Basic 的常规信息。" #: 01010210.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/00.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-12 14:41+0200\n" -"PO-Revision-Date: 2018-02-09 01:19+0000\n" -"Last-Translator: Playhi <000902play@gmail.com>\n" +"PO-Revision-Date: 2019-01-20 03:42+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1518139150.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547955744.000000\n" #: 00000004.xhp msgctxt "" @@ -854,7 +854,7 @@ "par_id3154123\n" "help.text" msgid "Menu Tools - Language - Hyphenation." -msgstr "" +msgstr "菜单「工具 - 语言 - 断词」。" #: 00000406.xhp msgctxt "" @@ -1198,7 +1198,7 @@ "par_id3156278\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter... ." -msgstr "" +msgstr "选择「数据 - 更多筛选 - 高级筛选...」。" #: 00000412.xhp msgctxt "" @@ -1214,7 +1214,7 @@ "par_id3155444\n" "help.text" msgid "Choose Data - More Filters - Advanced Filter... - Options label." -msgstr "" +msgstr "选择「数据 - 更多筛选 - 高级筛选... - 选项」标签。" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-03-04 11:52+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:12+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520164343.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548267155.000000\n" #: 01120000.xhp msgctxt "" @@ -1782,7 +1782,7 @@ "par_id230820141543194944\n" "help.text" msgid "Nu Value: a positive integer that specifies the number of degrees of freedom." -msgstr "Nu 值:正整数,指定自由度。" +msgstr "Nu 值: 正整数,指定自由度数。" #: 02140700.xhp msgctxt "" @@ -13598,7 +13598,7 @@ "par_id3144659\n" "help.text" msgid "QUOTIENT(Numerator; Denominator)" -msgstr "QUOTIENT(Numerator; Denominator)" +msgstr "QUOTIENT(分子; 分母)" #: 04060106.xhp msgctxt "" @@ -13606,7 +13606,7 @@ "par_id9038972\n" "help.text" msgid "Returns the integer part of Numerator divided by Denominator." -msgstr "返回 Denominator 除以 Numerator 的整数部分。" +msgstr "返回分子 除以 分母 后的整数部分。" #: 04060106.xhp msgctxt "" @@ -13614,7 +13614,7 @@ "par_id7985168\n" "help.text" msgid "QUOTIENT is equivalent to INT(numerator/denominator) for same-sign numerator and denominator, except that it may report errors with different error codes. More generally, it is equivalent to INT(numerator/denominator/SIGN(numerator/denominator))*SIGN(numerator/denominator)." -msgstr "" +msgstr "对符号相同的分子与分母而言,QUOTIENT 与 INT(分子/分母) 相同,唯一的区别是报告错误的错误代码不同。更一般来说,它与 INT(分子/分母/SIGN(分子/分母))*SIGN(分子/分母) 等效。" #: 04060106.xhp msgctxt "" @@ -15718,7 +15718,7 @@ "par_id3164758\n" "help.text" msgid "RANDBETWEEN(Bottom; Top)" -msgstr "RANDBETWEEN(Bottom; Top)" +msgstr "RANDBETWEEN(下限; 上限)" #: 04060106.xhp msgctxt "" @@ -15726,7 +15726,7 @@ "par_id7112338\n" "help.text" msgid "Returns an integer random number between integers Bottom and Top (both inclusive)." -msgstr "返回一个介于 BottomTop(全部包含)之间的随机整数。" +msgstr "返回一个介于 下限上限(均包含)之间的随机整数。" #: 04060106.xhp msgctxt "" @@ -25070,7 +25070,7 @@ "hd_id3145077\n" "help.text" msgid "General information about the interface" -msgstr "有关界面的一般信息" +msgstr "有关界面的常规信息" #: 04060112.xhp msgctxt "" @@ -28382,7 +28382,7 @@ "par_id3146942\n" "help.text" msgid "IMDIV(\"Numerator\"; \"Denominator\")" -msgstr "IMDIV(\"Numerator\"; \"Denominator\")" +msgstr "IMDIV(\"分子\"; \"分母\")" #: 04060116.xhp msgctxt "" @@ -28390,7 +28390,7 @@ "par_id3150741\n" "help.text" msgid "Numerator, Denominator are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"." -msgstr "Numerator, Denominator 是以 \"x+yi\" 或 \"x+yj\" 形式输入的复数。" +msgstr "分子分母 是以「x+yi」或「x+yj」形式输入的复数。" #: 04060116.xhp msgctxt "" @@ -33838,7 +33838,7 @@ "par_id3153672\n" "help.text" msgid "Fraction is a whole number that is used as the denominator of the decimal fraction." -msgstr "Fraction 用作分数分母的整数。" +msgstr "Fraction 是十进制分数分母部分的整数。" #: 04060119.xhp msgctxt "" @@ -33918,7 +33918,7 @@ "par_id3153695\n" "help.text" msgid "Fraction is a whole number that is used as the denominator of the decimal fraction." -msgstr "Fraction 用作分数分母的整数。" +msgstr "Fraction 是十进制分数分母部分的整数。" #: 04060119.xhp msgctxt "" @@ -37750,7 +37750,7 @@ "par_id3153914\n" "help.text" msgid "DegreesFreedom1 is the number of degrees of freedom in the numerator of the F distribution." -msgstr "DegreesFreedom1 是 F 分布的分母自由度。" +msgstr "DegreesFreedom1 是 F 分布的分子自由度数。" #: 04060182.xhp msgctxt "" @@ -37758,7 +37758,7 @@ "par_id3148607\n" "help.text" msgid "DegreesFreedom2 is the number of degrees of freedom in the denominator of the F distribution." -msgstr "DegreesFreedom2 是 F 分布的分母自由度。" +msgstr "DegreesFreedom2 是 F 分布的分母自由度数。" #: 04060182.xhp msgctxt "" @@ -37830,7 +37830,7 @@ "par_id2953914\n" "help.text" msgid "DegreesFreedom1 is the number of degrees of freedom in the numerator of the F distribution." -msgstr "DegreesFreedom1 是 F 分布的分母自由度。" +msgstr "DegreesFreedom1 是 F 分布的分子自由度数。" #: 04060182.xhp msgctxt "" @@ -37838,7 +37838,7 @@ "par_id2948607\n" "help.text" msgid "DegreesFreedom2 is the number of degrees of freedom in the denominator of the F distribution." -msgstr "DegreesFreedom2 是 F 分布的分母自由度。" +msgstr "DegreesFreedom2 是 F 分布的分母自由度数。" #: 04060182.xhp msgctxt "" @@ -37910,7 +37910,7 @@ "par_id2853914\n" "help.text" msgid "DegreesFreedom1 is the number of degrees of freedom in the numerator of the F distribution." -msgstr "DegreesFreedom1 是 F 分布的分母自由度。" +msgstr "DegreesFreedom1 是 F 分布的分子自由度数。" #: 04060182.xhp msgctxt "" @@ -37918,7 +37918,7 @@ "par_id2848607\n" "help.text" msgid "DegreesFreedom2 is the number of degrees of freedom in the denominator of the F distribution." -msgstr "DegreesFreedom2 是 F 分布的分母自由度。" +msgstr "DegreesFreedom2 是 F 分布的分母自由度数。" #: 04060182.xhp msgctxt "" @@ -44718,7 +44718,7 @@ "par_id3155315\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -44790,7 +44790,7 @@ "par_id2955315\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -44862,7 +44862,7 @@ "par_id2855315\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -45110,7 +45110,7 @@ "par_id3148824\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -45190,7 +45190,7 @@ "par_id2948824\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -45270,7 +45270,7 @@ "par_id2848824\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -45342,7 +45342,7 @@ "par_id2748824\n" "help.text" msgid "DegreesFreedom is the number of degrees of freedom for the t-distribution." -msgstr "DegreesFreedom 为 t 分布的自由度。" +msgstr "DegreesFreedom 为 t 分布的自由度数。" #: 04060185.xhp msgctxt "" @@ -50046,7 +50046,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 06020000.xhp msgctxt "" @@ -50054,7 +50054,7 @@ "bm_id3159399\n" "help.text" msgid "automatic hyphenation in spreadsheetshyphenation; in spreadsheetssyllables in spreadsheets" -msgstr "电子表格中的自动连字符连字符; 在电子表格中电子表格中的音节" +msgstr "电子表格中的自动断词断词; 在电子表格中电子表格中的音节" #: 06020000.xhp msgctxt "" @@ -50062,7 +50062,7 @@ "hd_id3159399\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 06020000.xhp msgctxt "" @@ -50070,7 +50070,7 @@ "par_id3145068\n" "help.text" msgid "The Hyphenation command calls the dialog for setting the hyphenation in $[officename] Calc." -msgstr "连字符命令可以打开一个对话框,用于设置 $[officename] Calc 中的连字符。" +msgstr "断词」命令可以打开一个对话框,用于设置 $[officename] Calc 中的断词。" #: 06020000.xhp msgctxt "" @@ -50078,7 +50078,7 @@ "par_id3154366\n" "help.text" msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the row break feature is active." -msgstr "只有使用了换行功能,才能打开 $[officename] Calc 中的自动连字符。" +msgstr "只有使用了换行功能,才能打开 $[officename] Calc 中的自动断词。" #: 06020000.xhp msgctxt "" @@ -50086,7 +50086,7 @@ "hd_id3153192\n" "help.text" msgid "Hyphenation for selected cells." -msgstr "选定单元格的连字符" +msgstr "选定单元格的断词。" #: 06020000.xhp msgctxt "" @@ -50094,7 +50094,7 @@ "par_id3150868\n" "help.text" msgid "Select the cells for which you want to change the hyphenation." -msgstr "选定要修改连字符的单元格。" +msgstr "选定要更改断词的单元格。" #: 06020000.xhp msgctxt "" @@ -50102,7 +50102,7 @@ "par_id3150440\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "选择工具 - 语言 - 连字符。" +msgstr "选择「工具 - 语言 - 断词」。" #: 06020000.xhp msgctxt "" @@ -50118,7 +50118,7 @@ "par_id3149260\n" "help.text" msgid "Mark the Wrap text automatically and Hyphenation active check boxes." -msgstr "选中自动换行启用连字符复选框。" +msgstr "选中「自动换行」和「启用断词」复选框。" #: 06020000.xhp msgctxt "" @@ -50126,7 +50126,7 @@ "hd_id3153094\n" "help.text" msgid "Hyphenation for Drawing Objects" -msgstr "绘图对象的连字符" +msgstr "绘图对象的断词" #: 06020000.xhp msgctxt "" @@ -50142,7 +50142,7 @@ "par_id3156285\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "选择工具 - 语言 - 连字符。" +msgstr "选择「工具 - 语言 - 断词」。" #: 06020000.xhp msgctxt "" @@ -50150,7 +50150,7 @@ "par_id3147394\n" "help.text" msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status." -msgstr "每次调用该命令时,便对绘图对象打开或关闭连字符。在该条命令旁以打钩表示当前状况。" +msgstr "每次调用该命令时,会对绘图对象打开或关闭断词。勾标记显示当前状态。" #: 06030000.xhp msgctxt "" @@ -50718,7 +50718,7 @@ "hd_id3153954\n" "help.text" msgid "Comment" -msgstr "标注" +msgstr "批注" #: 06050000.xhp msgctxt "" @@ -59542,7 +59542,7 @@ "par_id16083887218317\n" "help.text" msgid "=IF(ISERROR(A1/A2);IF(ERROR.TYPE(A1/A2)=2;\"the denominator can't be equal to zero\");A1/A2)" -msgstr "" +msgstr "=IF(ISERROR(A1/A2);IF(ERROR.TYPE(A1/A2)=2;\"分母不能为零\");A1/A2)" #: func_error_type.xhp msgctxt "" @@ -59550,7 +59550,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 "" +msgstr "ISERROR 根据是否出错来返回 TRUE 或 FALSE。如果发生错误,函数 IF 将执行第二个参数,而如果没有错误,IF 将返回第三个参数,即除法的结果。第二个参数检查特定错误类型的索引号,如果等于 2,则返回指定文字内容「分母不能为零」,否则返回 0。因此,如果除数为零,则显示明确的说明文字,如果除法成功执行,则出现除法的结果,或者,假如出现其他类型的错误,则返回 0。" #: func_error_type.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/05.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/05.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/05.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-10-04 11:48+0200\n" -"PO-Revision-Date: 2018-02-03 13:58+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2018-12-19 07:52+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1517666339.000000\n" +"X-POOTLE-MTIME: 1545205962.000000\n" #: 02140000.xhp msgctxt "" @@ -694,7 +694,7 @@ "par_id5844294\n" "help.text" msgid "Division operator / if the denominator is 0
Some more functions return this error, for example:
VARP with less than 1 argument
STDEVP with less than 1 argument
VAR with less than 2 arguments
STDEV with less than 2 arguments
STANDARDIZE with stdev=0
NORMDIST with stdev=0" -msgstr "除法运算符 / 如果分母是 0
一些函数返回错误,例如:
VARP 参数的数目小于 1
STDEVP 参数的数目小于 1
VAR 参数的数目小于 2
STDEV 参数的数目小于 2
STANDARDIZE 中 stdev=0
NORMDIST 中 stdev=0" +msgstr "除法运算符 / 如果分母是 0
其他函数也会返回此错误,例如:
VARP 参数的数目小于 1
STDEVP 参数的数目小于 1
VAR 参数的数目小于 2
STDEV 参数的数目小于 2
STANDARDIZE 中 stdev=0
NORMDIST 中 stdev=0" #: OpenCL_options.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/06.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/06.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc/06.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc/06.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-06-14 17:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2018-12-17 22:43+0000\n" +"Last-Translator: Dian LI \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545086598.000000\n" #: calcsamplefiles.xhp msgctxt "" @@ -27,7 +30,7 @@ "par_id161521663319917\n" "help.text" msgid "" -msgstr "" +msgstr "" #: calcsamplefiles.xhp msgctxt "" @@ -35,7 +38,7 @@ "par_id161521663319918\n" "help.text" msgid "" -msgstr "" +msgstr "" #: calcsamplefiles.xhp msgctxt "" @@ -43,7 +46,7 @@ "par_id161521563314918\n" "help.text" msgid "" -msgstr "" +msgstr "" #: calcsamplefiles.xhp msgctxt "" @@ -51,4 +54,4 @@ "par_id721528312694192\n" "help.text" msgid "" -msgstr "" +msgstr "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/scalc.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/scalc.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n" -"PO-Revision-Date: 2018-02-02 13:25+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-17 19:13+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1517577940.000000\n" +"X-POOTLE-MTIME: 1547752432.000000\n" #: main0000.xhp msgctxt "" @@ -798,7 +798,7 @@ "hd_id3152986\n" "help.text" msgid "Align Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: main0202.xhp msgctxt "" @@ -814,7 +814,7 @@ "hd_id3151240\n" "help.text" msgid "Align Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: main0202.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/schart/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-02-22 23:48+0000\n" -"Last-Translator: sunyf \n" +"PO-Revision-Date: 2019-01-18 06:41+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1519343302.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547793698.000000\n" #: 03010000.xhp msgctxt "" @@ -2918,7 +2918,7 @@ "par_id3155089\n" "help.text" msgid "Determines the text flow of the data label." -msgstr "确定数据标签的文字流。" +msgstr "决定数据标签的文字流方向。" #: 05020201.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/schart.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/schart.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/schart.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-08 15:10+0200\n" -"PO-Revision-Date: 2018-03-03 15:55+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 08:05+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520092528.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547798713.000000\n" #: main0000.xhp msgctxt "" @@ -46,7 +46,7 @@ "par_id3154685\n" "help.text" msgid "$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations." -msgstr "" +msgstr "$[officename] 能够以图表的形式显示数据,以便直观的比较数据序列和查看数据趋势。您可以将图表插入到电子表格、文本文档、绘图和演示文稿中。" #: main0000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/sdraw/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/sdraw/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2016-07-05 09:48+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2019-01-18 08:19+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1467712097.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547799556.000000\n" #: align_arrange.xhp msgctxt "" @@ -262,7 +262,7 @@ "bm_id3149263\n" "help.text" msgid "colors; defining user-defined colors custom colors" -msgstr "" +msgstr "颜色; 定义 用户定义颜色 自定义颜色" #: color_define.xhp msgctxt "" @@ -278,7 +278,7 @@ "par_id3154511\n" "help.text" msgid "Define custom colors and add them to the Custom color palette." -msgstr "" +msgstr "定义自定义颜色,并将其添加到「自定义」调色板。" #: color_define.xhp msgctxt "" @@ -294,7 +294,7 @@ "par_id3150327\n" "help.text" msgid "Choose Format - Area, click the Area tab and press the Color button. A table of the predefined palette colors is displayed." -msgstr "" +msgstr "选择「格式 - 区域」,点击「区域」选项卡,并按「颜色」按钮。将显示预定义调色板颜色的表格。" #: color_define.xhp msgctxt "" @@ -302,7 +302,7 @@ "par_id3154657\n" "help.text" msgid "Custom colors are saved in the Custom color palette." -msgstr "" +msgstr "自定义颜色保存在「自定义」调色板中。" #: color_define.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_id3166425\n" "help.text" msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the Colors area on the left or the Recent colors in the list below the color table. The color appears in the New preview box to the right of the dialog." -msgstr "" +msgstr "从表格中找到与希望定义的颜色相似的颜色,点击它。然后在左侧「颜色」区域或颜色表格下方「最近颜色」中选择相似的颜色。颜色会出现在对话框右侧的「」预览框中。" #: color_define.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id41522705652544\n" "help.text" msgid "Click the Pick button to open the Pick a Color dialog." -msgstr "" +msgstr "点击「提取」按钮可打开「提取颜色」对话框。" #: color_define.xhp msgctxt "" @@ -326,7 +326,7 @@ "par_id4979705\n" "help.text" msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The RGB values of the selected color are displayed below the preview boxes." -msgstr "" +msgstr "%PRODUCTNAME 彩色打印只使用 RGB 颜色模型。选中颜色的 RGB 值显示在预览框下方。" #: color_define.xhp msgctxt "" @@ -334,7 +334,7 @@ "par_id691522706451849\n" "help.text" msgid "Press the Add button to add the custom color to the Custom color palette. A dialog box asking to enter a color name appears. Enter a unique name for the new color within all color names existing in the Custom color palette." -msgstr "" +msgstr "按「添加」按钮可将自定义颜色添加到「自定义」调色板。会出现要求输入颜色名称的对话框。请为新颜色输入名称,名称在「自定义」调色板范围内应唯一。" #: color_define.xhp msgctxt "" @@ -342,7 +342,7 @@ "par_id701522707038880\n" "help.text" msgid "To remove a color from the Custom color palette, select the Custom color palette in the Colors area, select the color to be deleted and click Delete." -msgstr "" +msgstr "要从「自定义」调色板删除颜色,请在「颜色」区域选择「自定义」调色板,然后选择需要删除的颜色,并点击「删除」。" #: color_define.xhp msgctxt "" @@ -350,7 +350,7 @@ "par_id661522713547390\n" "help.text" msgid "Color dialog." -msgstr "" +msgstr "颜色对话框。" #: color_define.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-03-03 13:51+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2018-12-19 03:27+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520085069.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545190076.000000\n" #: 00000001.xhp msgctxt "" @@ -2070,7 +2070,7 @@ "bm_id3151282\n" "help.text" msgid "kerning; definition" -msgstr "字母间隔; 定义" +msgstr "字距微调; 定义" #: 00000005.xhp msgctxt "" @@ -2078,7 +2078,7 @@ "hd_id3151282\n" "help.text" msgid "Kerning" -msgstr "字母间隔相等" +msgstr "字距微调" #: 00000005.xhp msgctxt "" @@ -2086,7 +2086,7 @@ "par_id3146321\n" "help.text" msgid "Kerning means increasing or decreasing the amount of space between pairs of letters to improve the overall appearance of the text." -msgstr "字母间隔相等是用于字距调整的英文名称。对此可理解为缩小或扩大两个字母或字符之间的间距(例如 W 和 a 之间),来取得对字体图像一种视觉上的均衡协调。" +msgstr "字距微调指通过增加或减少两字之间的空隙,来改善文字的整体外观。" #: 00000005.xhp msgctxt "" @@ -2094,7 +2094,7 @@ "par_id3146078\n" "help.text" msgid "The kerning tables contain information on which pairs of letters require more spacing. These tables are generally a component of a font." -msgstr "字母间隔相等表含有需要加大哪些字母间隔的信息。这些表格通常是字体的一个组件。" +msgstr "字距微调表收录哪些字母组合之间需要更多空间。这些表格通常是字体的一部分。" #: 00000005.xhp msgctxt "" @@ -2390,7 +2390,7 @@ "par_id3151186\n" "help.text" msgid "Rich Text Format (RTF) is a file format developed for the exchange of text files. A special feature is that the formatting is converted into directly readable text information. Unfortunately, in comparison to other file formats, this creates relatively large files." -msgstr "多文本格式 (RTF) 是一种用于文本文件交换的文件格式。其特殊性在于文件格式已转换为可直接读取的文字信息。但与其他文件格式相比,采用这种格式的文件相对较大。" +msgstr "富文本格式 (RTF) 是一种用于文本文件交换的文件格式。其特殊性在于排版可转换为可直接阅读的文字信息。但与其他文件格式相比,采用这种格式的文件相对较大。" #: 00000005.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-03-03 13:32+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-24 07:35+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520083926.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548315358.000000\n" #: 01010000.xhp msgctxt "" @@ -4006,7 +4006,7 @@ "par_id0818200912284853\n" "help.text" msgid "The Print dialog consists of three main parts: A preview with navigation buttons, several tab pages with control elements specific to the current document type, and the Print, Cancel, and Help buttons." -msgstr "“打印”对话框由三个主要的部分构成:一个带有导航按钮的预览、若干个带有特定于当前文件类型的控件元素的标签页,以及“打印”“取消”和“帮助”按钮。" +msgstr "「打印」对话框由三个主要部分构成:一个带有导航按钮的预览、若干个带有特定于当前文件类型的控件元素的选项卡,以及「打印」「取消」和「帮助」按钮。" #: 01130000.xhp msgctxt "" @@ -6734,7 +6734,7 @@ "par_id8641315\n" "help.text" msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics." -msgstr "查找指定的文字格式特征,例如字体类型、字体效果和文字方向等。" +msgstr "查找指定的文字格式特征,例如字体类型、字体效果和文字流特征等。" #: 02100000.xhp msgctxt "" @@ -8014,7 +8014,7 @@ "hd_id3149560\n" "help.text" msgid "Kerning" -msgstr "字母间隔相等" +msgstr "字距微调" #: 02100200.xhp msgctxt "" @@ -8022,7 +8022,7 @@ "par_id3155132\n" "help.text" msgid "Finds Spacing (standard, expanded, condensed) attributes and Pair Kerning." -msgstr "查找间距(标准、拉伸、压缩)属性和字符对间距。" +msgstr "查找「间距」(标准、扩张、收缩) 属性以及「字偶距微调」(Pair Kerning)。" #: 02100200.xhp msgctxt "" @@ -8238,7 +8238,7 @@ "hd_id3147124\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 02100200.xhp msgctxt "" @@ -8246,7 +8246,7 @@ "par_id3153877\n" "help.text" msgid "Finds the Hyphenation attribute." -msgstr "查找连字符属性。" +msgstr "查找「断词」属性。" #: 02100200.xhp msgctxt "" @@ -8398,7 +8398,7 @@ "par_id3150355\n" "help.text" msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics." -msgstr "" +msgstr "查找指定的文字格式特征,例如字体类型、字体效果和文字流特征等。" #: 02100300.xhp msgctxt "" @@ -11422,7 +11422,7 @@ "tit\n" "help.text" msgid "Bibliography Database" -msgstr "文献目录数据库" +msgstr "参考文献数据库" #: 02250000.xhp msgctxt "" @@ -11542,7 +11542,7 @@ "par_id3156423\n" "help.text" msgid "Enter a short name for the record. The short name appears in the Identifier column in the list of records." -msgstr "为记录输入缩写名称。缩写名称显示在记录列表的标识符列中。" +msgstr "为记录输入简短名称。简短名称会显示在记录列表的「标识符」列。" #: 02250000.xhp msgctxt "" @@ -11678,7 +11678,7 @@ "par_id3151282\n" "help.text" msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record Object Bar." -msgstr "用于将列标题映射到其他数据源中的数据字段。要为文献目录定义其他数据源,请单击记录对象栏上的数据源按钮。" +msgstr "用于将列标题映射到其他数据源中的数据字段。要为参考文献定义不同的数据源,请单击记录「对象」栏上的「数据源」按钮。" #: 02250000.xhp msgctxt "" @@ -11686,7 +11686,7 @@ "par_id3144767\n" "help.text" msgid "Select the data field that you want to map to the current Column name. To change the available data fields, select a different data source for your bibliography." -msgstr "选择要映射到当前列名称的数据字段。要修改可用的数据字段,请为文献目录选择其他数据源。" +msgstr "选择要映射到当前「列名称」的数据字段。要修改可用的数据字段,请为参考文献选择其他数据源。" #: 02250000.xhp msgctxt "" @@ -11702,7 +11702,7 @@ "par_id3151019\n" "help.text" msgid "Lets you choose a different data source for your bibliography." -msgstr "您可以为文献目录选择不同的数据源。" +msgstr "您可以为参考文献选择不同的数据源。" #: 02250000.xhp msgctxt "" @@ -14006,7 +14006,7 @@ "hd_id3153971\n" "help.text" msgid "Denominator places" -msgstr "" +msgstr "分母位数" #: 05020300.xhp msgctxt "" @@ -14014,7 +14014,7 @@ "par_id3154685\n" "help.text" msgid "With fraction format, enter the number of places for the denominator that you want to display." -msgstr "" +msgstr "分数格式下,要显示的分母位数。" #: 05020300.xhp msgctxt "" @@ -14254,7 +14254,7 @@ "par_id3153323\n" "help.text" msgid "Use question marks (?), zeroes (0) or number signs (#) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers." -msgstr "" +msgstr "使用问号 (?) 、零(0)或数字符号(#)表示分数的分子和分母中的数位个数。与定义规则不匹配的分数将显示为浮点数。" #: 05020301.xhp msgctxt "" @@ -14646,7 +14646,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 "数值以分数形式表示时,其格式由两或三部分组成: 可选的整数部分、分子与分母。整数与分子由空格或任意文字隔开。分子与分母由斜线符号隔开。每个部分的占位符可以混用 #、? 与 0。" #: 05020301.xhp msgctxt "" @@ -14654,7 +14654,7 @@ "par_id3146925\n" "help.text" msgid "Denominator is calculated to get the nearest value of the fraction with respect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:" -msgstr "" +msgstr "在尊重占位符数目的情况下,计算出最接近数值的分数。例如 pi 值以下面的格式会显示为 3 16/113:" #: 05020301.xhp msgctxt "" @@ -14662,7 +14662,7 @@ "par_id3146927\n" "help.text" msgid "Denominator value can also be forced to the value replacing placeholders. For example, to get PI value as a multiple of 1/16th (i.e. 50/16), use format:" -msgstr "" +msgstr "分母数值也可以强制指定,代替占位符。例如,pi 的数值可以表示为 1/16 的倍数(即 50/16),格式如下:" #: 05020301.xhp msgctxt "" @@ -17750,7 +17750,7 @@ "bm_id3154841\n" "help.text" msgid "positioning; fontsformats; positionseffects;font positionsfonts; positions in textspacing; font effectscharacters; spacingpair kerningkerning; in characterstext; kerning" -msgstr "定位; 字体格式; 位置效果; 字体位置字体; 文本中的位置间隔; 字体效果字符; 间隔字母间隔相等字母间隔; 在字符中文本; 字母间隔" +msgstr "定位; 字体格式; 位置效果; 字体位置字体; 文本中的位置间距; 字体效果字符; 间距字偶距微调字距微调; 字符文本; 字距微调" #: 05020500.xhp msgctxt "" @@ -18022,7 +18022,7 @@ "hd_id3154127\n" "help.text" msgid "Pair kerning" -msgstr "字母间隔相等" +msgstr "字距微调" #: 05020500.xhp msgctxt "" @@ -18030,7 +18030,7 @@ "par_id3148616\n" "help.text" msgid "Automatically adjust the character spacing for specific letter combinations." -msgstr "自动调整指定字母组合的字符间距。" +msgstr "自动调整特定字母组合的字符间距。" #: 05020500.xhp msgctxt "" @@ -18038,7 +18038,7 @@ "par_id3150010\n" "help.text" msgid "Kerning is only available for certain font types and requires that your printer support this option." -msgstr "“字母间隔相等”仅适用于某些字体类型,而且需要打印机的支持。" +msgstr "字距微调仅适用于特定类型的字体,且需要打印机支持该选项。" #: 05020600.xhp msgctxt "" @@ -20326,7 +20326,7 @@ "par_id3154380\n" "help.text" msgid "Select the text direction that you want to use in your document. The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer." -msgstr "选择文档中要使用的文本方向。“从右向左(竖写)”文本方向将除了页眉和页脚之外的所有版式设置向右旋转了 90 度。" +msgstr "选择文档中要使用的文本方向。「从右向左(竖排)」文字流方向将除页眉和页脚之外的所有版式设置向右旋转了 90 度。" #: 05040200.xhp msgctxt "" @@ -21814,7 +21814,7 @@ "tit\n" "help.text" msgid "Align Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: 05070600.xhp msgctxt "" @@ -21822,7 +21822,7 @@ "hd_id3153383\n" "help.text" msgid "Align Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: 05070600.xhp msgctxt "" @@ -22238,7 +22238,7 @@ "hd_id3154765\n" "help.text" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: 05100500.xhp msgctxt "" @@ -22254,7 +22254,7 @@ "par_id3145671\n" "help.text" msgid "In the context menu of a cell, choose Cell - Top" -msgstr "在单元格的上下文菜单中,选择单元格 - 顶端对齐" +msgstr "在单元格的上下文菜单中,选择单元格 - 向上对齐" #: 05100600.xhp msgctxt "" @@ -22302,7 +22302,7 @@ "hd_id3150249\n" "help.text" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: 05100700.xhp msgctxt "" @@ -22318,7 +22318,7 @@ "par_id3149201\n" "help.text" msgid "In the context menu of a cell, choose Cell - Bottom" -msgstr "在单元格的上下文菜单中,选择单元格 - 底端对齐" +msgstr "在单元格的上下文菜单中,选择单元格 - 向下对齐" #: 05110000.xhp msgctxt "" @@ -22990,7 +22990,7 @@ "par_id1283608\n" "help.text" msgid "Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text." -msgstr "输入标题文本。此简称在 HTML 格式中显示为替代标记。辅助工具可以读取此文本。" +msgstr "输入标题文本。此简称在 HTML 格式中显示为替代标签。辅助工具可以阅读此文本。" #: 05190100.xhp msgctxt "" @@ -24806,7 +24806,7 @@ "par_id3153577\n" "help.text" msgid "Adapts the text flow so that it matches the contours of the selected drawing object." -msgstr "调整文本方向,使其与选定绘图对象的轮廓相匹配。" +msgstr "调整文字流,使其与选定绘图对象的轮廓相匹配。" #: 05220000.xhp msgctxt "" @@ -26414,7 +26414,7 @@ "par_id3154985\n" "help.text" msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text." -msgstr "将文字排列方向反向,然后在水平或垂直向上翻转文字。要使用此命令,首先必须对文字采用不同的基线。" +msgstr "将文字流方向反向,然后在水平或垂直向上翻转文字。要使用此命令,首先必须对文字采用不同的基线。" #: 05280000.xhp msgctxt "" @@ -27942,7 +27942,7 @@ "par_id3146120\n" "help.text" msgid "Determine the text flow in a cell." -msgstr "决定单元格中的文字流方向。" +msgstr "决定单元格中文字流的方向。" #: 05340300.xhp msgctxt "" @@ -27966,7 +27966,7 @@ "hd_id3147380\n" "help.text" msgid "Hyphenation active" -msgstr "使用连字符" +msgstr "断词已启用" #: 05340300.xhp msgctxt "" @@ -27974,7 +27974,7 @@ "par_id3148458\n" "help.text" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "" +msgstr "为自动换行启用断词。" #: 05340300.xhp msgctxt "" @@ -30494,7 +30494,7 @@ "par_id1507309\n" "help.text" msgid "Opens a submenu. Choose a language for the selected text.
Choose None to exclude the selected text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "打开子菜单。为选定的文本选择语言。
选择“无”从拼写检查和连字符中排除选定的文本。
选择“更多”打开一个带有更多选项的对话框。
" +msgstr "打开子菜单。为选中的文本选择语言。
选择「无」可从拼写检查和断词中排除选中的文本。
选择「更多」可打开含更多选项的对话框。
" #: 06010500.xhp msgctxt "" @@ -30510,7 +30510,7 @@ "par_id3928952\n" "help.text" msgid "Opens a submenu. Choose a language for the current paragraph.
Choose None to exclude the current paragraph from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "打开子菜单。为当前段落选择语言。
选择 \"无\" 从拼写检查和连字符中排除当前段落。
选择 \"更多\" 打开一个带有更多选项的对话框。
" +msgstr "打开子菜单。为当前段落选择语言。
选择「无」可从拼写检查和断词中排除当前段落。
选择「更多」可打开含更多选项的对话框。
" #: 06010500.xhp msgctxt "" @@ -30526,7 +30526,7 @@ "par_id5735953\n" "help.text" msgid "Opens a submenu. Choose a language for all text.
Choose None to exclude all text from spellchecking and hyphenation.
Choose More to open a dialog with more options.
" -msgstr "打开子菜单。为所有文本选择语言。
选择 \"无\" 从拼写检查和连字符中排除所有文本。
选择 \"更多\" 打开一个带有更多选项的对话框。
" +msgstr "打开子菜单。为所有文本选择语言。
选择「无」可从拼写检查和断词中排除所有文本。
选择「更多」可打开含更多选项的对话框。
" #: 06010500.xhp msgctxt "" @@ -30534,7 +30534,7 @@ "par_idN105AF\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 06010500.xhp msgctxt "" @@ -30550,7 +30550,7 @@ "par_idN105D0\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 06010500.xhp msgctxt "" @@ -30558,7 +30558,7 @@ "par_idN105D4\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "打开或关闭连字符。" +msgstr "打开或关闭断词。" #: 06010500.xhp msgctxt "" @@ -30566,7 +30566,7 @@ "par_idN105E7\n" "help.text" msgid "Hyphenation" -msgstr "连字符" +msgstr "断词" #: 06010500.xhp msgctxt "" @@ -30574,7 +30574,7 @@ "par_idN105EB\n" "help.text" msgid "Turns hyphenation on and off." -msgstr "打开或关闭连字符。" +msgstr "打开或关闭断词。" #: 06010500.xhp msgctxt "" @@ -36134,7 +36134,7 @@ "par_idN1061A\n" "help.text" msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro." -msgstr "" +msgstr "大列表框列出事件及指定的宏。在「保存于」列表框中选择位置之后,在大列表框中选择事件。然后单击「指定宏」。" #: 06140500.xhp msgctxt "" @@ -36526,7 +36526,7 @@ "par_id3149038\n" "help.text" msgid "Enter or edit general information for an XML filter." -msgstr "输入或编辑 XML 过滤器的一般信息。" +msgstr "输入或编辑「XML 过滤器」的常规信息。" #: 06150110.xhp msgctxt "" @@ -41198,7 +41198,7 @@ "hd_id080420080355360\n" "help.text" msgid "Hybrid PDF (embed ODF file)" -msgstr "" +msgstr "混合式 PDF(内嵌 ODF 文件)" #: ref_pdf_export.xhp msgctxt "" @@ -41214,7 +41214,7 @@ "hd_id2796411\n" "help.text" msgid "Archive PDF/A-1a (ISO 19005-1)" -msgstr "" +msgstr "存档 PDF/A-1a (ISO 19005-1)" #: ref_pdf_export.xhp msgctxt "" @@ -41246,7 +41246,7 @@ "par_idN107B3\n" "help.text" msgid "Tagged PDF contains information about the structure of the document contents. This can help to display the document on devices with different screens, and when using screen reader software." -msgstr "带标签的 PDF 包含文档内容的结构信息。其有助于在不同屏幕的设备上,以及使用屏幕阅读软件时显示文档。" +msgstr "带标签的 PDF 包含关于文档内容结构的信息。其有助于在不同屏幕的设备上,以及使用屏幕阅读软件时显示文档。" #: ref_pdf_export.xhp msgctxt "" @@ -41374,7 +41374,7 @@ "hd_id3946959\n" "help.text" msgid "Use reference XObjects" -msgstr "" +msgstr "使用引用 XObject" #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/02.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/02.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-08 15:10+0200\n" -"PO-Revision-Date: 2016-05-25 06:28+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2019-01-21 08:12+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1464157722.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548058341.000000\n" #: 01110000.xhp msgctxt "" @@ -510,7 +510,7 @@ "hd_id3149735\n" "help.text" msgid "Vertical Callouts" -msgstr "垂直标注" +msgstr "竖排标注" #: 01140000.xhp msgctxt "" @@ -7646,7 +7646,7 @@ "par_id3149657\n" "help.text" msgid "If you have selected either \"Table\" or \"Query\" in Content type, the box lists all the tables and queries set up in the selected database." -msgstr "如果在内容类型中选择了“表格”或“查询”,则该框中会列出在选定数据库中设置的所有表格和查询。" +msgstr "如果在「内容类型」中选择了「表格」或「查询」,则该框中会列出选定数据库中设置的所有表格与查询。" #: 01170203.xhp msgctxt "" @@ -14822,7 +14822,7 @@ "par_id3152594\n" "help.text" msgid "If you split the page into columns, or the cursor is placed in a multiple-column text frame, you can change the column width and the column spacing by dragging them on the ruler with the mouse." -msgstr "如果页面已分列,或者光标位于多栏的文本框中,您可以使用鼠标在标尺上拖动栏宽和栏间隔,以修改栏宽和栏间隔。" +msgstr "如果页面已分栏,或者光标位于多栏的文本框中,您可以使用鼠标在标尺上拖动栏宽和栏间隔,以修改栏宽和栏间隔。" #: 13020000.xhp msgctxt "" @@ -16182,7 +16182,7 @@ "hd_id3153370\n" "help.text" msgid "Threshold Value" -msgstr "阀值" +msgstr "阈值" #: 24010000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/explorer/database.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2017-01-01 13:37+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:12+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1483277840.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548267167.000000\n" #: 02000000.xhp msgctxt "" @@ -2878,7 +2878,7 @@ "bm_id3156136\n" "help.text" msgid "forms; general information (Base)" -msgstr "窗体; 一般信息 (Base)" +msgstr "窗体; 常规信息 (Base)" #: 04000000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2018-02-25 02:06+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-24 12:13+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1519524404.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548332009.000000\n" #: aaa_start.xhp msgctxt "" @@ -1150,7 +1150,7 @@ "bm_id6305734\n" "help.text" msgid "line breaks; in cells cells; line breaks text flow; in cells text breaks in cells wrapping text; in cells words; wrapping in cells automatic line breaks new lines in cells inserting;line breaks in cells tables;inserting line breaks" -msgstr "换行符; 在单元格中 单元格; 换行符 文本流; 在单元格中 单元格中的文本换行符 环绕文本; 在单元格中 文字; 单元格中的文字环绕 自动换行符 单元格中的新行 插入;单元格中的换行符 表格;插入换行符" +msgstr "换行符; 在单元格中 单元格; 换行符 文字流; 在单元格中 单元格中的文本换行符 环绕文本; 在单元格中 文字; 单元格中的文字环绕 自动换行符 单元格中的新行 插入;单元格中的换行符 表格;插入换行符" #: breaking_lines.xhp msgctxt "" @@ -3342,7 +3342,7 @@ "par_id3155420\n" "help.text" msgid "If you select the text flow from right to left, embedded Western text still runs from left to right. The cursor responds to the arrow keys in that Right Arrow moves it \"to the text end\" and Left Arrow \"to the text start\"." -msgstr "如果选择从右向左的文字流,则嵌入的西文仍然采用从左向右的顺序。光标响应箭头键:按向右箭头键,光标移动到“文字末尾位置”;按向左箭头键,光标移动到“文字起始位置”。" +msgstr "如果选择从右向左的文字流,嵌入的西文仍会采用从左向右的顺序。光标响应箭头键:按向右箭头键,光标向文字末尾方向移动;按向左箭头键,光标向文字开头方向移动。" #: ctl.xhp msgctxt "" @@ -3382,7 +3382,7 @@ "par_id3150541\n" "help.text" msgid "In multicolumn pages, sections or frames that are formatted with text flow from right to left, the first column is the right column and the last column is the left column." -msgstr "在多列页面中,区域或框架将格式化为从右向左的文字流,第一列是右列,最后一列是左列。" +msgstr "在多列页面,区域或框架的格式为从右向左的文字流时,第一列是最右列,最后一列是最左列。" #: ctl.xhp msgctxt "" @@ -4870,7 +4870,7 @@ "par_id3159157\n" "help.text" msgid "As an example, open an empty text document and press CommandCtrl + Shift + F4 keys. Open the bibliography database table biblio in the data source view. While pressing Shift+CommandCtrl, drag a few column headers into the document so that the form fields are created." -msgstr "" +msgstr "例如,打开空文本文档,按下「命令Ctrl + Shift + F4」组合键。在数据源视图打开参考文献数据库表「biblio」。按住「Shift+命令Ctrl」的同时,将一部分列标题拖入文档,即可创建表单字段。" #: data_search2.xhp msgctxt "" @@ -8566,7 +8566,7 @@ "par_idN106D9\n" "help.text" msgid "Fontwork Character Spacing - changes the character spacing and kerning" -msgstr "艺术字字符间距 - 修改字符间距和字距调整" +msgstr "艺术字字符间距 - 修改字符间距与字距微调" #: fontwork.xhp msgctxt "" @@ -10654,7 +10654,7 @@ "par_id3156286\n" "help.text" msgid "OptionAlt+Up Arrow or OptionAlt+Down Arrow: moves the window separator between table and form, for instance in the bibliography database." -msgstr "OptionAlt+向上方向键或 OptionAlt+向下方向键:在表格与表单之间移动窗口分隔符,例如在文献目录数据库中。" +msgstr "「选项Alt+向上箭头」或「选项Alt+向下箭头」: 在表格与表单之间移动窗口分隔符,例如在参考文献数据库中。" #: keyboard.xhp msgctxt "" @@ -11790,7 +11790,7 @@ "par_id3150040\n" "help.text" msgid "The language you select for your document determines the dictionary used for spellcheck, thesaurus and hyphenation, the decimal and thousands delimiter used and the default currency format." -msgstr "为文档选择的语言决定了用于拼写检查的词典、同义词词典、连字符、使用的小数分隔符和千位分隔符以及默认的货币格式等。" +msgstr "为文档选择的语言决定了用于拼写检查的词典、同义词词典、断词规则、使用的小数分隔符和千位分隔符以及默认的货币格式等。" #: language_select.xhp msgctxt "" @@ -14742,7 +14742,7 @@ "par_idN106A4\n" "help.text" msgid "Copies the formatting of the current paragraph and the character formatting of the next character in the text flow direction." -msgstr "复制当前段落的段落格式,以及文本流方向的下一个字符的字符格式。" +msgstr "复制当前段落的段落格式,以及文字流方向的下一个字符的字符格式。" #: paintbrush.xhp msgctxt "" @@ -14854,7 +14854,7 @@ "par_idN106FF\n" "help.text" msgid "Copies the formatting that is specified in Table, Text Flow, Borders, and Background tab pages in the Format - Table dialog. The paragraph and character formatting are also copied." -msgstr "复制在格式 - 表格对话框中的“表格”、“文本流”、“边框”和“背景”选项卡中指定的格式。段落和字符格式也将会被复制。" +msgstr "复制在「格式 - 表格」对话框中的「表格」「文字流」「边框」和「背景」选项卡中指定的格式。段落和字符格式也将一同复制。" #: paintbrush.xhp msgctxt "" @@ -16894,7 +16894,7 @@ "par_id3154306\n" "help.text" msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys Command Ctrl+minus sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off." -msgstr "要想通过在单词中输入一个软连字符来自动断字,请使用CommandCtrl+减号键。在这种情况下,即使自动断字功能被关闭,单词也会在行尾被分开。" +msgstr "要想通过在单词中自行输入软连字符来自动断词,请使用「命令Ctrl+减号」组合键。在这种情况下,即使段落的自动断词功能已经关闭,单词在行尾时也会在指定位置断开。" #: space_hyphen.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/optionen.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-02-14 04:11+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-21 17:30+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1518581470.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548091802.000000\n" #: 01000000.xhp msgctxt "" @@ -1390,7 +1390,7 @@ "bm_id7986388\n" "help.text" msgid "writing aids optionscustom dictionaries; editinguser-defined dictionaries; editingdictionaries; editing user-definedexceptions; user-defined dictionariesuser-defined dictionaries; dictionary of exceptionsspellcheck; dictionary of exceptionsignore list for spellcheckspellcheck; ignore listhyphenation; minimal number of characters" -msgstr "写作助手选项自定义词典; 编辑用户定义的词典; 编辑词典; 编辑用户定义的例外; 用户定义的词典用户定义的词典; 例外词典拼写检查; 例外词典拼写检查忽略列表拼写检查; 忽略列表连字符; 最小字符数" +msgstr "写作助手选项自定义词典; 编辑用户定义的词典; 编辑词典; 编辑用户定义的例外; 用户定义的词典用户定义的词典; 例外词典拼写检查; 例外词典拼写检查忽略列表拼写检查; 忽略列表断词; 最小字符数" #: 01010400.xhp msgctxt "" @@ -1406,7 +1406,7 @@ "par_id3153527\n" "help.text" msgid "Specifies the properties of the spellcheck, thesaurus and hyphenation." -msgstr "指定拼写检查、同义词库和断字属性。" +msgstr "指定拼写检查、同义词库和断词规则。" #: 01010400.xhp msgctxt "" @@ -1430,7 +1430,7 @@ "par_id3153663\n" "help.text" msgid "A language module can contain one, two or three submodules: Spellcheck, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the Edit button to open the Edit Modules dialog." -msgstr "" +msgstr "语言模块含一到三个子模块:拼写检查、断词规则和同义词库。每个子模块可用于一或多种语言。在模块名称前点击,可同时激活所有可用的子模块。再次点击可取消选中,即同时关闭所有可用的子模块。如果您希望启动或关闭单个子模块,请点击「编辑」按钮打开「编辑模块」对话框。" #: 01010400.xhp msgctxt "" @@ -1470,7 +1470,7 @@ "par_id3155419\n" "help.text" msgid "Lists the available user dictionaries. Mark the user dictionaries that you want to use for spellcheck and hyphenation." -msgstr "" +msgstr "列出可用的用户词典。请选中希望用于拼写检查和断词规则的用户词典。" #: 01010400.xhp msgctxt "" @@ -1646,7 +1646,7 @@ "par_id3151252\n" "help.text" msgid "You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary. If you select a word from this list it is displayed in the text field. If you type a word with a trailing = character, such as \"AutoComplete=\", the word is never automatically hyphenated and no hyphenation is suggested. Typing \"Auto=Complete\" results in the word being hyphenated, or a hyphenation suggested, where you insert the = sign." -msgstr "" +msgstr "您可以键入新的字词以添加到词典中。下面的列表显示当前自定义词典中的内容。如果从此列表中选择一个字词,则字词将显示在文本字段中。如果键入一个末尾有等号的字词,例如「AutoComplete=」,则该字词既不会自动断词,也不会建议断词。如果键入「Auto=Complete」,则将在等号位置断词或者建议断词。" #: 01010400.xhp msgctxt "" @@ -1654,7 +1654,7 @@ "par_id3151253\n" "help.text" msgid "You can use a [] block instead of the = sign to specify character changes before the hyphenation break. Possible character changes: (1) Extra characters, for example tug[g]gumi results the correct hyphenation “tugg- gummi” of the Swedish word “tuggummi”. (2) Character removing specified by a digit, for example paral·[1]lel results correct hyphenation “paral- lel” of the Catalan word “paral·lel”, removing one character before the break point. (3) Both removed and extra characters, for example cafee[2é]tje results correct hyphenation “café- tje” of the Dutch word “cafeetje”, removing two characters before the break point, and adding an extra one." -msgstr "" +msgstr "您可以使用 [] 区块代替 = 符号来指定断词前的字符变更。支持的字符变更: (1) 增加额外的字符,例如 tug[g]gumi 可正确地将瑞典语词汇「tuggummi」断词为「tugg- gummi」。 (2) 数字表示字符移除,例如 paral·[1]lel 可正确地将加泰罗尼亚语词汇「paral·lel」断词为「paral- lel」,断词点之前的一个字符被移除。 (3) 同时移除与增加字符,例如 cafee[2é]tje 可正确地将荷兰语词汇「cafeetje」断词为「café- tje」,断词点之前的两个字符被移除,并增加了一个新字符。" #: 01010400.xhp msgctxt "" @@ -1718,7 +1718,7 @@ "par_id3145259\n" "help.text" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "" +msgstr "定义拼写检查与断词规则的选项。" #: 01010400.xhp msgctxt "" @@ -1822,7 +1822,7 @@ "hd_id3150111\n" "help.text" msgid "Minimal number of characters for hyphenation" -msgstr "使用连字符时最少的字符数" +msgstr "断词处理时最少的字符数" #: 01010400.xhp msgctxt "" @@ -1830,7 +1830,7 @@ "par_id3150316\n" "help.text" msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied." -msgstr "" +msgstr "指定应用自动断词时所需的最小字符数量。" #: 01010400.xhp msgctxt "" @@ -1870,7 +1870,7 @@ "hd_id3156337\n" "help.text" msgid "Hyphenate without inquiry" -msgstr "自动断字" +msgstr "自动断词" #: 01010400.xhp msgctxt "" @@ -1878,7 +1878,7 @@ "par_id3151130\n" "help.text" msgid "Specifies that you will never be asked for a manual hyphenation. If the field is not marked, when a word is not recognized you will be presented with a dialog for entering hyphens." -msgstr "指定从不要求手动加入连字符。如果不选中此字段,则遇到尚未识别的字词时,将显示一个对话框,用于输入连字符。" +msgstr "指定从不要求加入手动断词符。如果不选中此字段,则遇到无法识别的字词时,将显示一个对话框,要求输入连字符。" #: 01010400.xhp msgctxt "" @@ -1894,7 +1894,7 @@ "par_id3155098\n" "help.text" msgid "Specifies that hyphenation will also be carried out in footnotes, headers and footers." -msgstr "指定在脚注、页眉和页脚中也使用连字符。" +msgstr "指定在脚注、页眉和页脚中也进行断词。" #: 01010401.xhp msgctxt "" @@ -1910,7 +1910,7 @@ "bm_id3154230\n" "help.text" msgid "spellcheck; activating for a languagehyphenation; activating for a languagethesaurus; activating for a languagelanguages; activating modulesdictionaries;creatinguser-defined dictionaries;creating" -msgstr "拼写检查; 为一种语言激活断字; 为一种语言激活同义词库; 为一种语言激活语言; 激活模块词典; 创建自定义词典; 创建" +msgstr "拼写检查; 为一种语言激活断词; 为一种语言激活同义词库; 为一种语言激活语言; 激活模块词典; 创建自定义词典; 创建" #: 01010401.xhp msgctxt "" @@ -1934,7 +1934,7 @@ "par_id3148473\n" "help.text" msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module. You can arrange the sub-modules by priority." -msgstr "为选定的模块指定语言、可用拼写、断字和同义词库子模块。可以根据优先级排列子模块。" +msgstr "为选定的模块指定语言、可用拼写、断词规则和同义词库子模块。可以根据优先级排列子模块。" #: 01010401.xhp msgctxt "" @@ -1950,7 +1950,7 @@ "par_id3144510\n" "help.text" msgid "Mark all modules that are to be activated for this language under the headings Spelling, Hyphenation and Thesaurus." -msgstr "在标题“拼写检查”、“断字”和“同义词库”下,选中要为选定语言启动的所有模块。" +msgstr "在标题「拼写检查」「断词」和「同义词库」下,选中要为选定语言启动的所有模块。" #: 01010401.xhp msgctxt "" @@ -1966,7 +1966,7 @@ "par_id3148663\n" "help.text" msgid "Only one sub-module can be activated under Hyphenation." -msgstr "在断字下只能启动一个子模块。" +msgstr "断词规则只能开启一个子模块。" #: 01010401.xhp msgctxt "" @@ -5558,7 +5558,7 @@ "par_id3146923\n" "help.text" msgid "Specifies the font used for indexes, alphabetical indexes, and tables of contents." -msgstr "指定索引和内容目录使用的字体。" +msgstr "指定用于索引与目录的字体。" #: 01040301.xhp msgctxt "" @@ -5990,7 +5990,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 "指定表格不会被任何类型的文字流间断符拆分。 在菜单「表格 - 属性 - 文字流」中也可以找到此选项。" #: 01040500.xhp msgctxt "" @@ -6366,7 +6366,7 @@ "par_id3147230\n" "help.text" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Command+Hyphen(-)Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr "" +msgstr "指定是否显示软连字符(也叫可选或自由连字符)。这是一种用户定义的分隔符,可通过在字词中间按「命令+连字符 (-)Ctrl+连字符 (-)」插入。如果字词中带有软连字符,则当该字词位于行末时,只会在插入软连字符的位置分开,不论是否开启自动断词。" #: 01040600.xhp msgctxt "" @@ -6510,7 +6510,7 @@ "par_id3150749\n" "help.text" msgid "Activates the direct cursor. You can also activate this function by clicking the Toggle Direct Cursor Mode icon on the Tools bar or by choosing the Edit - Direct Cursor Mode command in a text document." -msgstr "" +msgstr "启用直接光标定位。 您也可以点击工具栏上的「切换直接光标定位模式」图标,或对文本文档选择「编辑 - 直接光标定位模式」命令激活。" #: 01040600.xhp msgctxt "" @@ -12174,7 +12174,7 @@ "par_id3149763\n" "help.text" msgid "Specifies the languages for spellchecking, thesaurus and hyphenation." -msgstr "指定用于拼写检查、同义词库和断字的语言。" +msgstr "指定用于拼写检查、同义词库和断词规则的语言。" #: 01140000.xhp msgctxt "" @@ -12382,7 +12382,7 @@ "bm_id3143268\n" "help.text" msgid "kerning;Asian texts" -msgstr "字符间隔相等; 亚洲语言文本" +msgstr "字距微调; 亚洲文字" #: 01150100.xhp msgctxt "" @@ -12390,7 +12390,7 @@ "hd_id3143268\n" "help.text" msgid "Kerning" -msgstr "字符间隔相等" +msgstr "字距微调" #: 01150100.xhp msgctxt "" @@ -12398,7 +12398,7 @@ "par_id3155535\n" "help.text" msgid "Defines the default settings for kerning between individual characters." -msgstr "定义字符间隔相等的默认设置。" +msgstr "定义各字符之间字距微调的默认设置。" #: 01150100.xhp msgctxt "" @@ -12414,7 +12414,7 @@ "par_id3149398\n" "help.text" msgid "Specifies that kerning is only applied to western text." -msgstr "" +msgstr "指定字距微调只应用于西方文字。" #: 01150100.xhp msgctxt "" @@ -12430,7 +12430,7 @@ "par_id3147336\n" "help.text" msgid "Specifies that kerning is applied to both western text and Asian punctuation." -msgstr "" +msgstr "指定字距微调应用于西方文字与东方标点。" #: 01150100.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/shared.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/shared.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-02-03 09:30+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-21 06:41+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1517650243.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548052877.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -422,7 +422,7 @@ "par_idN1064F\n" "help.text" msgid "Switches the kerning of character pairs on and off." -msgstr "启用或禁用 字距微调选项。" +msgstr "启用或禁用 字距微调。" #: main0108.xhp msgctxt "" @@ -462,7 +462,7 @@ "par_id3147576\n" "help.text" msgid "Opens the main page of the $[officename] Help for the current application. You can scroll through the Help pages and you can search for index terms or any text." -msgstr "打开当前应用程序的 $[officename] 帮助主页面。您可以滚动查看帮助页面,并可以查找索引项或任何文字。" +msgstr "打开当前应用程序的 $[officename] 帮助主页面。您可以滚动查看帮助页面,也可以查找索引术语或任意文字。" #: main0108.xhp msgctxt "" @@ -510,7 +510,7 @@ "par_id230120170827196850\n" "help.text" msgid "Opens the community support page in the web browser. Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the page of professional %PRODUCTNAME support." -msgstr "在浏览器中打开社区帮助页面。您可以在帮助页面中对使用 %PRODUCTNAME 中出现的问题进行提问。若要获得具有服务级协议约束的专业支持,请访问 %PRODUCTNAME 专业支持页面。" +msgstr "在浏览器中打开社区帮助页面。您可以在帮助页面中对使用 %PRODUCTNAME 中出现的问题进行提问。QQ 用户可加群获取帮助:190535062。若要获得具有服务级协议约束的专业支持,请访问 %PRODUCTNAME 专业支持页面。" #: main0108.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/00.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2018-05-21 07:15+0000\n" -"Last-Translator: Dingyuan Wang \n" +"PO-Revision-Date: 2019-01-18 05:56+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1526886912.000000\n" +"X-POOTLE-MTIME: 1547790968.000000\n" #: 00000004.xhp msgctxt "" @@ -766,7 +766,7 @@ "par_id3153727\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "选择工具 - 语言 - 连字符" +msgstr "选择「工具 - 语言 - 断词" #: 00000406.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-17 14:53+0200\n" -"PO-Revision-Date: 2016-07-07 00:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2019-01-18 03:30+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1467850301.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547782216.000000\n" #: 01170000.xhp msgctxt "" @@ -4750,7 +4750,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: 06030000.xhp msgctxt "" @@ -4758,7 +4758,7 @@ "hd_id3154011\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: 06030000.xhp msgctxt "" @@ -4766,7 +4766,7 @@ "par_id3153728\n" "help.text" msgid "Turns hyphenation option for text objects on or off. You can turn hyphenation on or off for each paragraph." -msgstr "打开或关闭用于文字对象的断字选项。可打开或关闭每个段落的断字。" +msgstr "打开或关闭用于文字对象的断词选项。可打开或关闭每个段落的断词。" #: 06040000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/04.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/04.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/04.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/04.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-12-18 12:31+0100\n" -"PO-Revision-Date: 2017-03-13 07:39+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 05:56+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1489390793.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547790989.000000\n" #: 01020000.xhp msgctxt "" @@ -758,7 +758,7 @@ "par_ii3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "" +msgstr "软连字符; 用户设置的断词。" #: 01020000.xhp msgctxt "" @@ -774,7 +774,7 @@ "par_ii3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "" +msgstr "不间断连字符 (不用于断词)" #: 01020000.xhp msgctxt "" @@ -790,7 +790,7 @@ "par_ii3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "占位空格。占位空格不用于断字,调整文本时宽度也不会伸缩。" +msgstr "不间断空格。不间断空格不用于断词,在文字两端对齐时也不会伸展。" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/simpress/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/simpress/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2016-07-05 09:48+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2019-01-21 06:25+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1467712123.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548051933.000000\n" #: 3d_create.xhp msgctxt "" @@ -2142,7 +2142,7 @@ "par_id180820171844236663\n" "help.text" msgid "Alternate mode: all slide thumbnails for direct selection or jumping. The current slide has a red selection cursor" -msgstr "" +msgstr "替代模式: 所有幻灯片缩略图供直接选择或跳转。当前幻灯片显示红色选择光标" #: impress_remote.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/smath/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/smath/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/smath/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-16 16:54+0200\n" -"PO-Revision-Date: 2016-05-07 08:48+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2018-12-19 07:21+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1462610929.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545204118.000000\n" #: 02080000.xhp msgctxt "" @@ -4494,7 +4494,7 @@ "par_id3151009\n" "help.text" msgid "aligning numerators and denominators, for example {alignl a}over{b+c}" -msgstr "对齐数字和分母,例如 {alignl a}over{b+c}" +msgstr "对齐分子和分母,例如 {alignl a}over{b+c}" #: 03090700.xhp msgctxt "" @@ -11390,7 +11390,7 @@ "par_id3155990\n" "help.text" msgid "Determines the spacing between the fraction bar and the numerator." -msgstr "确定分数线与分子之间的间隔。" +msgstr "指定分数线与分子之间的间隔。" #: 05030000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/smath/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/smath/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/smath/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-05-09 16:45+0200\n" -"PO-Revision-Date: 2016-07-05 09:49+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2018-12-19 07:22+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1467712144.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545204123.000000\n" #: align.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id3146971\n" "help.text" msgid "In the case of a fraction whose numerator and denominator consist of a product, a sum, and so on, the values that belong together must be bracketed together." -msgstr "若分子或分母由乘积与总和组成,往往必须用括号来说明计算程序。" +msgstr "若分子或分母由乘积、总和等构成,必须用括号说明它们是一个整体。" #: brackets.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/00.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-02-11 03:44+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-24 12:05+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1518320684.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548331500.000000\n" #: 00000004.xhp msgctxt "" @@ -286,7 +286,7 @@ "par_id3153737\n" "help.text" msgid "Choose Edit - Reference - Index Entry..." -msgstr "选择编辑 - 引用 - 索引项..." +msgstr "选择「编辑 - 引用 - 索引条目...」" #: 00000402.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id3147168\n" "help.text" msgid "Choose Edit - Bibliography Entry" -msgstr "选择编辑 - 文献目录条目" +msgstr "选择「编辑 - 参考文献条目" #: 00000402.xhp msgctxt "" @@ -334,7 +334,7 @@ "par_id3973244\n" "help.text" msgid "Choose Edit - Direct Cursor Mode" -msgstr "选择编辑 - 直接光标定位" +msgstr "选择「编辑 - 直接光标定位模式" #: 00000403.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id3155990\n" "help.text" msgid "CommandCtrl+F2" -msgstr "" +msgstr "命令Ctrl+F2" #: 00000404.xhp msgctxt "" @@ -854,7 +854,7 @@ "par_id3150113\n" "help.text" msgid "Choose Insert - Script (only HTML documents)" -msgstr "" +msgstr "选择「插入 - 脚本」(只用于 HTML 文档)" #: 00000404.xhp msgctxt "" @@ -870,7 +870,7 @@ "par_id3147471\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Index Entry" -msgstr "选择 插入 - 目录和索引 - 索引项" +msgstr "选择「插入 - 目录和索引 - 索引条目」" #: 00000404.xhp msgctxt "" @@ -902,7 +902,7 @@ "par_id3149217\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献" #: 00000404.xhp msgctxt "" @@ -910,7 +910,7 @@ "par_id3156225\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Bibliography Entry" -msgstr "选择 插入 - 目录和索引 - 文献目录条目" +msgstr "选择「插入 - 目录与索引 - 参考文献条目" #: 00000404.xhp msgctxt "" @@ -918,7 +918,7 @@ "par_id3147745\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献" #: 00000404.xhp msgctxt "" @@ -926,7 +926,7 @@ "par_id3146342\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡" #: 00000404.xhp msgctxt "" @@ -934,7 +934,7 @@ "par_id3147449\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (depending on the type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(取决于类型)" +msgstr "选择「插入 -目录与索引 - 目录、索引或参考文献 - 类型」选项卡(取决于类型)" #: 00000404.xhp msgctxt "" @@ -942,7 +942,7 @@ "par_id3149835\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Table of Contents is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“内容目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「目录」时)" #: 00000404.xhp msgctxt "" @@ -950,7 +950,7 @@ "par_id3148855\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Alphabetical Index is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“索引目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「字母顺序索引」时)" #: 00000404.xhp msgctxt "" @@ -958,7 +958,7 @@ "par_id3155575\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Illustration Index is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“插图索引”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「插图索引」时)" #: 00000404.xhp msgctxt "" @@ -966,7 +966,7 @@ "par_id3151080\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Index of Tables is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“表格目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「表格索引」时)" #: 00000404.xhp msgctxt "" @@ -974,7 +974,7 @@ "par_id3154777\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when User-Defined is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“用户定义”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「用户定义」时)" #: 00000404.xhp msgctxt "" @@ -982,7 +982,7 @@ "par_id3148448\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type tab (when Table of Objects is the selected type)" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡(当选定的类型是“对象目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「对象表格」时)" #: 00000404.xhp msgctxt "" @@ -990,7 +990,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 "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡(当选定类型为「参考文献」时)" #: 00000404.xhp msgctxt "" @@ -998,7 +998,7 @@ "par_id3153295\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type, mark \"Additional Styles\" check box and then click Assign styles" -msgstr "选择 插入 -目录和索引 - 内容目录,索引或参考文献 - 类型 选项卡,选中“样式”复选框,然后单击 指定样式 " +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 类型」选项卡,选中「额外样式」复选框,然后单击「指定样式" #: 00000404.xhp msgctxt "" @@ -1006,7 +1006,7 @@ "par_id3150173\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (depending on type selected)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(取决于选定的类别)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(取决于选定的类别)" #: 00000404.xhp msgctxt "" @@ -1014,7 +1014,7 @@ "par_id3154725\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Table of Contents is the selected type)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“内容目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「目录」时)" #: 00000404.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "par_id3150448\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Alphabetical Index is the selected type)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“索引目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类别为「字母顺序索引」时)" #: 00000404.xhp msgctxt "" @@ -1030,7 +1030,7 @@ "par_id3156101\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Illustration Index is the selected type)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“插图索引”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「插图索引」时)" #: 00000404.xhp msgctxt "" @@ -1038,7 +1038,7 @@ "par_id3156125\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Index of Tables is the selected type)" -msgstr "C选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“表格目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「表格索引」时)" #: 00000404.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "par_id3153982\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when User-Defined is the selected type)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“用户定义”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「用户定义」时)" #: 00000404.xhp msgctxt "" @@ -1054,7 +1054,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 "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“对象目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「对象表格」时)" #: 00000404.xhp msgctxt "" @@ -1062,7 +1062,7 @@ "par_id3145625\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Bibliography is the selected type)" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 选项卡(当选择的类别是“文献目录”时)" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 条目」选项卡(选择类型为「参考文献」时)" #: 00000404.xhp msgctxt "" @@ -1070,7 +1070,7 @@ "par_id3149767\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Bibliography Entry and click Edit" -msgstr "选择 插入 - 目录和索引 - 内容目录,索引或参考文献 - 条目 ,然后单击 编辑" +msgstr "选择「插入 - 目录与索引 - 参考文献条目」,然后单击「编辑" #: 00000404.xhp msgctxt "" @@ -1078,7 +1078,7 @@ "par_id3150918\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Styles tab" -msgstr "选择 插入 - 内容目录和索引 - 内容目录,索引或参考文献 - 样式 选项卡" +msgstr "选择「插入 - 目录与索引 - 目录、索引或参考文献 - 样式」选项卡" #: 00000404.xhp msgctxt "" @@ -1094,7 +1094,7 @@ "par_id3155087\n" "help.text" msgid "Choose Insert - Envelope - Envelope tab" -msgstr "" +msgstr "选择「插入 - 信封 - 信封」选项卡" #: 00000404.xhp msgctxt "" @@ -1102,7 +1102,7 @@ "par_id3146955\n" "help.text" msgid "Choose Insert - Envelope - Format tab" -msgstr "" +msgstr "选择「插入 - 信封 - 格式」选项卡" #: 00000404.xhp msgctxt "" @@ -1110,7 +1110,7 @@ "par_id3154342\n" "help.text" msgid "Choose Insert - Envelope - Printer tab" -msgstr "" +msgstr "选择「插入 - 信封 - 打印机」选项卡" #: 00000404.xhp msgctxt "" @@ -1142,7 +1142,7 @@ "par_id3149372\n" "help.text" msgid "Icon" -msgstr "图标" +msgstr "图标" #: 00000404.xhp msgctxt "" @@ -1158,7 +1158,7 @@ "par_id3154251\n" "help.text" msgid "Choose Table - Insert Table" -msgstr "" +msgstr "选择「表格 - 插入表格」" #: 00000404.xhp msgctxt "" @@ -1166,7 +1166,7 @@ "par_id3153129\n" "help.text" msgid "CommandCtrl+F12" -msgstr "" +msgstr "命令Ctrl+F12" #: 00000404.xhp msgctxt "" @@ -1254,7 +1254,7 @@ "par_id81526422144005\n" "help.text" msgid "Choose Insert - Signature Line..." -msgstr "" +msgstr "选择「插入 - 签名行...」" #: 00000405.xhp msgctxt "" @@ -1294,7 +1294,7 @@ "par_id3154697\n" "help.text" msgid "Choose Format - Paragraph - Text Flow tab" -msgstr "选择格式 - 段落 - 换行和分页选项卡" +msgstr "选择「格式 - 段落 - 文字流」选项卡" #: 00000405.xhp msgctxt "" @@ -1302,7 +1302,7 @@ "par_id3154260\n" "help.text" msgid "Choose View - Styles - open context menu Modify/New - Text Flow tab" -msgstr "选择格式 - 样式 -打开右键菜单修改/新建 - 类型选项卡" +msgstr "选择「视图 - 样式」,打开右键菜单「修改/新建 - 文字流」选项卡" #: 00000405.xhp msgctxt "" @@ -1310,7 +1310,7 @@ "par_id3154275\n" "help.text" msgid "Choose Edit - Find & Replace - Format - Text Flow tab" -msgstr "选择编辑 - 查找和替换 - 格式 - 换行和分页选项卡" +msgstr "选择「编辑 - 查找和替换 - 格式 - 文字流」选项卡" #: 00000405.xhp msgctxt "" @@ -1478,7 +1478,7 @@ "par_id3151370\n" "help.text" msgid "Choose Tools - AutoCorrect - While Typing" -msgstr "" +msgstr "选择「工具 - 自动更正 - 键入时」" #: 00000405.xhp msgctxt "" @@ -1486,7 +1486,7 @@ "par_id3149538\n" "help.text" msgid "Choose Tools - AutoCorrect" -msgstr "" +msgstr "选择「工具 - 自动更正」" #: 00000405.xhp msgctxt "" @@ -1494,7 +1494,7 @@ "par_id3150117\n" "help.text" msgid "Choose Tools - AutoCorrect - Apply" -msgstr "" +msgstr "选择「工具 - 自动更正 - 应用」" #: 00000405.xhp msgctxt "" @@ -1502,7 +1502,7 @@ "par_id3155870\n" "help.text" msgid "Choose Tools - AutoCorrect - Apply and Edit Changes" -msgstr "" +msgstr "选择「工具 - 自动更正 - 应用并编辑变更」" #: 00000405.xhp msgctxt "" @@ -1782,7 +1782,7 @@ "par_id3153140\n" "help.text" msgid "Choose Table - Properties - Text Flow tab" -msgstr "选择表格 - 表格属性 - 换行和分页选项卡" +msgstr "选择「表格 - 表格属性 - 文字流」选项卡" #: 00000405.xhp msgctxt "" @@ -2246,7 +2246,7 @@ "par_id3150710\n" "help.text" msgid "Choose Tools - Language - Hyphenation" -msgstr "选择工具 - 语言 - 断字" +msgstr "选择「工具 - 语言 - 断词" #: 00000406.xhp msgctxt "" @@ -2366,7 +2366,7 @@ "par_id3149821\n" "help.text" msgid "Choose Tools - Update - All Indexes and Tables" -msgstr "选择工具 - 更新 - 全部的索引和目录" +msgstr "选择「工具 - 更新 - 所有索引与目录" #: 00000406.xhp msgctxt "" @@ -2454,7 +2454,7 @@ "tit\n" "help.text" msgid "The styles menu" -msgstr "" +msgstr "样式菜单" #: stylesmenu.xhp msgctxt "" @@ -2462,7 +2462,7 @@ "par_id941529884998705\n" "help.text" msgid "Choose Styles - Edit Styles." -msgstr "" +msgstr "选择「样式 - 编辑样式」。" #: stylesmenu.xhp msgctxt "" @@ -2470,7 +2470,7 @@ "par_id511529885005747\n" "help.text" msgid "Choose Styles - Update Style or CommandCtrl+ Shift + F11." -msgstr "" +msgstr "选择「样式 - 更新样式」或「命令Ctrl+ Shift + F11」。" #: stylesmenu.xhp msgctxt "" @@ -2478,7 +2478,7 @@ "par_id411529885010612\n" "help.text" msgid "Choose Styles - New Style or Shift + F11." -msgstr "" +msgstr "选择「样式 - 新建样式」或「Shift + F11」。" #: stylesmenu.xhp msgctxt "" @@ -2486,7 +2486,7 @@ "par_id221529885015598\n" "help.text" msgid "Choose Styles - Load Styles." -msgstr "" +msgstr "选择「样式 - 编辑样式」。" #: stylesmenu.xhp msgctxt "" @@ -2494,4 +2494,4 @@ "par_id391529885020996\n" "help.text" msgid "Choose Styles - Manage Styles or F11." -msgstr "" +msgstr "选择「样式 - 管理样式」或 F11。" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-03-14 14:07+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-24 12:27+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1521036429.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548332846.000000\n" #: 01120000.xhp msgctxt "" @@ -894,7 +894,7 @@ "hd_id3155381\n" "help.text" msgid "Set Reminder" -msgstr "设置标记" +msgstr "设置提醒" #: 02110000.xhp msgctxt "" @@ -902,7 +902,7 @@ "par_id3153011\n" "help.text" msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button. Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button." -msgstr "单击此处可以在光标当前所在的位置设置标记。您最多可以定义五个标记。要跳转到某个标记,请单击导航图标,在导航窗口中单击标记图标,然后单击上一标记下一标记按钮。单击此处可以在光标当前所在的位置设置标记。您最多可以定义五个标记。要跳转到某个标记,请单击导航图标,在\"导航\"窗口中单击\"标记\"图标,然后单击\"上一标记\"或\"下一标记\"按钮。" +msgstr "单击此处可以在光标当前所在的位置设置提醒。您可以定义最多五个提醒。要跳转到某个提醒,请单击「导航」图标,在「导航」窗口中单击「提醒」图标,然后单击「上一提醒」或「下一提醒」按钮。单击此处可以在当前光标位置设置提醒。您最多可以定义五个提醒。要跳转到某个提醒,请单击「导航」图标,在「导航」窗口中单击「提醒」图标,然后单击「上一提醒」或「下一提醒」按钮。" #: 02110000.xhp msgctxt "" @@ -918,7 +918,7 @@ "par_id3153054\n" "help.text" msgid "Set Reminder" -msgstr "设置标记" +msgstr "设置提醒" #: 02110000.xhp msgctxt "" @@ -1350,7 +1350,7 @@ "par_id3154330\n" "help.text" msgid "The entries largely correspond to those in the Navigator selection box. You can also select other jump destinations. An example are the reminders, which you can set with the Set Reminder icon in the Navigator. You can select an object from among the following options on the Navigation toolbar: table, text frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula." -msgstr "多数条目都与导航 选择框内条目相对应。您也可以选择其他跳转目标。标记就是其中一个示例,您可以使用“导航”中的设置标记图标进行设置。您也可以从浏览工具栏的下列选项中选择对象:表格、文本框、图形、OLE 对象、页面、标题、提示、绘图对象、控制字段、区域、书签、选定内容、脚注、注释、索引项、表格公式、错误表格公式。" +msgstr "条目大多与「导航」选择框中的条目相对应。您也可以选择其他跳转目标。例如提醒,可以通过「导航」中的「设置提醒」图标来设置。您也可以从「导航」工具栏的下述选项中选择对象:表格、文本框、图形、OLE 对象、页面、标题、提醒、绘图对象、控制字段、区域、书签、选定内容、脚注、注释、索引条目、表格公式、错误表格公式。" #: 02110100.xhp msgctxt "" @@ -1478,7 +1478,7 @@ "par_idN1077E\n" "help.text" msgid "Select this icon to browse through reminders." -msgstr "选择此图标浏览标记。" +msgstr "选择此图标可浏览提醒。" #: 02110100.xhp msgctxt "" @@ -2142,7 +2142,7 @@ "tit\n" "help.text" msgid "Edit Bibliography Entry" -msgstr "编辑文献目录条目" +msgstr "编辑参考文献条目" #: 02130000.xhp msgctxt "" @@ -2150,7 +2150,7 @@ "hd_id3147434\n" "help.text" msgid "Edit Bibliography Entry" -msgstr "编辑文献目录条目" +msgstr "编辑参考文献条目" #: 02130000.xhp msgctxt "" @@ -2182,7 +2182,7 @@ "par_id3154657\n" "help.text" msgid "Displays the abbreviation for the bibliography entry." -msgstr "显示文献目录条目的简称。" +msgstr "显示参考文献条目的缩写。" #: 02130000.xhp msgctxt "" @@ -2198,7 +2198,7 @@ "par_id3152741\n" "help.text" msgid "Displays the author and title information contained in the bibliography entry." -msgstr "显示文献目录条目中含有的作者信息和标题信息。" +msgstr "显示参考文献条目的作者信息与标题信息。" #: 02130000.xhp msgctxt "" @@ -2214,7 +2214,7 @@ "par_id3154766\n" "help.text" msgid "Applies the changes that you made, and then closes the Edit Bibliography Entry dialog." -msgstr "应用所做的修改,然后关闭编辑文献目录条目对话框。" +msgstr "应用所做的修改,然后关闭「编辑参考文献条目」对话框。" #: 02130000.xhp msgctxt "" @@ -2246,7 +2246,7 @@ "par_id3151389\n" "help.text" msgid "Opens the Define Bibliography Entry dialog, where you can create a new entry." -msgstr "打开定义文献目录条目 对话框,可以在其中创建新的条目。" +msgstr "打开「定义参考文献条目」对话框,可以在其中创建新的条目。" #: 02130000.xhp msgctxt "" @@ -2262,7 +2262,7 @@ "par_id3155620\n" "help.text" msgid "Opens the Define Bibliography Entry dialog, where you can edit the current entry." -msgstr "打开定义文献目录条目对话框,可以在其中编辑当前条目。" +msgstr "打开「定义参考文献条目」对话框,可以在其中编辑当前条目。" #: 02130000.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "par_id3154560\n" "help.text" msgid "Tips for working with bibliography entries." -msgstr "有关使用文献目录条目的提示。" +msgstr "有关使用参考文献条目的提示。" #: 02140000.xhp msgctxt "" @@ -2902,7 +2902,7 @@ "par_id3155896\n" "help.text" msgid "To insert an index entry, select a word in the document, and then choose Insert - Table of Contents and Index - Index Entry." -msgstr "要插入索引项,请在文档中选择一个词,然后选择插入 - 内容目录及索引 - 索引项。" +msgstr "要插入索引条目,请在文档中选择一个词,然后选择「插入 - 目录与索引 - 索引条目」。" #: 02160000.xhp msgctxt "" @@ -3094,7 +3094,7 @@ "par_id3154327\n" "help.text" msgid "Jumps to the previous index entry of the same type in the document." -msgstr "跳转到文档中同类条目的前一条索引项。" +msgstr "跳转到文档中同类的前一条索引条目。" #: 02160000.xhp msgctxt "" @@ -3126,7 +3126,7 @@ "par_id3154633\n" "help.text" msgid "Jumps to the next index entry of the same type in the document." -msgstr "跳转到文档中同类条目的后一条索引项。" +msgstr "跳转到文档中同类的后一条索引条目。" #: 02160000.xhp msgctxt "" @@ -9566,7 +9566,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 "" +msgstr "打开菜单,可选择插入索引或参考文献条目,以及插入目录、索引与/或参考文献。" #: 04120000.xhp msgctxt "" @@ -9582,7 +9582,7 @@ "hd_id3155620\n" "help.text" msgid "Bibliography Entry" -msgstr "文献目录条目" +msgstr "参考文献条目" #: 04120000.xhp msgctxt "" @@ -9870,7 +9870,7 @@ "par_id3153507\n" "help.text" msgid "Enter a name for the new user-defined index. The new index is added to the list of available indexes and tables." -msgstr "输入新建的自定义索引的名称。这个新的索引将被添加到可用的索引和目录列表中。" +msgstr "输入新建的自定义索引的名称。新建的索引将被加入可用的索引与目录列表中。" #: 04120100.xhp msgctxt "" @@ -10134,7 +10134,7 @@ "hd_id3145410\n" "help.text" msgid "Bibliography" -msgstr "文献目录" +msgstr "参考文献" #: 04120210.xhp msgctxt "" @@ -10150,7 +10150,7 @@ "par_id3152942\n" "help.text" msgid "Insert - Table of Contents and Index - Index Entry" -msgstr "插入 - 索引和目录 - 条目" +msgstr "插入 - 索引与目录 - 条目" #: 04120211.xhp msgctxt "" @@ -10454,7 +10454,7 @@ "par_id3149880\n" "help.text" msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies. If you want the first occurrence of the entry in the document to determine the case of the entry, select Combine identical entries." -msgstr "相同索引项中区分大小写字母。对于亚洲语言,需要进行一些特殊处理。如果要根据文档中首次出现的条目来确定条目的大小写,请选择合并相同的条目。" +msgstr "相同索引条目中区分字母大小写。对于亚洲语言,会进行一些特殊处理。如果希望根据文档中条目首次出现的样子来确定条目的大小写,请选择「合并相同的条目」。" #: 04120212.xhp msgctxt "" @@ -10982,7 +10982,7 @@ "par_id3145825\n" "help.text" msgid "The following options are available when you select Bibliography as the index type." -msgstr "当选择文献目录作为索引类型时,可以使用以下选项。" +msgstr "当选择「参考文献」作为索引类型时,可使用以下选项。" #: 04120217.xhp msgctxt "" @@ -11006,7 +11006,7 @@ "par_id3154647\n" "help.text" msgid "Automatically numbers the bibliography entries. To set the sorting options for the numbering, click the Entries tab." -msgstr "自动对文献目录条目编号。 要设置编号的排序选项,请单击条目选项卡。" +msgstr "自动对参考文献条目编号。 要设置编号的排序选项,请单击「条目」选项卡。" #: 04120217.xhp msgctxt "" @@ -11022,7 +11022,7 @@ "par_id3149295\n" "help.text" msgid "Select the brackets that you want to enclose bibliography entries." -msgstr "选择要在文献目录条目前后添加的括号。" +msgstr "选择要在参考文献条目前后添加的括号。" #: 04120219.xhp msgctxt "" @@ -11134,7 +11134,7 @@ "hd_id3148770\n" "help.text" msgid "Table of Contents" -msgstr "内容目录" +msgstr "目录" #: 04120220.xhp msgctxt "" @@ -11182,7 +11182,7 @@ "hd_id3147506\n" "help.text" msgid "Bibliography" -msgstr "文献目录" +msgstr "参考文献" #: 04120221.xhp msgctxt "" @@ -11510,7 +11510,7 @@ "par_id3153532\n" "help.text" msgid "Level \"S\" refers to the single letter headings that divide the index entries alphabetically. To enable these headings, select the Alphabetical delimiter check box in the Format area." -msgstr "级 \"S\" 是指按字母顺序将索引条目划分到各个字母标题下。要开放这些标题,请选择格式化区域中的字母分隔符复选框。" +msgstr "级「S」是指按字母顺序将索引条目划分到单个字母标题下。要启用这些标题,请选择「格式」区域中的「字母顺序分隔符」复选框。" #: 04120222.xhp msgctxt "" @@ -11582,7 +11582,7 @@ "hd_id3148977\n" "help.text" msgid "Alphabetical delimiter" -msgstr "字母分隔符" +msgstr "字母顺序分隔符" #: 04120222.xhp msgctxt "" @@ -11598,7 +11598,7 @@ "hd_id3147226\n" "help.text" msgid "Key separated by commas" -msgstr "键码用逗号分开" +msgstr "关键字用逗号分隔" #: 04120222.xhp msgctxt "" @@ -11742,7 +11742,7 @@ "tit\n" "help.text" msgid "Entries (bibliography)" -msgstr "条目(文献目录)" +msgstr "条目 (参考文献)" #: 04120227.xhp msgctxt "" @@ -11750,7 +11750,7 @@ "hd_id3151388\n" "help.text" msgid "Entries (bibliography)" -msgstr "条目(文献目录)" +msgstr "条目 (参考文献)" #: 04120227.xhp msgctxt "" @@ -11758,7 +11758,7 @@ "par_id3083449\n" "help.text" msgid "Specify the format for bibliography entries." -msgstr "指定文献目录条目的格式。" +msgstr "指定参考文献条目的格式。" #: 04120227.xhp msgctxt "" @@ -11790,7 +11790,7 @@ "par_id3147175\n" "help.text" msgid "Lists the available bibliography entries. To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert. Use the Define Bibliography Entry dialog to add new entries." -msgstr "列出可用的文献目录条目。要将某个条目添加到“结构”行,单击此条目,单击“结构”行上的空白框,然后单击插入使用定义文献目录条目对话框添加新的条目。" +msgstr "列出可用的参考文献条目。要将某个条目添加到「结构」行,单击此条目,单击「结构」行的空白框,然后单击「插入」。使用「定义参考文献条目」对话框添加新的条目。" #: 04120227.xhp msgctxt "" @@ -11806,7 +11806,7 @@ "par_id3151178\n" "help.text" msgid "Adds the reference code for the selected bibliography entry to the Structure line. Select an entry in the list, click in an empty box, and then click this button." -msgstr "将选定的文献目录条目的引用代码添加到“结构”行中。在列表中选择条目,单击空白框,然后单击此按钮。" +msgstr "将选定的参考文献条目的引用代码添加到「结构」行中。在列表中选择条目,单击空白框,然后单击此按钮。" #: 04120227.xhp msgctxt "" @@ -11870,7 +11870,7 @@ "par_id3149687\n" "help.text" msgid "Sorts the bibliography entries by the Sort keys that you specify, for example, by author or by year of publication." -msgstr "按照您指定的“排序”关键字对文献目录条目进行排序,例如,按照作者或者按照出版年份。" +msgstr "按照您指定的“排序”关键字对参考文献条目进行排序,例如,按照作者或者按照出版年份。" #: 04120227.xhp msgctxt "" @@ -11934,7 +11934,7 @@ "tit\n" "help.text" msgid "Define Bibliography Entry" -msgstr "定义文献目录条目" +msgstr "定义参考文献条目" #: 04120229.xhp msgctxt "" @@ -11942,7 +11942,7 @@ "hd_id3147176\n" "help.text" msgid "Define Bibliography Entry" -msgstr "定义文献目录条目" +msgstr "定义参考文献条目" #: 04120229.xhp msgctxt "" @@ -11950,7 +11950,7 @@ "par_id3151183\n" "help.text" msgid "Change the content of a bibliography entry." -msgstr "修改文献目录条目的内容。" +msgstr "修改参考文献条目的内容。" #: 04120229.xhp msgctxt "" @@ -11966,7 +11966,7 @@ "par_id3145419\n" "help.text" msgid "Enter a short name and select the appropriate source type. You can now enter data into the other fields belonging for the entry." -msgstr "输入简称并选择适当的数据源类型。现在,您可以在该条目的其他字段中输入数据了。" +msgstr "输入简称并选择相应的数据源类型。现在,您可以在其余属于该条目的字段中输入数据了。" #: 04120229.xhp msgctxt "" @@ -11982,7 +11982,7 @@ "par_id3145582\n" "help.text" msgid "Displays the short name for the bibliography entry. You can only enter a name here if you are creating a new bibliography entry." -msgstr "" +msgstr "显示参考文献条目的简称。如果正在创建新的参考文献条目,则只能在此处输入名称。" #: 04120229.xhp msgctxt "" @@ -12014,7 +12014,7 @@ "par_id3147091\n" "help.text" msgid "Formatting bibliography entries" -msgstr "格式化文献目录条目" +msgstr "格式化参考文献条目" #: 04120250.xhp msgctxt "" @@ -12262,7 +12262,7 @@ "tit\n" "help.text" msgid "Insert Bibliography Entry" -msgstr "插入文献目录条目" +msgstr "插入参考文献条目" #: 04120300.xhp msgctxt "" @@ -12270,7 +12270,7 @@ "hd_id3151187\n" "help.text" msgid "Insert Bibliography Entry" -msgstr "插入文献目录条目" +msgstr "插入参考文献条目" #: 04120300.xhp msgctxt "" @@ -12278,7 +12278,7 @@ "par_id3154642\n" "help.text" msgid "Inserts a bibliography reference." -msgstr "插入引用文献目录。" +msgstr "插入参考文献引用。" #: 04120300.xhp msgctxt "" @@ -12318,7 +12318,7 @@ "par_id3153536\n" "help.text" msgid "Inserts a reference from the bibliography records that are stored in the current document. An entry that is stored in the document has priority over an entry that is stored in the bibliography database." -msgstr "从当前文档所保存的文献目录记录插入参考文献。文档中保存的条目优先级高于文献目录数据库中所保存的条目。" +msgstr "从储存在当前文档的参考文献记录中插入参考文献引用。储存在文档中的条目优先级高于储存在参考文献数据库中的条目。" #: 04120300.xhp msgctxt "" @@ -12342,7 +12342,7 @@ "par_id3149490\n" "help.text" msgid "Select the short name of the bibliography record that you want to insert." -msgstr "选择您希望插入的文献记录的简称。" +msgstr "选择您希望插入的参考文献记录的简称。" #: 04120300.xhp msgctxt "" @@ -12358,7 +12358,7 @@ "par_id3149824\n" "help.text" msgid "If available, the author and the full title of the selected short name are displayed in this area." -msgstr "如果提供了选定简称的作者和完整标题,则这些信息也将显示在此区域中。" +msgstr "如果选定简称的作者与完整标题可用,则这些信息也将显示在此区域中。" #: 04120300.xhp msgctxt "" @@ -12374,7 +12374,7 @@ "par_id3147100\n" "help.text" msgid "Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document." -msgstr "将文献目录引用插入到文档中。如果您创建了新的记录,也必须将其作为一个条目插入,否则,当您关闭文档时此记录将会丢失。" +msgstr "将参考文献引用插入到文档中。如果您创建了新的记录,也必须将其作为条目插入,否则,当您关闭文档时此记录将会丢失。" #: 04120300.xhp msgctxt "" @@ -12406,7 +12406,7 @@ "par_id3147579\n" "help.text" msgid "Opens the Define Bibliography Entry dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose Tools - Bibliography Database." -msgstr "打开定义文献目录条目 对话框,可在其中创建新文献目录记录。此记录仅存储在文档中。要在文献数据库中添加记录,请选择工具 - 文献数据库" +msgstr "打开「定义参考文献条目」对话框,可在其中创建新的参考文献记录。此记录仅存储在文档中。要将记录添加到参考文献数据库,请选择「工具 - 参考文献数据库」。" #: 04120300.xhp msgctxt "" @@ -12422,7 +12422,7 @@ "par_id3157900\n" "help.text" msgid "Opens the Define Bibliography Entry dialog where you can edit the selected bibliography record." -msgstr "打开定义文献目录条目 对话框,可在其中编辑选定的文献目录记录。" +msgstr "打开「定义参考文献条目」对话框,可在其中编辑选定的参考文献记录。" #: 04120300.xhp msgctxt "" @@ -12430,7 +12430,7 @@ "par_id3149172\n" "help.text" msgid "Tips for working with bibliography entries" -msgstr "有关使用文献目录条目的提示。" +msgstr "有关使用参考文献条目的提示。" #: 04130000.xhp msgctxt "" @@ -12790,7 +12790,7 @@ "par_id3155912\n" "help.text" msgid "Table - Properties - Text Flow" -msgstr "" +msgstr "表格 - 属性 - 文字流" #: 04150000.xhp msgctxt "" @@ -13326,7 +13326,7 @@ "tit\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: 05030200.xhp msgctxt "" @@ -13334,7 +13334,7 @@ "bm_id2502212\n" "help.text" msgid "text flow;at breaksparagraphs;keeping together at breaksprotecting;text flowwidowsorphansblock protect, see also widows or orphans" -msgstr "文字方向; 在换行处段落; 在换行处保持连接保护; 文字方向页首孤行页尾孤行块保护,另请参阅页首孤行或页尾孤行" +msgstr "文字流; 在换行处段落; 在换行处保持连接保护; 文字流页首孤行页尾孤行块保护,另请参阅页首孤行或页尾孤行" #: 05030200.xhp msgctxt "" @@ -13342,7 +13342,7 @@ "hd_id3083447\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: 05030200.xhp msgctxt "" @@ -13350,7 +13350,7 @@ "par_id3145824\n" "help.text" msgid "Specify hyphenation and pagination options." -msgstr "设定断词和分页选项。" +msgstr "指定断词与分页选项。" #: 05030200.xhp msgctxt "" @@ -13422,7 +13422,7 @@ "hd_id3149804\n" "help.text" msgid "Maximum no. of consecutive hyphens" -msgstr "最多连续断字次数" +msgstr "最多连续断词次数" #: 05030200.xhp msgctxt "" @@ -13430,7 +13430,7 @@ "par_id3153536\n" "help.text" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "输入断字功能允许的最大连续行数。" +msgstr "输入断词功能允许的最大连续行数。" #: 05030200.xhp msgctxt "" @@ -13438,7 +13438,7 @@ "hd_id3153665\n" "help.text" msgid "Breaks" -msgstr "换行和分页" +msgstr "换行符" #: 05030200.xhp msgctxt "" @@ -13446,7 +13446,7 @@ "par_id3154470\n" "help.text" msgid "Specify the page or column break options." -msgstr "指定页或栏的换行和分页选项。" +msgstr "指定页或栏的「换行符」选项。" #: 05030200.xhp msgctxt "" @@ -13558,7 +13558,7 @@ "par_id3147219\n" "help.text" msgid "Specify the text flow options for paragraphs that appear before and after a page break." -msgstr "指定分页符前、后段落的换行和分页选项。" +msgstr "指定分页符前后段落的文字流选项。" #: 05030200.xhp msgctxt "" @@ -14118,7 +14118,7 @@ "par_id3149024\n" "help.text" msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically. Evenly distributes the text in multi-column sections." -msgstr "在多栏区域中分配文本。按照相同的高度将文字流分配到所有的栏中。区域的高度将会自动调整。均匀分配多栏区域中的文本。" +msgstr "在多栏区域中分布文字。按照相同的高度将文字流分配到所有栏中。区域的高度将会自动调整。均匀分配多栏区域中的文本。" #: 05040500.xhp msgctxt "" @@ -14382,7 +14382,7 @@ "par_id3151390\n" "help.text" msgid "Sections follow the text flow behavior of the page they are inserted into." -msgstr "区域遵循其所在页面的换行和分页设置。" +msgstr "区域遵循其所在页面的文字流设置。" #: 05040501.xhp msgctxt "" @@ -15534,7 +15534,7 @@ "par_idN10AA6\n" "help.text" msgid "By default, the Follow text flow option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)." -msgstr "当您使用 OpenOffice.org 2.0 之前的Writer版本打开文档时,跟随文本流选项默认是被选定的。但是,当您创建或者打开 Microsoft Word 格式 (*.doc) 的文档时该选项不会被选定。" +msgstr "当您打开 OpenOffice.org 2.0 之前的 Writer 版本创建的文档时,「跟随文字流」选项会默认选中。但是,当您创建或者打开 Microsoft Word 格式 (*.doc) 的文档时该选项不会选中。" #: 05060100.xhp msgctxt "" @@ -17446,7 +17446,7 @@ "hd_id3145776\n" "help.text" msgid "Text flow" -msgstr "换行和分页" +msgstr "文字流" #: 05060900.xhp msgctxt "" @@ -17454,7 +17454,7 @@ "par_id3151374\n" "help.text" msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list." -msgstr "指定框架中首选的文字流方向。要使用页面的默认文字方向设置,请从列表中选择沿用现有的文字方向的设置" +msgstr "指定框架中首选的文字流方向。要使用页面默认的文字流设置,请从列表中选择「沿用上级对象的设置」。" #: 05060900.xhp msgctxt "" @@ -18086,7 +18086,7 @@ "tit\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: 05090300.xhp msgctxt "" @@ -18094,7 +18094,7 @@ "bm_id3154558\n" "help.text" msgid "tables;text flow around text tablestext flow;around text tablescolumns; breaks in text tablesrow breaks in text tablestables; allowing page breakspage breaks; tablessplitting tables;row breaks" -msgstr "表格; 环绕在文本表格周围的文字方向文字方向; 环绕在文本表格周围列; 文本表格中的分栏文本表格中的换行表格; 允许分页分页; 表格拆分表格; 换行" +msgstr "表格; 文本表格周围的文字流文字流; 文本表格周围列; 文本表格中的分栏文本表格中的换行表格; 允许分页符分页; 表格拆分表格; 换行" #: 05090300.xhp msgctxt "" @@ -18102,7 +18102,7 @@ "hd_id3154558\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: 05090300.xhp msgctxt "" @@ -18110,7 +18110,7 @@ "par_id3145245\n" "help.text" msgid "Set the text flow options for the text before and after the table." -msgstr "为表格前后的文字设置换行和分页选项。" +msgstr "为表格前后的文字设置文字流选项。" #: 05090300.xhp msgctxt "" @@ -18118,7 +18118,7 @@ "hd_id3153920\n" "help.text" msgid "Text flow" -msgstr "换行和分页" +msgstr "文字流" #: 05090300.xhp msgctxt "" @@ -20942,7 +20942,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: 06030000.xhp msgctxt "" @@ -20950,7 +20950,7 @@ "hd_id3154657\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: 06030000.xhp msgctxt "" @@ -20958,7 +20958,7 @@ "par_id3148572\n" "help.text" msgid "Inserts hyphens in words that are too long to fit at the end of a line. $[officename] searches the document and suggests hyphenation that you can accept or reject. If text is selected, the Hyphenation dialog works on the selected text only. If no text is selected, the Hyphenation dialog works on the whole document." -msgstr "在行结尾处过长的单词中插入连字符。 $[officename] 将对文档进行查找,并建议您插入连字符,您可以接受或拒绝。如果选定了文字,“连字符”对话框只作用于选定的文字。如果没有选定文字,“连字符”对话框作用于整篇文档。" +msgstr "在行结尾处过长的单词中间插入连字符。 $[officename] 将查找文档,并推荐断词方案,您可以接受或拒绝。如果选中了文字,「断词」对话框只作用于选中文字。如果没有选中文字,「断词」对话框作用于整篇文档。" #: 06030000.xhp msgctxt "" @@ -20966,7 +20966,7 @@ "par_id3153811\n" "help.text" msgid "To automatically hyphenate the current or selected paragraphs, choose Format - Paragraph, and then click the Text Flow tab. You can also apply automatic hyphenation to a paragraph style. In text where automatic hyphenation is enabled, the Hyphenation dialog will not find any word to hyphenate." -msgstr "要在当前段落或选定段落中自动加入连字符,请选择格式 - 段落,然后单击 换行和分页选项卡。也可以在段落样式中应用自动断字。在启用自动断字的文字中,“连字符”对话框不查找任何需要断字的单词。" +msgstr "要在当前段落或选定段落中自动加入连字符,请选择「格式 - 段落」,然后单击 文字流选项卡。也可以在段落样式中应用自动断词。在启用自动断词的文字中,「断词」对话框不查找任何需要断词的单词。" #: 06030000.xhp msgctxt "" @@ -20974,7 +20974,7 @@ "par_id3151389\n" "help.text" msgid "When $[officename] finds a word that requires hyphenation, do one of the following options:" -msgstr "当 $[officename] 发现需要添加连字符的词时,请执行以下操作之一:" +msgstr "当 $[officename] 发现需要断词的字词时,请执行以下操作之一:" #: 06030000.xhp msgctxt "" @@ -20982,7 +20982,7 @@ "par_id3155622\n" "help.text" msgid "To accept the hyphenation of the displayed word, click Hyphenate." -msgstr "要接受显示单词的断字,请单击断字。" +msgstr "要接受显示单词的断词,请点击「断词」。" #: 06030000.xhp msgctxt "" @@ -20990,7 +20990,7 @@ "par_id3154558\n" "help.text" msgid "To change the hyphenation of the displayed word, click the left or right arrow below the word, and then click Hyphenate. The left and right buttons are enabled for words with multiple hyphenation points." -msgstr "要更改显示单词的断字,请单击单词下面的左箭头或右箭头,然后单击断字。左和右按钮针对有多个断字地方的单词启用。" +msgstr "要更改显示单词的断词,请单击单词下方的左箭头或右箭头,然后点击「断词」。左右按钮对有多个断词点的单词启用。" #: 06030000.xhp msgctxt "" @@ -20998,7 +20998,7 @@ "par_id3150017\n" "help.text" msgid "To reject the hyphenation of the displayed word, click Skip. This word will not be hyphenated." -msgstr "要拒绝显示单词的断字,请单击忽略。该单词不进行断字。" +msgstr "要拒绝显示单词的断词,请点击「忽略」。该单词将不进行断词。" #: 06030000.xhp msgctxt "" @@ -21006,7 +21006,7 @@ "par_id3150018\n" "help.text" msgid "To automatically hyphenate the remaining part of the selection or the document, click Hyphenate All and answer \"Yes\" to the following question." -msgstr "要对选定范围或文档的剩余部分进行自动断字,请单击全部断字,并对后面问题回答“是”。" +msgstr "要对选定范围或文档的剩余部分进行自动断词,请单击「全部断词」,并对接下来的问题回答「是」。" #: 06030000.xhp msgctxt "" @@ -21014,7 +21014,7 @@ "par_id3150019\n" "help.text" msgid "To end hyphenation, click Close. The hyphenation that is applied already will not be reverted. You can use Edit - Undo to undo all hyphenation that was applied while the Hyphenation dialog was open." -msgstr "要终止断字,请单击关闭。已经应用的断字将不能恢复。在“断字”对话框打开时,您可以使用编辑 - 撤销来撤销应用的所有断字。" +msgstr "要终止断词,请点击「关闭」。已经应用的断词处理将无法撤销。在「断词」对话框打开时,您可以使用「编辑 - 撤销」来撤销所有已应用的断词。" #: 06030000.xhp msgctxt "" @@ -21022,7 +21022,7 @@ "par_id3147562\n" "help.text" msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose Format - Paragraph, click the Text Flow tab, and then clear the Automatically check box in the Hyphenation area." -msgstr "要使段落不进行自动断字,请选定这些段落,选择格式 - 段落,单击“换行和分页”选项卡,然后取消选择“断字”区域的自动复选框。" +msgstr "要使段落不进行自动断词,请选中这些段落,选择「格式 - 段落」,单击「文字流」选项卡,然后取消选择「断词」区域的「自动」复选框。" #: 06030000.xhp msgctxt "" @@ -21030,7 +21030,7 @@ "par_id3154276\n" "help.text" msgid "To disable the Hyphenation dialog and always hyphenate automatically, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Writing Aids, and select the Hyphenate without inquiry check box." -msgstr "" +msgstr "要禁用「断词」对话框且始终自动断词,请选择「%PRODUCTNAME - 偏好设置工具 - 选项 - 语言设置 - 语言辅助」,并选中「自动断词」复选框。" #: 06030000.xhp msgctxt "" @@ -21078,7 +21078,7 @@ "par_id3149687\n" "help.text" msgid "Displays the hyphenation suggestion(s) for the selected word." -msgstr "显示选中单词的连字符建议。" +msgstr "显示选中单词的断词建议。" #: 06030000.xhp msgctxt "" @@ -21094,7 +21094,7 @@ "par_id3155174\n" "help.text" msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed." -msgstr "请设置连字符位置。该选项仅当显示多余一个连字符建议时可用。" +msgstr "请设置连字符位置。该选项仅当显示多个断词建议时可用。" #: 06030000.xhp msgctxt "" @@ -21110,7 +21110,7 @@ "par_id3149306\n" "help.text" msgid "Ignores the hyphenation suggestion and finds the next word to hyphenate." -msgstr "忽略连字符建议,查找下一个需要连接的单词。" +msgstr "忽略断词建议,查找下一个需要断词的字词。" #: 06030000.xhp msgctxt "" @@ -21118,7 +21118,7 @@ "hd_id3149495\n" "help.text" msgid "Hyphenate" -msgstr "断字" +msgstr "断词" #: 06030000.xhp msgctxt "" @@ -21142,7 +21142,7 @@ "par_id3149821\n" "help.text" msgid "Removes the current hyphenation point from the displayed word." -msgstr "从显示的单词中移除当前连字点。" +msgstr "从显示的单词中移除当前断词点。" #: 06040000.xhp msgctxt "" @@ -22966,7 +22966,7 @@ "tit\n" "help.text" msgid "All Indexes and Tables" -msgstr "所有索引和目录" +msgstr "所有索引与目录" #: 06170000.xhp msgctxt "" @@ -22974,7 +22974,7 @@ "hd_id3149875\n" "help.text" msgid "All Indexes and Tables" -msgstr "所有索引和目录" +msgstr "所有索引与目录" #: 06170000.xhp msgctxt "" @@ -22982,7 +22982,7 @@ "par_id3150211\n" "help.text" msgid "Update all indexes and tables of contents in the current document. You do not need to place the cursor in an index or table before you use this command." -msgstr "更新当前文档中的所有索引和目录。使用此命令之前不必将光标放置在索引或目录中。" +msgstr "更新当前文档中的所有索引与目录。使用此命令之前不必将光标放置在索引或目录中。" #: 06180000.xhp msgctxt "" @@ -23126,7 +23126,7 @@ "par_id3151272\n" "help.text" msgid "Enter the counting interval for the line numbers." -msgstr "请输入行号每次自增的大小。" +msgstr "请输入行号每次增加的间隔量。" #: 06180000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/02.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/02.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/02.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-03-13 12:11+0100\n" -"PO-Revision-Date: 2016-05-25 06:42+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2019-01-21 06:26+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1464158573.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548051985.000000\n" #: 02110000.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_id3155903\n" "help.text" msgid "Icon" -msgstr "图标" +msgstr "图标" #: 03220000.xhp msgctxt "" @@ -3078,7 +3078,7 @@ "par_id3151177\n" "help.text" msgid "Icon" -msgstr "图标" +msgstr "图标" #: 18120000.xhp msgctxt "" @@ -3094,7 +3094,7 @@ "tit\n" "help.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "直接光标定位模式" #: 18130000.xhp msgctxt "" @@ -3110,7 +3110,7 @@ "hd_id3147167\n" "help.text" msgid "Direct Cursor Mode" -msgstr "打开/关闭直接定位光标" +msgstr "直接光标定位模式" #: 18130000.xhp msgctxt "" @@ -3142,7 +3142,7 @@ "par_id3151310\n" "help.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "切换直接光标定位模式" #: 18130000.xhp msgctxt "" @@ -3254,7 +3254,7 @@ "par_id3151171\n" "help.text" msgid "Icon" -msgstr "图标" +msgstr "图标" #: 19030000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/04.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/04.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/04.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/04.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-05 11:28+0200\n" -"PO-Revision-Date: 2018-02-12 13:50+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 05:58+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1518443445.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547791091.000000\n" #: 01020000.xhp msgctxt "" @@ -822,7 +822,7 @@ "par_id3150712\n" "help.text" msgid "Soft hyphens; hyphenation set by you." -msgstr "自定义连字符; 您设置的连字符。" +msgstr "软连字符; 用户设置的断词。" #: 01020000.xhp msgctxt "" @@ -838,7 +838,7 @@ "par_id3148394\n" "help.text" msgid "Non-breaking hyphen (is not used for hyphenation)" -msgstr "不间断划线(不是用于连字符)" +msgstr "不间断连字符 (不用于断词)" #: 01020000.xhp msgctxt "" @@ -870,7 +870,7 @@ "par_id3150260\n" "help.text" msgid "Non-breaking spaces. Non-breaking spaces are not used for hyphenation and are not expanded if the text is justified." -msgstr "不间断空格。不间断空格不能用于断字,在调整文字时也不会扩展。" +msgstr "不间断空格。不间断空格不用于断词,在文字两端对齐时也不会伸展。" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter/guide.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-02-22 23:49+0000\n" -"Last-Translator: Playhi <000902play@gmail.com>\n" +"PO-Revision-Date: 2019-01-24 12:05+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1519343399.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548331543.000000\n" #: anchor_object.xhp msgctxt "" @@ -3054,7 +3054,7 @@ "par_id3155879\n" "help.text" msgid "You can set up fields in your document that display text when a condition that you define is met. For example, you can define the conditional text that is displayed in a series of reminder letters." -msgstr "您可以设置文档中的字段,使其在符合您定义的条件时显示文字。例如,您可以定义在一系列标记信函中显示有条件的文字。" +msgstr "您可以设置文档中的字段,使其在符合您定义的条件时显示文字。例如,您可以定义在一系列提醒信函中有条件显示的文字。" #: conditional_text.xhp msgctxt "" @@ -3102,7 +3102,7 @@ "par_id3147784\n" "help.text" msgid "Type a name for the variable in the Name box, for example Reminder." -msgstr "在名称框中键入变量的名称,例如标记。" +msgstr "在「名称」框中键入变量的名称,例如「提醒」。" #: conditional_text.xhp msgctxt "" @@ -3166,7 +3166,7 @@ "par_id3155936\n" "help.text" msgid "Type Reminder EQ \"3\" in the Condition box. In other words, the conditional text will be displayed when the variable in the field that you defined in the first part of this example is equal to three." -msgstr "在条件框中键入标记 EQ \"3\"。换句话说,当示例第一部分定义的字段中的变量等于 3 时,将显示有条件的文字。" +msgstr "将「提醒 EQ \"3\"」输入到「条件」框中。换句话说,当本示例第一部分定义的字段中的变量等于 3 时,将显示有条件的文字。" #: conditional_text.xhp msgctxt "" @@ -5758,7 +5758,7 @@ "par_id3147124\n" "help.text" msgid "Click the Text Flow tab." -msgstr "单击文字方向 选项卡。" +msgstr "点击「文字流」选项卡。" #: globaldoc_howtos.xhp msgctxt "" @@ -6766,7 +6766,7 @@ "tit\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "防止对特定的字使用连字符" +msgstr "防止对特定字词断词" #: hyphen_prevent.xhp msgctxt "" @@ -6774,7 +6774,7 @@ "bm_id3149695\n" "help.text" msgid "hyphenation;preventing for specific words words;wrapping/not wrapping in text switching off;hyphenation for specific words" -msgstr "连字符; 禁止用于特定的文字文字; 在文本中环绕/不环绕关闭; 特定文字的连字符" +msgstr "断词; 禁止用于特定的字词文字; 在文本中环绕/不环绕关闭; 特定文字断词" #: hyphen_prevent.xhp msgctxt "" @@ -6782,7 +6782,7 @@ "hd_id3149695\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "禁止对特定字应用连字符" +msgstr "防止对特定字词断词" #: hyphen_prevent.xhp msgctxt "" @@ -6790,7 +6790,7 @@ "par_id5640125\n" "help.text" msgid "If your text is automatically hyphenated and certain hyphenated words look ugly, or if you want specific words never to be hyphenated you can switch off hyphenation for those words:" -msgstr "如果文本是自动带有连字符的和某些带连字符的不易读的文字,或者如果您想要特定的文字不带有连字符,可以关闭这些文字的连字符功能:" +msgstr "如果文本经过自动断词,且某些断词后的字词难以阅读,或者如果您希望特定字词不被断词,可以关闭这些字词的断词功能:" #: hyphen_prevent.xhp msgctxt "" @@ -6822,7 +6822,7 @@ "par_id3150218\n" "help.text" msgid "In the Word box, type the word you want to exclude from hyphenation, followed by an equal sign (=), for example, \"pretentious=\"." -msgstr "在框中,键入禁止用连字符连接的字,并以等号 (=) 结尾,例如 \"pretentious=\"。" +msgstr "在「单词」框中,键入希望排除断词的字词,并以等号 (=) 结尾,例如「pretentious=」。" #: hyphen_prevent.xhp msgctxt "" @@ -6838,7 +6838,7 @@ "par_id3147036\n" "help.text" msgid "To quickly exclude a word from hyphenation, select the word, choose Format - Character, click the Font tab, and select \"None\" in the Language box." -msgstr "要快速禁止用连字符连接某个字,请选择该字,然后选择格式 - 字符,单击字体选项卡,从语言框中选择“无”。" +msgstr "要快速将某个单词排除断词,请选择该词,然后选择「格式 - 字符」,点击「字体」选项卡,并在「语言」框中选择「无」。" #: hyphen_prevent.xhp msgctxt "" @@ -6846,7 +6846,7 @@ "par_id0302200910262761\n" "help.text" msgid "Some words contain special characters that %PRODUCTNAME treats as a hyphen. If you do not want such words to be hyphenated, you can insert a special code that prevents hyphenation at the position where the special code is inserted. Proceed as follows:" -msgstr "某些字包含特殊字符,%PRODUCTNAME 将其视为连字符处理。如果你不想在这些字中使用连字符,可在该相应位置插入特殊符号以避免连字符产生。过程如下:" +msgstr "某些单词包含特殊字符,%PRODUCTNAME 将其视为连字符处理。如果你不希望这类单词被断词,可在特殊字符的位置插入特殊代码以避免断词。过程如下:" #: hyphen_prevent.xhp msgctxt "" @@ -6862,7 +6862,7 @@ "par_id0302200910262837\n" "help.text" msgid "Position the cursor at the place where no hyphenation should occur." -msgstr "将光标点到连字符不应出现的位置。" +msgstr "将光标移动到断词不应发生的位置。" #: hyphen_prevent.xhp msgctxt "" @@ -6886,7 +6886,7 @@ "par_id3154361\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: indenting.xhp msgctxt "" @@ -6990,7 +6990,7 @@ "tit\n" "help.text" msgid "Editing or Deleting Index and Table Entries" -msgstr "编辑或删除索引和目录条目" +msgstr "编辑或删除索引与目录条目" #: indices_delete.xhp msgctxt "" @@ -7006,7 +7006,7 @@ "hd_id3155186\n" "help.text" msgid "Editing or Deleting Index and Table Entries" -msgstr "编辑或删除索引和目录条目" +msgstr "编辑或删除索引与目录条目" #: indices_delete.xhp msgctxt "" @@ -7062,7 +7062,7 @@ "tit\n" "help.text" msgid "Updating, Editing and Deleting Indexes and Tables of Contents" -msgstr "更新、编辑和删除索引和目录" +msgstr "更新、编辑和删除索引与目录" #: indices_edit.xhp msgctxt "" @@ -7078,7 +7078,7 @@ "hd_id3149695\n" "help.text" msgid "Updating, Editing and Deleting Indexes and Tables of Contents" -msgstr "更新、编辑和删除索引和目录" +msgstr "更新、编辑和删除索引与目录" #: indices_edit.xhp msgctxt "" @@ -7254,7 +7254,7 @@ "bm_id3155855\n" "help.text" msgid "indexes; formatting editing; index format tables of contents; formatting entries; in tables of contents, as hyperlinks tables of contents; hyperlinks as entries hyperlinks; in tables of contents and indexes formatting;indexes and tables of contents" -msgstr "索引; 格式编辑; 索引格式目录; 格式条目; 在目录中, 作为超链接目录; 超链接作为条目超链接; 在目录和索引中格式; 索引和目录" +msgstr "索引; 格式编辑; 索引格式目录; 格式条目; 在目录中, 作为超链接目录; 超链接作为条目超链接; 在目录与索引中格式; 索引与目录" #: indices_form.xhp msgctxt "" @@ -7454,7 +7454,7 @@ "par_id3150223\n" "help.text" msgid "Set the formatting options for the index, either on the current tab, or on any of the other tabs of this dialog. For example, if you want to use single letter headings in your index, click the Entries tab, and then select Alphabetical delimiter. To change the formatting of levels in the index, click the Styles tab." -msgstr "在此对话框的当前选项卡或其他选项卡中,设置索引的格式化选项。例如,如果要在索引中使用单字母标题,请单击条目选项卡,然后选择字母分隔符。要修改索引中各个级别的格式,请单击样式选项卡。" +msgstr "在此对话框的各选项卡中,设置索引的格式选项。例如,要想在索引中使用单字母标题,请单击「条目」选项卡,然后选择「字母顺序分隔符」。要修改索引中各个级别的格式,请单击「样式」选项卡。" #: indices_index.xhp msgctxt "" @@ -7486,7 +7486,7 @@ "tit\n" "help.text" msgid "Creating a Bibliography" -msgstr "创建文献目录" +msgstr "创建参考文献" #: indices_literature.xhp msgctxt "" @@ -7494,7 +7494,7 @@ "bm_id3149687\n" "help.text" msgid "indexes;creating bibliographies databases;creating bibliographies bibliographies entries;bibliographies storing bibliographic information" -msgstr "索引; 创建文献目录数据库; 创建文献目录文献目录条目; 文献目录保存文献目录信息" +msgstr "索引;创建参考文献 数据库;创建参考文献 参考文献 条目;参考文献 存储参考文献信息" #: indices_literature.xhp msgctxt "" @@ -7502,7 +7502,7 @@ "hd_id3149687\n" "help.text" msgid "Creating a Bibliography" -msgstr "创建文献目录" +msgstr "创建参考文献" #: indices_literature.xhp msgctxt "" @@ -7510,7 +7510,7 @@ "par_id3155864\n" "help.text" msgid "A bibliography is a list of works that you reference in a document." -msgstr "文献目录是指您在文档中引用的著作的列表。" +msgstr "参考文献是您在文档中引用的著作的列表。" #: indices_literature.xhp msgctxt "" @@ -7518,7 +7518,7 @@ "hd_id3153402\n" "help.text" msgid "Storing Bibliographic Information" -msgstr "保存文献目录信息" +msgstr "存储参考文献信息" #: indices_literature.xhp msgctxt "" @@ -7526,7 +7526,7 @@ "par_id3153414\n" "help.text" msgid "$[officename] stores bibliographic information in a bibliography database, or in an individual document." -msgstr "在 $[officename] 中,文献目录信息保存在文献数据库或单独的文档中。" +msgstr "在 $[officename] 中,参考文献信息存储在参考文献数据库或各文档中。" #: indices_literature.xhp msgctxt "" @@ -7558,7 +7558,7 @@ "par_id3147123\n" "help.text" msgid "Type a name for the bibliography entry in the Short name box, and then add additional information to the record in the remaining boxes." -msgstr "在 简短说明文框中键入文献条目条目的名称,并通过其余的框将其他信息添加到记录中。" +msgstr "在「简称」框中键入参考文献条目的名称,并在其余框中添加该记录的其他信息。" #: indices_literature.xhp msgctxt "" @@ -7574,7 +7574,7 @@ "hd_id3150242\n" "help.text" msgid "To Store Bibliographic Information in an Individual Document" -msgstr "将文献目录信息保存在独立的文档中" +msgstr "将参考文献信息储存在单个文档中" #: indices_literature.xhp msgctxt "" @@ -7590,7 +7590,7 @@ "par_id3150964\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Bibliography Entry." -msgstr "选择插入 - 索引和目录 - 文献目录条目。" +msgstr "选择「插入 - 目录与索引 - 参考文献条目」。" #: indices_literature.xhp msgctxt "" @@ -7606,7 +7606,7 @@ "par_id3153738\n" "help.text" msgid "Type a name for the bibliography entry in the Short name box." -msgstr "在简短说明文框中键入文献目录条目的名称。" +msgstr "在「简称」框中键入参考文献条目的名称。" #: indices_literature.xhp msgctxt "" @@ -7630,7 +7630,7 @@ "par_id3146897\n" "help.text" msgid "In the Insert Bibliography Entry dialog, click Insert, and then Close." -msgstr "在插入文献目录条目对话框中,单击插入,然后单击关闭。" +msgstr "在「插入参考文献条目」对话框中,单击「插入」,然后单击「关闭」。" #: indices_literature.xhp msgctxt "" @@ -7638,7 +7638,7 @@ "hd_id3150741\n" "help.text" msgid "Inserting Bibliography Entries From the Bibliography Database" -msgstr "从文献数据库插入文献目录条目" +msgstr "从参考文献数据库插入参考文献条目" #: indices_literature.xhp msgctxt "" @@ -7654,7 +7654,7 @@ "par_id3148421\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Bibliography Entry." -msgstr "选择插入 - 索引和目录 - 文献目录条目。" +msgstr "选择「插入 - 目录与索引 - 参考文献条目」。" #: indices_literature.xhp msgctxt "" @@ -7670,7 +7670,7 @@ "par_id3147059\n" "help.text" msgid "Select the name of the bibliography entry that you want to insert in the Short name box." -msgstr "在短名称框中选择要插入的书目项的名称。" +msgstr "在「简称」框中选择希望插入的参考文献条目的名称。" #: indices_literature.xhp msgctxt "" @@ -7870,7 +7870,7 @@ "par_id3147066\n" "help.text" msgid "Choose Tools - Update - All Indexes and Tables." -msgstr "选择工具 - 更新 - 全部索引和目录。" +msgstr "选择「工具 - 更新 - 所有索引与目录」。" #: indices_userdef.xhp msgctxt "" @@ -7926,7 +7926,7 @@ "par_id3153410\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Index Entry." -msgstr "选择插入 - 索引和目录 - 文献目录条目。" +msgstr "选择「插入 - 目录与索引 - 索引项」。" #: indices_userdef.xhp msgctxt "" @@ -8862,7 +8862,7 @@ "hd_id3145083\n" "help.text" msgid "Table of Contents, Index" -msgstr "内容目录,索引" +msgstr "目录, 索引" #: main.xhp msgctxt "" @@ -8894,7 +8894,7 @@ "hd_id3154324\n" "help.text" msgid "Spelling, Dictionaries, Hyphenation" -msgstr "拼写检查,词典,连字符断字规则" +msgstr "拼写检查,词典,断词规则" #: main.xhp msgctxt "" @@ -9702,7 +9702,7 @@ "par_id3156254\n" "help.text" msgid "Click the Text Flow tab." -msgstr "单击文字方向选项卡。" +msgstr "点击「文字流」标签页。" #: page_break.xhp msgctxt "" @@ -10062,7 +10062,7 @@ "par_id2632831\n" "help.text" msgid "Choose Format - Paragraph - Text flow." -msgstr "选择格式 - 段落 - 换行和分页。" +msgstr "选择「格式 - 段落 - 文字流」。" #: pagenumbers.xhp msgctxt "" @@ -10070,7 +10070,7 @@ "par_id4395275\n" "help.text" msgid "In the Breaks area, enable Insert. Enable With Page Style just to be able to set the new Page number. Click OK." -msgstr "在“换行和分页”区域中,启用插入。只启用使用页面样式以便设置新的页码。单击确定。" +msgstr "在「换行符」区域,启用「插入」。启用「使用页面样式」以便设置新的「页码」。单击「确定」。" #: pagenumbers.xhp msgctxt "" @@ -10166,7 +10166,7 @@ "par_id291451\n" "help.text" msgid "A manually inserted page break can be applied without or with a change of page styles." -msgstr "可以应用手动插入的分页符,而无需修改页面样式,也可以对其进行修改。" +msgstr "可以应用手动插入的分页符,页面样式可以修改也可以不修改。" #: pagenumbers.xhp msgctxt "" @@ -10182,7 +10182,7 @@ "par_id5947141\n" "help.text" msgid "If you choose Insert - Manual break, you can insert a page break without or with a change of style or with a change of page number." -msgstr "如果选择插入 - 手动分页符,您可以插入分页符,而无需修改样式或页码,也可以对其进行修改。" +msgstr "如果选择「插入 - 手动分页符」,您可以插入分页符,样式或页码可以修改也可以不修改。" #: pagenumbers.xhp msgctxt "" @@ -10526,7 +10526,7 @@ "par_id6670125\n" "help.text" msgid "A one page long style starts from the lower border of the current page style range up to the next page break. The next page break appears automatically when the text flows to the next page, which is sometimes called a \"soft page break\". Alternatively, you can insert a manual page break." -msgstr "一个单页样式从当前页面样式区域的下边框开始,直到下一个分页符。当文本流延续到下一页时,下一个分页符会自动显示,有时候这被称为一个“软分页符”。另外,您可以插入一个手动分页符。" +msgstr "单页长样式从当前页面样式区域的下边框开始,直到下一个分页符。当文字流延续到下一页时,下一个分页符会自动显示,有时候这被称为「软分页符」。您还可以插入手动分页符。" #: pageorientation.xhp msgctxt "" @@ -10574,7 +10574,7 @@ "par_id1811578\n" "help.text" msgid "To insert a \"page break with style\" at the cursor position, choose Insert - Manual Break, select a Style name from the listbox, and click OK." -msgstr "要在光标位置插入一个“带样式的分页符”,选择插入 - 手动分页,从列表框中选择一个样式名称,然后单击 “确定”。" +msgstr "要在光标位置插入一个「带样式的分页符」,选择「插入 - 手动分页」,从列表框中选择一个「样式」名称,然后单击「确定」。" #: pageorientation.xhp msgctxt "" @@ -10590,7 +10590,7 @@ "par_id4753868\n" "help.text" msgid "To apply the \"page break with style\" property to the current paragraph style, right-click the current paragraph. Choose Edit Paragraph Style from the context menu. Click the Text Flow tab. In the Breaks area, activate Enable and With Page Style. Select a page style name from the listbox." -msgstr "要将“带样式的分页符”属性应用到当前段落样式,在当前段落上单击鼠标右键。从上下文菜单中选择编辑段落样式。单击文字方向选项卡。在“分页”区域,激活启用使用页面样式,在列表框内选择一个页面样式的名称。" +msgstr "要将「带样式的分页符」属性应用到当前段落样式,请在当前段落上单击鼠标右键。从上下文菜单中选择「编辑段落样式」。单击「文字流」选项卡。在「换行符」区域,激活「启用」和「使用页面样式」,在列表框内选择一个页面样式的名称。" #: pageorientation.xhp msgctxt "" @@ -10598,7 +10598,7 @@ "par_id4744407\n" "help.text" msgid "To apply the \"page break with style\" property to an arbitrary paragraph style, choose View - Styles. Click the Paragraph Styles icon. Right-click the name of the paragraph style you want to modify and choose Modify. Click the Text Flow tab. In the Breaks area, activate Enable and With Page Style. Select a page style name from the listbox." -msgstr "" +msgstr "要将「带样式的分页符」属性应用到任意段落样式,请选择「视图 - 样式」。点击「段落样式」图标。在您想要修改的段落样式名称上点击右键,然后选择「修改」。点击「文字流」选项卡。在「换行符」区域,激活「启用」和「使用页面样式」。在列表框内选择一个页面样式的名称。" #: pagestyles.xhp msgctxt "" @@ -13134,7 +13134,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 "" +msgstr "要检查一段文本的拼写与语法,必须安装相应的词典。很多语言有三种不同的词典:拼写检查词典、断词词典,以及同义词词典。每套词典只涉及一种语言。语法检查器可作为扩展下载安装。请参见 扩展网页。" #: spellcheck_dialog.xhp msgctxt "" @@ -15214,7 +15214,7 @@ "bm_id3149487\n" "help.text" msgid "text frames; inserting/editing/linking editing;text frames inserting;text frames resizing;text frames, by mouse scaling; text frames, by mouse links;text frames text flow; from frame to frame frames; linking printing;hiding text frames from printing" -msgstr "文本框; 插入/编辑/链接编辑; 文本框插入; 文本框调整大小; 文本框,通过鼠标缩放; 文本框,通过鼠标链接; 文本框文本流; 从框架到框架框架; 链接打印; 隐藏文本框以避免打印" +msgstr "文本框; 插入/编辑/链接编辑; 文本框插入; 文本框调整大小; 文本框,通过鼠标缩放; 文本框,通过鼠标链接; 文本框文字流; 从框架到框架框架; 链接打印; 隐藏文本框以避免打印" #: text_frame.xhp msgctxt "" @@ -15950,7 +15950,7 @@ "tit\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: using_hyphen.xhp msgctxt "" @@ -15958,7 +15958,7 @@ "bm_id3149695\n" "help.text" msgid "hyphenation;manual/automatic separation, see hyphenation automatic hyphenation in text manual hyphenation in text" -msgstr "连字符; 手动/自动分隔符, 请参见连字符文本中的自动连字符文本中的手动连字符" +msgstr "断词; 手动/自动分隔, 参见断词文本自动断词文本手动断词" #: using_hyphen.xhp msgctxt "" @@ -15966,7 +15966,7 @@ "hd_id3149695\n" "help.text" msgid "Hyphenation" -msgstr "断字" +msgstr "断词" #: using_hyphen.xhp msgctxt "" @@ -15974,7 +15974,7 @@ "par_id3155918\n" "help.text" msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior:" -msgstr "在默认情况下,$[officename] 会将一行中放不下的字移到下一行。但如果需要,可以使用自动或手动断字来避开以上默认操作:" +msgstr "在默认情况下,$[officename] 会将一行放不下的单词移到下一行。如果需要,可以使用自动或手动断词避免该行为:" #: using_hyphen.xhp msgctxt "" @@ -15982,7 +15982,7 @@ "hd_id3155864\n" "help.text" msgid "Automatic Hyphenation" -msgstr "自动断字" +msgstr "自动断词" #: using_hyphen.xhp msgctxt "" @@ -15990,7 +15990,7 @@ "par_id3147414\n" "help.text" msgid "Automatic hyphenation inserts hyphens where they are needed in a paragraph. This option is only available for paragraph styles and individual paragraphs." -msgstr "自动断字会在段落中需要的位置插入连字符。此选项仅适用于段落样式和单独的段落。" +msgstr "自动断词会在段落中需要的位置插入连字符。此选项仅适用于段落样式和单独的段落。" #: using_hyphen.xhp msgctxt "" @@ -16014,7 +16014,7 @@ "par_id3156104\n" "help.text" msgid "Click the Text Flow tab." -msgstr "单击换行和分页选项卡。" +msgstr "点击「文字流」选项卡。" #: using_hyphen.xhp msgctxt "" @@ -16022,7 +16022,7 @@ "par_id3150101\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "在“断字”区域中,选中“自动”复选框。" +msgstr "在「断词」区域,选中「自动」复选框。" #: using_hyphen.xhp msgctxt "" @@ -16054,7 +16054,7 @@ "par_id3149956\n" "help.text" msgid "For example, enable the automatic hyphenation option for the \"Default\" paragraph style, and then apply the style to the paragraphs that you want to hyphenate." -msgstr "例如,启用“默认”段落样式中的自动断字选项,然后将此样式应用到要使用连字符的段落。" +msgstr "例如,启用「默认」段落样式的自动断词选项,然后将此样式应用到希望断词的段落。" #: using_hyphen.xhp msgctxt "" @@ -16078,7 +16078,7 @@ "par_id3145106\n" "help.text" msgid "Click the Text Flow tab." -msgstr "单击“文字方向”选项卡。" +msgstr "单击「文字流」选项卡。" #: using_hyphen.xhp msgctxt "" @@ -16086,7 +16086,7 @@ "par_id3149582\n" "help.text" msgid "In the Hyphenation area, select the Automatically check box." -msgstr "在断字区域中,选中自动复选框。" +msgstr "在「断词」区域,选中「自动」复选框。" #: using_hyphen.xhp msgctxt "" @@ -16110,7 +16110,7 @@ "hd_id3145417\n" "help.text" msgid "Manual Hyphenation" -msgstr "手动连字符" +msgstr "手动断词" #: using_hyphen.xhp msgctxt "" @@ -16118,7 +16118,7 @@ "par_id3154400\n" "help.text" msgid "You can insert a hyphen where you want on a line, or let $[officename] search for the words to hyphenate, and then offer a suggested hyphenation." -msgstr "您可以在行中需要的位置手动插入连字符,也可以让 $[officename] 查找需要用连字符连接的字,并提供建议的断字。" +msgstr "您可以在行中需要的位置手动插入连字符,也可以让 $[officename] 查找需要断词的单词,并提供断词建议。" #: using_hyphen.xhp msgctxt "" @@ -16142,7 +16142,7 @@ "par_id3154244\n" "help.text" msgid "If you insert a manual hyphen in a word, the word is only hyphenated at the manual hyphen. No additional automatic hyphenation is applied for this word. A word with a manual hyphen will be hyphenated without regard to the settings on the Text Flow tab page." -msgstr "如果在字中手动插入连字符,则仅在手动插入的位置用连字符连接该字,而不会在该字中的其他位置应用自动断字。使用手动连字符连接字与换行和分页选项卡上的设置无关。" +msgstr "如果在单词中手动插入连字符,则仅在手动插入连字符的位置断开该单词,而不会在该单词中的其他位置应用自动断词。使用手动连字符的单词将自动断词,而不考虑「文字流」选项卡上的设置。" #: using_hyphen.xhp msgctxt "" @@ -16166,7 +16166,7 @@ "par_id3155886\n" "help.text" msgid "Choose Tools - Language - Hyphenation." -msgstr "选择工具 - 语言 - 连字符。" +msgstr "选择「工具 - 语言 - 断词」。" #: using_hyphen.xhp msgctxt "" @@ -16174,7 +16174,7 @@ "par_id3154361\n" "help.text" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: using_numbered_lists.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/helpcontent2/source/text/swriter.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/helpcontent2/source/text/swriter.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-02 00:14+0200\n" -"PO-Revision-Date: 2018-03-03 13:50+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-24 12:04+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520085024.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548331496.000000\n" #: classificationbar.xhp msgctxt "" @@ -590,7 +590,7 @@ "hd_id102920150120456626\n" "help.text" msgid "Direct Cursor Mode" -msgstr "直接光标定位" +msgstr "直接光标定位模式" #: main0102.xhp msgctxt "" @@ -630,7 +630,7 @@ "hd_id3147327\n" "help.text" msgid "Index Entry" -msgstr "索引项" +msgstr "索引条目" #: main0102.xhp msgctxt "" @@ -2150,7 +2150,7 @@ "par_id8193914\n" "help.text" msgid "Displays the language for the selected text.
Click to open a menu where you can choose another language for the selected text or for the current paragraph.
Choose None to exclude the text from spellchecking and hyphenation.
Choose Reset to Default Language to re-apply the default language for the selection or the paragraph.
Choose More to open a dialog with more options.
" -msgstr "为选定的文本显示语言。
单击以打开一个菜单,在此您可以为选定的文本或为当前段落选择另一种语言。
选择“无”从拼写检查和连字符中排除选定的文本。
选择“重新设置为默认语言”为选定内容或段落重新应用默认语言。
选择“更多”打开一个带有更多选项的对话框。
" +msgstr "显示选中文本的语言。
点击可打开菜单,您可以为选中文本或当前段落选择其他语言。
选择「无」可从拼写检查和断词排除选中文本。
选择「重置为默认语言」可将默认语言重新应用到选中内容或段落。
选择「更多」可打开带有更多选项的对话框。
" #: main0208.xhp msgctxt "" @@ -2558,7 +2558,7 @@ "par_id3147768\n" "help.text" msgid "$[officename] Writer lets you create both basic documents, such as memos, faxes, letters , resumes and merge documents, as well as long and complex or multi-part documents, complete with bibliographies, reference tables and indexes." -msgstr "$[officename] Writer 可以创建各种常见的文档,如备忘录、传真、信函、简历、合并文档等。您还可以使用文献目录、表格和索引等创建更复杂的文档,以及多章节的文档。" +msgstr "$[officename] Writer 既可以创建各种基本文档,如备忘录、传真、信函、简历和合并文档等,也可以创建又长又复杂的文档或多部分文档,具备参考文献、引用表格以及索引。" #: main0503.xhp msgctxt "" @@ -2566,7 +2566,7 @@ "par_id3147797\n" "help.text" msgid "$[officename] Writer also includes such useful features as a spellchecker, a thesaurus, AutoCorrect, and hyphenation as well as a variety of templates for almost every purpose. You can also create your own templates using the wizards." -msgstr "$[officename] Writer 同时也有许多其他有用的功能,比如 拼写检查、同义词典、自动更正、断词处理等,另有各种用途的模板。您还可以使用向导创建自己的模板。" +msgstr "$[officename] Writer 同时也有许多其他有用的功能,比如 拼写检查、同义词典、自动更正、断词处理等,另有各种用途的模板。您还可以使用向导创建自己的模板。" #: main0503.xhp msgctxt "" @@ -2590,7 +2590,7 @@ "par_id3147272\n" "help.text" msgid "You can also create various indexes and tables in text documents. You can define the structure and appearance of the indexes and tables according to your individual needs. Live hyperlinks and bookmarks let you jump directly to the corresponding items in the text." -msgstr "您也能在文本文档中创建各种索引和目录。您可根据个人需要定义索引和目录的结构和外观。实时的超链接和书签使您可以直接跳到文档中对应的项。" +msgstr "您也可以在文本文档中创建各种索引与目录。您可根据实际需求定义索引与目录的结构与外观。即时超链接与书签允许您直接跳到文档中对应的项目。" #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-04-17 15:54+0200\n" -"PO-Revision-Date: 2018-07-31 08:05+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-20 03:04+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533024305.000000\n" +"X-POOTLE-MTIME: 1547953451.000000\n" #: ActionTe.ulf msgctxt "" @@ -1094,7 +1094,7 @@ "OOO_CONTROL_22\n" "LngText.text" msgid "&Install" -msgstr "安装 (&I)" +msgstr "安装(&I)" #: Control.ulf msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2018-03-06 03:36+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-20 02:18+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1520307416.000000\n" +"X-POOTLE-MTIME: 1547950736.000000\n" #: Options.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_id0503200917103710\n" "help.text" msgid "When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki." -msgstr "猜测变量界限时,此阈值指定初始数值构建边界的偏移。例如这些数值如何计算,请参考 Wiki 中的手册。" +msgstr "猜测可变界限时,此阈值指定初始数值如何变换,以构建边界。关于这些数值如何计算等信息,请参考 wiki 中的手册。" #: Options.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_id0503200917103765\n" "help.text" msgid "If disabled, the currently present values (as given by the user) are inserted in the library as reference point." -msgstr "若 禁用,当前出现的值(用户所给定)将插入库作为参考点。" +msgstr "若 禁用,当前显示值(用户指定)将插入库作为参照点。" #: Options.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-09-10 19:37+0000\n" -"Last-Translator: Voina i Mir \n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2019-01-24 09:01+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1536608220.000000\n" +"X-POOTLE-MTIME: 1548320464.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -689,7 +689,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "断字处理(~H)..." +msgstr "断词(~H)..." #: CalcCommands.xcu msgctxt "" @@ -3353,7 +3353,7 @@ "Label\n" "value.text" msgid "Align Top" -msgstr "顶部对齐" +msgstr "向上对齐" #: CalcCommands.xcu msgctxt "" @@ -3362,7 +3362,7 @@ "Label\n" "value.text" msgid "Align Bottom" -msgstr "底部对齐" +msgstr "向下对齐" #: CalcCommands.xcu msgctxt "" @@ -3398,7 +3398,7 @@ "Label\n" "value.text" msgid "Change Anchor" -msgstr "更改锚定" +msgstr "更改锚点" #: CalcCommands.xcu msgctxt "" @@ -3623,7 +3623,7 @@ "Label\n" "value.text" msgid "Anchor: To P~age" -msgstr "锚定:到页面(~A)" +msgstr "锚点: 到页面(~A)" #: CalcCommands.xcu msgctxt "" @@ -3641,7 +3641,7 @@ "TooltipLabel\n" "value.text" msgid "Anchor to p~age" -msgstr "锚定:到页面(~A)" +msgstr "锚点: 到页面(~A)" #: CalcCommands.xcu msgctxt "" @@ -3650,7 +3650,7 @@ "Label\n" "value.text" msgid "Anchor: To ~Cell" -msgstr "锚定:到单元格(~C)" +msgstr "锚点: 到单元格(~C)" #: CalcCommands.xcu msgctxt "" @@ -3668,7 +3668,7 @@ "TooltipLabel\n" "value.text" msgid "Anchor to ~cell (move with cell)" -msgstr "锚定:到单元格(与单元格移动)(~C)" +msgstr "锚点: 到单元格 (随单元格移动)(~C)" #: CalcCommands.xcu msgctxt "" @@ -3677,7 +3677,7 @@ "Label\n" "value.text" msgid "Anchor: To Cell (~resize with cell)" -msgstr "锚定:到单元格(与单元格缩放)(~R)" +msgstr "锚点: 到单元格 (随单元格缩放)(~R)" #: CalcCommands.xcu msgctxt "" @@ -3695,7 +3695,7 @@ "TooltipLabel\n" "value.text" msgid "Anchor to cell (move and ~resize with cell)" -msgstr "锚定到单元格(与单元格移动并缩放)(~R)" +msgstr "锚点到单元格 (随单元格移动并缩放)(~R)" #: CalcCommands.xcu msgctxt "" @@ -7412,7 +7412,7 @@ "Label\n" "value.text" msgid "~Hyphenation" -msgstr "断字处理(~H)" +msgstr "断词(~H)" #: DrawImpressCommands.xcu msgctxt "" @@ -14387,7 +14387,7 @@ "ContextLabel\n" "value.text" msgid "~Callout" -msgstr "标注(~C)" +msgstr "批注(~C)" #: GenericCommands.xcu msgctxt "" @@ -16700,7 +16700,7 @@ "Label\n" "value.text" msgid "~Bibliography Database" -msgstr "文献数据库(~B)" +msgstr "参考文献数据库(~B)" #: GenericCommands.xcu msgctxt "" @@ -22138,7 +22138,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: GenericCommands.xcu msgctxt "" @@ -22156,7 +22156,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: GenericCommands.xcu msgctxt "" @@ -22255,7 +22255,7 @@ "TooltipLabel\n" "value.text" msgid "Align Top" -msgstr "顶部对齐" +msgstr "向上对齐" #: GenericCommands.xcu msgctxt "" @@ -22291,7 +22291,7 @@ "TooltipLabel\n" "value.text" msgid "Align Bottom" -msgstr "底部对齐" +msgstr "向下对齐" #: GenericCommands.xcu msgctxt "" @@ -22660,7 +22660,7 @@ "Label\n" "value.text" msgid "Change Anchor" -msgstr "更改锚定" +msgstr "更改锚点" #: GenericCommands.xcu msgctxt "" @@ -22669,7 +22669,7 @@ "ContextLabel\n" "value.text" msgid "Anc~hor" -msgstr "锚定(~H)" +msgstr "锚点(~H)" #: GenericCommands.xcu msgctxt "" @@ -22908,15 +22908,6 @@ #: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D 模型..." - -#: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" "value.text" @@ -25459,7 +25450,7 @@ "Label\n" "value.text" msgid "Anchor to Character" -msgstr "锚定在字符上" +msgstr "锚点到字符" #: WriterCommands.xcu msgctxt "" @@ -25558,7 +25549,7 @@ "Label\n" "value.text" msgid "Table of Contents" -msgstr "内容目录" +msgstr "目录" #: WriterCommands.xcu msgctxt "" @@ -25567,7 +25558,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "插入内容目录、索引或文献目录" +msgstr "插入目录、索引或参考文献" #: WriterCommands.xcu msgctxt "" @@ -25576,7 +25567,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "内容目录、索引或参考文献(~I)..." +msgstr "目录、索引或参考文献(~I)..." #: WriterCommands.xcu msgctxt "" @@ -25585,7 +25576,7 @@ "Label\n" "value.text" msgid "~Bibliography Entry..." -msgstr "文献目录条目(~B)..." +msgstr "参考文献条目(~B)..." #: WriterCommands.xcu msgctxt "" @@ -25594,7 +25585,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "直接光标定位功能切换" +msgstr "切换直接光标定位模式" #: WriterCommands.xcu msgctxt "" @@ -25603,7 +25594,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "直接光标定位" +msgstr "直接光标定位模式" #: WriterCommands.xcu msgctxt "" @@ -25639,7 +25630,7 @@ "ContextLabel\n" "value.text" msgid "Indexes and ~Tables" -msgstr "索引和目录(~T)" +msgstr "索引与目录(~T)" #: WriterCommands.xcu msgctxt "" @@ -25981,7 +25972,7 @@ "Label\n" "value.text" msgid "Edit index" -msgstr "编辑目录" +msgstr "编辑索引" #: WriterCommands.xcu msgctxt "" @@ -25990,7 +25981,7 @@ "Label\n" "value.text" msgid "~Bibliography Entry..." -msgstr "文献目录条目(~B)..." +msgstr "参考文献条目(~B)..." #: WriterCommands.xcu msgctxt "" @@ -26278,7 +26269,7 @@ "Label\n" "value.text" msgid "~Index Entry..." -msgstr "索引项(~Y)..." +msgstr "索引条目(~I)..." #: WriterCommands.xcu msgctxt "" @@ -26287,7 +26278,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Index Entry" -msgstr "插入索引项" +msgstr "插入索引条目" #: WriterCommands.xcu msgctxt "" @@ -26305,7 +26296,7 @@ "Label\n" "value.text" msgid "Change Anchor" -msgstr "更改锚定" +msgstr "更改锚点" #: WriterCommands.xcu msgctxt "" @@ -26314,7 +26305,7 @@ "Label\n" "value.text" msgid "Anchor To Page" -msgstr "锚定到页面上" +msgstr "锚点到页面" #: WriterCommands.xcu msgctxt "" @@ -26332,7 +26323,7 @@ "Label\n" "value.text" msgid "Anchor To Paragraph" -msgstr "锚定到段落上" +msgstr "锚点到段落" #: WriterCommands.xcu msgctxt "" @@ -26467,7 +26458,7 @@ "Label\n" "value.text" msgid "Anchor To Frame" -msgstr "锚定到框架" +msgstr "锚点到框架" #: WriterCommands.xcu msgctxt "" @@ -26512,7 +26503,7 @@ "Label\n" "value.text" msgid "Anchor as Character" -msgstr "锚定为字符" +msgstr "锚点作为字符" #: WriterCommands.xcu msgctxt "" @@ -27349,7 +27340,7 @@ "Label\n" "value.text" msgid "Align Top to Anchor" -msgstr "锚点顶部对齐" +msgstr "向上对齐到锚点" #: WriterCommands.xcu msgctxt "" @@ -27358,7 +27349,7 @@ "Label\n" "value.text" msgid "Align Bottom to Anchor" -msgstr "锚点底部对齐" +msgstr "向下对齐到锚点" #: WriterCommands.xcu msgctxt "" @@ -27700,7 +27691,7 @@ "Label\n" "value.text" msgid "~Index Entry..." -msgstr "索引项(~I)..." +msgstr "索引条目(~I)..." #: WriterCommands.xcu msgctxt "" @@ -28177,7 +28168,7 @@ "Label\n" "value.text" msgid "Backspace" -msgstr "退格[Backspace]" +msgstr "退格键" #: WriterCommands.xcu msgctxt "" @@ -28618,7 +28609,7 @@ "Label\n" "value.text" msgid "To Footnote Anchor" -msgstr "到脚注锚定" +msgstr "到脚注锚点" #: WriterCommands.xcu msgctxt "" @@ -29185,7 +29176,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "断字处理(~H)..." +msgstr "断词(~H)..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-05-21 07:14+0000\n" -"Last-Translator: Dingyuan Wang \n" +"PO-Revision-Date: 2019-01-20 02:19+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1526886850.000000\n" +"X-POOTLE-MTIME: 1547950750.000000\n" #: Addons.xcu msgctxt "" @@ -7556,7 +7556,7 @@ "Name\n" "value.text" msgid "ReferenceNumber" -msgstr "参考号" +msgstr "引用编号" #: TableWizard.xcu msgctxt "" @@ -7565,7 +7565,7 @@ "ShortName\n" "value.text" msgid "RefrenceNo" -msgstr "参考号" +msgstr "引用号" #: TableWizard.xcu msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/readlicense_oo/docs.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/readlicense_oo/docs.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/readlicense_oo/docs.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/readlicense_oo/docs.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-06-04 15:42+0200\n" -"PO-Revision-Date: 2018-08-01 03:40+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-18 06:12+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1533094847.000000\n" +"X-POOTLE-MTIME: 1547791971.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 https://www.libreoffice.org/." -msgstr "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目以及相关信息。访问 http://zh-cn.libreoffice.org。" +msgstr "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目及其相关信息。访问 http://zh-cn.libreoffice.org。" #: readme.xrm msgctxt "" @@ -86,7 +86,7 @@ "A13b\n" "readmeitem.text" msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see https://www.documentfoundation.org/contribution/ for details. Everyone can make a contribution of some kind." -msgstr "如果您感谢他们的工作,并愿意确保 ${PRODUCTNAME} 将来能继续开发,请考虑为此项目作贡献——详情请见 https://zh-cn.libreoffice.org/get-involved/。每个人都可以作出自己的贡献。" +msgstr "如果您感激他们的努力,并愿意确保 ${PRODUCTNAME} 将来能继续开发,请考虑为此项目作贡献——详情请见 https://zh-cn.libreoffice.org/get-involved/。每个人都可以作出自己的贡献。" #: readme.xrm msgctxt "" @@ -678,7 +678,7 @@ "support1\n" "readmeitem.text" msgid "The main support page offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at https://www.documentfoundation.org/nabble/ or search the archives of the 'users@libreoffice.org' mailing list at https://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://zh-cn.libreoffice.org/get-help/community-support/ 提供有关 ${PRODUCTNAME} 的各种可能的帮助。您的问题可能已有答复——请到 http://www.libreofficechina.org 中文社区论坛查找问题或提问,或在 http://www.libreoffice.org/lists/users/ 中搜索 'users@libreoffice.org' 邮件列表的归档。您还可以将问题发到 users@libreoffice.org邮件列表。如果您想订阅该列表(以获取邮件答复),请发送一封空邮件给:users+subscribe@libreoffice.org。" +msgstr "主支持页面 https://zh-cn.libreoffice.org/get-help/community-support/ 提供有关 ${PRODUCTNAME} 的各种可能的帮助。您的问题可能已有答复——请到中文社区论坛 https://bbs.libreofficechina.org/ 或 QQ 群 190535062 查找问题或提问,或在 https://www.libreoffice.org/lists/users/https://listarchives.libreoffice.org/zh-cn/users/ 分别查看「users@libreoffice.org」「users@zh-cn.libreoffice.org」邮件列表的存档。您还可以将问题发到 users@zh-cn.libreoffice.org。如果您想订阅该列表(以获取邮件答复),请发送一封空邮件给: users+subscribe@zh-cn.libreoffice.org。" #: readme.xrm msgctxt "" @@ -702,7 +702,7 @@ "reportbugs1\n" "readmeitem.text" msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at http://bugs.documentfoundation.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 "当前我们使用 BugZilla 报告、追踪和解决 bug。该系统托管在 https://bugs.documentfoundation.org/。我们鼓励所有的用户觉得自己有权利,而且很受欢迎的报告在您特定的平台中遇到的 bug。积极的报告 bug 是用户社区能为持续开发并改进的 ${PRODUCTNAME} 所做的最重要的贡献。" +msgstr "目前我们使用 BugZilla 报告、追踪和解决 bug。该系统托管在 https://bugs.documentfoundation.org/。我们鼓励所有的用户觉得自己有资格,欢迎您报告特定的平台中遇到的 bug。积极地报告 bug 是用户社区能为持续开发并改进的 ${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 the LibreOffice website." -msgstr "作为一名用户,您已经是本套件开发过程中重要的一环。我们想鼓励您成为更加活跃的社区长期贡献者。请加入并查看 LibreOffice 网站的贡献页面。" +msgstr "作为一名用户,您已经是本套件开发过程中重要的一环。我们想鼓励您成为更加活跃的社区长期贡献者。请加入并查看 LibreOffice 网站的贡献页面。" #: 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 the LibreOffice website." -msgstr "开始贡献最简单的方式是订阅一个或多个邮件列表,潜水一段时间,并逐渐使用邮件列表归档熟悉自 2000 年 10 月 ${PRODUCTNAME} 源码发布以来所涉及到的诸多话题。当您方便时,唯一要做的就是发送一封自我介绍的邮件并加入讨论。如果您熟悉开源项目,请查看我们位于 http://zh-cn.libreoffice.org/develop/ 的 To-Do 列表,看是否有您能帮到忙的地方。" +msgstr "开始贡献最简单的方式是订阅一个或多个邮件列表,潜水一段时间,并逐渐使用邮件列表归档熟悉自 2000 年 10 月 ${PRODUCTNAME} 源码发布以来所涉及到的诸多话题。当您感到合适时,唯一要做的就是发送一封自我介绍的邮件并加入讨论。如果您熟悉开源项目,请查看 LibreOffice 网站 的 To-Do 列表,看是否有您能帮到忙的地方。" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-12-02 02:39+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-26 23:16+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543718397.000000\n" +"X-POOTLE-MTIME: 1548544589.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -619,7 +619,7 @@ #: sc/inc/globstr.hrc:139 msgctxt "STR_MSSG_SOLVE_3" msgid "Insert the closest value (" -msgstr "插入最近似的值 (" +msgstr "仍然插入最近似的值 (" #: sc/inc/globstr.hrc:140 msgctxt "STR_MSSG_SOLVE_4" @@ -723,7 +723,7 @@ #: sc/inc/globstr.hrc:159 msgctxt "STR_FILTER_SELCOUNT" msgid "$1 of $2 records found" -msgstr "在 $1 条记录中找到了 $2 条" +msgstr "在 $2 条记录中找到了 $1 条" #: sc/inc/globstr.hrc:160 msgctxt "STR_COLUMN" @@ -2444,7 +2444,7 @@ #: sc/inc/globstr.hrc:491 msgctxt "STR_CLICKHYPERLINK" msgid "click to open hyperlink:" -msgstr "单击打开超链接:" +msgstr "点击打开超链接:" #: sc/inc/globstr.hrc:492 msgctxt "STR_PRINT_PREVIEW_NODATA" @@ -2810,7 +2810,7 @@ "$(ARG1)" msgstr "" "无法将下列字符转换成所选字符集,\n" -"这些字符将被替换为: Ӓ\n" +"这些字符将以 Ӓ 代替:\n" "\n" "$(ARG1)" @@ -3687,7 +3687,7 @@ #: sc/inc/scfuncs.hrc:360 msgctxt "SC_OPCODE_GET_DATEDIF" msgid "Interval" -msgstr "Interval" +msgstr "间隔" #: sc/inc/scfuncs.hrc:361 msgctxt "SC_OPCODE_GET_DATEDIF" @@ -4981,7 +4981,7 @@ #: sc/inc/scfuncs.hrc:797 msgctxt "SC_OPCODE_IS_FORMULA" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:798 msgctxt "SC_OPCODE_IS_FORMULA" @@ -6151,7 +6151,7 @@ #: sc/inc/scfuncs.hrc:1360 msgctxt "SC_OPCODE_AGGREGATE" msgid "Reference 1 or array" -msgstr "参考 1 或数组" +msgstr "引用 1 或数组" #: sc/inc/scfuncs.hrc:1361 msgctxt "SC_OPCODE_AGGREGATE" @@ -6161,7 +6161,7 @@ #: sc/inc/scfuncs.hrc:1362 msgctxt "SC_OPCODE_AGGREGATE" msgid "Reference 2..n or k " -msgstr "参考 2..n 或 k" +msgstr "引用 2..n 或 k " #: sc/inc/scfuncs.hrc:1363 msgctxt "SC_OPCODE_AGGREGATE" @@ -9679,7 +9679,7 @@ #: sc/inc/scfuncs.hrc:2711 msgctxt "SC_OPCODE_F_DIST" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2712 msgctxt "SC_OPCODE_F_DIST" @@ -9714,7 +9714,7 @@ #: sc/inc/scfuncs.hrc:2723 msgctxt "SC_OPCODE_F_DIST_LT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2724 msgctxt "SC_OPCODE_F_DIST_LT" @@ -9759,7 +9759,7 @@ #: sc/inc/scfuncs.hrc:2737 msgctxt "SC_OPCODE_F_DIST_RT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2738 msgctxt "SC_OPCODE_F_DIST_RT" @@ -9794,7 +9794,7 @@ #: sc/inc/scfuncs.hrc:2749 msgctxt "SC_OPCODE_F_INV" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2750 msgctxt "SC_OPCODE_F_INV" @@ -9829,7 +9829,7 @@ #: sc/inc/scfuncs.hrc:2761 msgctxt "SC_OPCODE_F_INV_LT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2762 msgctxt "SC_OPCODE_F_INV_LT" @@ -9864,7 +9864,7 @@ #: sc/inc/scfuncs.hrc:2773 msgctxt "SC_OPCODE_F_INV_RT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "F - 概率分布的分子自由度。" +msgstr "F 分布的分子自由度。" #: sc/inc/scfuncs.hrc:2774 msgctxt "SC_OPCODE_F_INV_RT" @@ -10980,7 +10980,7 @@ #, c-format msgctxt "SC_OPCODE_FORECAST_ETS_PIA" 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(不含)之间的值,表示 0 到 100% 的计算预测区间。" #: sc/inc/scfuncs.hrc:3179 msgctxt "SC_OPCODE_FORECAST_ETS_PIA" @@ -11056,7 +11056,7 @@ #, c-format msgctxt "SC_OPCODE_FORECAST_ETS_PIM" 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(不含)之间的值,表示 0 到 100% 的计算预测区间。" #: sc/inc/scfuncs.hrc:3199 msgctxt "SC_OPCODE_FORECAST_ETS_PIM" @@ -11401,7 +11401,7 @@ #: sc/inc/scfuncs.hrc:3307 msgctxt "SC_OPCODE_COLUMN" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3308 msgctxt "SC_OPCODE_COLUMN" @@ -11416,7 +11416,7 @@ #: sc/inc/scfuncs.hrc:3315 msgctxt "SC_OPCODE_ROW" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3316 msgctxt "SC_OPCODE_ROW" @@ -11431,7 +11431,7 @@ #: sc/inc/scfuncs.hrc:3323 msgctxt "SC_OPCODE_SHEET" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3324 msgctxt "SC_OPCODE_SHEET" @@ -11476,7 +11476,7 @@ #: sc/inc/scfuncs.hrc:3347 msgctxt "SC_OPCODE_SHEETS" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3348 msgctxt "SC_OPCODE_SHEETS" @@ -11581,7 +11581,7 @@ #: sc/inc/scfuncs.hrc:3383 msgctxt "SC_OPCODE_INDEX" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3384 msgctxt "SC_OPCODE_INDEX" @@ -11626,7 +11626,7 @@ #: sc/inc/scfuncs.hrc:3397 msgctxt "SC_OPCODE_INDIRECT" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3398 msgctxt "SC_OPCODE_INDIRECT" @@ -11721,7 +11721,7 @@ #: sc/inc/scfuncs.hrc:3431 msgctxt "SC_OPCODE_OFFSET" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3432 msgctxt "SC_OPCODE_OFFSET" @@ -11776,7 +11776,7 @@ #: sc/inc/scfuncs.hrc:3447 msgctxt "SC_OPCODE_ERROR_TYPE" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sc/inc/scfuncs.hrc:3448 msgctxt "SC_OPCODE_ERROR_TYPE" @@ -12141,7 +12141,7 @@ #: sc/inc/scfuncs.hrc:3600 msgctxt "SC_OPCODE_IFS_MS" msgid "The result of the function if test is TRUE." -msgstr "当测试结果为TRUE时函数的结果。" +msgstr "当测试结果为 TRUE 时函数的结果。" #: sc/inc/scfuncs.hrc:3606 msgctxt "SC_OPCODE_SWITCH_MS" @@ -13579,7 +13579,7 @@ #: sc/inc/strings.hrc:40 msgctxt "SCSTR_COLUMN" msgid "Column %1" -msgstr "列 %1" +msgstr "列 %1" #. "%1 is replaced to row number, such as 'Row 1'" #: sc/inc/strings.hrc:42 @@ -13630,12 +13630,12 @@ #: sc/inc/strings.hrc:51 msgctxt "STR_QUERYROTATION" msgid "This image is rotated. Would you like to rotate it into standard orientation?" -msgstr "该图像已经被旋转。您想要将其旋转到标准方向吗?" +msgstr "该图像已被旋转。是否将其旋转到原来的方向?" #: sc/inc/strings.hrc:52 msgctxt "SCSTR_TOTAL" msgid "%1 results found" -msgstr "没有找到 %1 的结果" +msgstr "找到 %1 条结果" #: sc/inc/strings.hrc:53 msgctxt "SCSTR_SKIPPED" @@ -15017,7 +15017,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:239 msgctxt "advancedfilterdialog|unique" msgid "_No duplications" -msgstr "只显示不重复的记录(_N)" +msgstr "不显示重复项(_N)" #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:255 msgctxt "advancedfilterdialog|copyresult" @@ -16428,7 +16428,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:267 msgctxt "datafielddialog|type" msgid "% of total" -msgstr "占合计的百分比" +msgstr "占总和的百分比" #: sc/uiconfig/scalc/ui/datafielddialog.ui:268 msgctxt "datafielddialog|type" @@ -17378,7 +17378,7 @@ #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:127 msgctxt "formulacalculationoptions|labelSyntaxRef" msgid "Reference syntax for string reference:" -msgstr "字符串引用参考语法" +msgstr "字符串引用的语法:" #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:139 msgctxt "formulacalculationoptions|comboSyntaxRef" @@ -18334,7 +18334,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:4436 msgctxt "notebookbar|HomeMenuButton" msgid "_Home" -msgstr "开始(_H)" +msgstr "主页(_H)" #: sc/uiconfig/scalc/ui/notebookbar.ui:4544 msgctxt "notebookbar|CalcLabel" @@ -21959,12 +21959,12 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:322 msgctxt "standardfilterdialog|cond1" msgid "Largest %" -msgstr "最大%" +msgstr "最大 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:323 msgctxt "standardfilterdialog|cond1" msgid "Smallest %" -msgstr "最小%" +msgstr "最小 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:324 msgctxt "standardfilterdialog|cond1" @@ -22014,12 +22014,12 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:358 msgctxt "standardfilterdialog|cond2" msgid "Largest %" -msgstr "最大%" +msgstr "最大 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:359 msgctxt "standardfilterdialog|cond2" msgid "Smallest %" -msgstr "最小%" +msgstr "最小 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:360 msgctxt "standardfilterdialog|cond2" @@ -22069,12 +22069,12 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:394 msgctxt "standardfilterdialog|cond3" msgid "Largest %" -msgstr "最大%" +msgstr "最大 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:395 msgctxt "standardfilterdialog|cond3" msgid "Smallest %" -msgstr "最小%" +msgstr "最小 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:396 msgctxt "standardfilterdialog|cond3" @@ -22124,12 +22124,12 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:430 msgctxt "standardfilterdialog|cond4" msgid "Largest %" -msgstr "最大%" +msgstr "最大 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:431 msgctxt "standardfilterdialog|cond4" msgid "Smallest %" -msgstr "最小%" +msgstr "最小 %" #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:432 msgctxt "standardfilterdialog|cond4" @@ -22589,7 +22589,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:105 msgctxt "tpviewpage|anchor" msgid "_Anchor" -msgstr "锚定(_A)" +msgstr "锚点(_A)" #: sc/uiconfig/scalc/ui/tpviewpage.ui:122 msgctxt "tpviewpage|clipmark" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/scaddins/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/scaddins/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/scaddins/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/scaddins/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-02-27 15:06+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2019-01-17 19:31+0000\n" +"Last-Translator: Dian LI \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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547753497.000000\n" #: scaddins/inc/analysis.hrc:27 msgctxt "ANALYSIS_Workday" @@ -299,7 +302,7 @@ #: scaddins/inc/analysis.hrc:122 msgctxt "ANALYSIS_Quotient" msgid "Numerator" -msgstr "Numerator" +msgstr "分子" #: scaddins/inc/analysis.hrc:123 msgctxt "ANALYSIS_Quotient" @@ -364,7 +367,7 @@ #: scaddins/inc/analysis.hrc:147 msgctxt "ANALYSIS_Randbetween" msgid "Bottom" -msgstr "Bottom" +msgstr "下限" #: scaddins/inc/analysis.hrc:148 msgctxt "ANALYSIS_Randbetween" @@ -374,7 +377,7 @@ #: scaddins/inc/analysis.hrc:149 msgctxt "ANALYSIS_Randbetween" msgid "Top" -msgstr "Top" +msgstr "上限" #: scaddins/inc/analysis.hrc:150 msgctxt "ANALYSIS_Randbetween" @@ -877,7 +880,7 @@ #: scaddins/inc/analysis.hrc:336 msgctxt "ANALYSIS_Gestep" msgid "The threshold value" -msgstr "阀值" +msgstr "阈值" #: scaddins/inc/analysis.hrc:341 msgctxt "ANALYSIS_Factdouble" @@ -987,7 +990,7 @@ #: scaddins/inc/analysis.hrc:386 msgctxt "ANALYSIS_Imdiv" msgid "Numerator" -msgstr "Numerator" +msgstr "分子" #: scaddins/inc/analysis.hrc:387 msgctxt "ANALYSIS_Imdiv" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/scp2/source/ooo.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/scp2/source/ooo.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/scp2/source/ooo.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/scp2/source/ooo.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:38+0200\n" -"PO-Revision-Date: 2018-09-25 14:38+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-20 03:33+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1537886336.000000\n" +"X-POOTLE-MTIME: 1547955192.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -62,7 +62,7 @@ "STR_NAME_MODULE_HELPPACK_EN_US\n" "LngText.text" msgid "English (United States)" -msgstr "English (United States)" +msgstr "英语 (美国)" #: module_helppack.ulf msgctxt "" @@ -222,7 +222,7 @@ "STR_NAME_MODULE_HELPPACK_ZH_CN\n" "LngText.text" msgid "Chinese (simplified)" -msgstr "中文(简体)" +msgstr "中文 (简体)" #: module_helppack.ulf msgctxt "" @@ -238,7 +238,7 @@ "STR_NAME_MODULE_HELPPACK_ZH_TW\n" "LngText.text" msgid "Chinese (traditional)" -msgstr "中文(繁体)" +msgstr "中文 (繁体)" #: module_helppack.ulf msgctxt "" @@ -686,7 +686,7 @@ "STR_NAME_MODULE_HELPPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "Odia [奥里亚语]" +msgstr "奥里亚语" #: module_helppack.ulf msgctxt "" @@ -1406,7 +1406,7 @@ "STR_NAME_MODULE_HELPPACK_EN_ZA\n" "LngText.text" msgid "English (South Africa)" -msgstr "English (South Africa)" +msgstr "英语 (南非)" #: module_helppack.ulf msgctxt "" @@ -1422,7 +1422,7 @@ "STR_NAME_MODULE_HELPPACK_EN_GB\n" "LngText.text" msgid "English (United Kingdom)" -msgstr "English (United Kingdom)" +msgstr "英语 (英国)" #: module_helppack.ulf msgctxt "" @@ -1838,7 +1838,7 @@ "STR_NAME_MODULE_LANGPACK_EN_US\n" "LngText.text" msgid "English (United States)" -msgstr "英语 (美国) [English (United States)]" +msgstr "英语 (美国)" #: module_langpack.ulf msgctxt "" @@ -1854,7 +1854,7 @@ "STR_NAME_MODULE_LANGPACK_DE\n" "LngText.text" msgid "German" -msgstr "德语 [German]" +msgstr "德语" #: module_langpack.ulf msgctxt "" @@ -1870,7 +1870,7 @@ "STR_NAME_MODULE_LANGPACK_FR\n" "LngText.text" msgid "French" -msgstr "法语 [French]" +msgstr "法语" #: module_langpack.ulf msgctxt "" @@ -1902,7 +1902,7 @@ "STR_NAME_MODULE_LANGPACK_IT\n" "LngText.text" msgid "Italian" -msgstr "意大利语 [Italian]" +msgstr "意大利语" #: module_langpack.ulf msgctxt "" @@ -1918,7 +1918,7 @@ "STR_NAME_MODULE_LANGPACK_ES\n" "LngText.text" msgid "Spanish" -msgstr "西班牙语 [Spanish]" +msgstr "西班牙语" #: module_langpack.ulf msgctxt "" @@ -1934,7 +1934,7 @@ "STR_NAME_MODULE_LANGPACK_SV\n" "LngText.text" msgid "Swedish" -msgstr "瑞典语 [Swedish]" +msgstr "瑞典语" #: module_langpack.ulf msgctxt "" @@ -1950,7 +1950,7 @@ "STR_NAME_MODULE_LANGPACK_PT\n" "LngText.text" msgid "Portuguese" -msgstr "葡萄牙语 [Portuguese]" +msgstr "葡萄牙语" #: module_langpack.ulf msgctxt "" @@ -1966,7 +1966,7 @@ "STR_NAME_MODULE_LANGPACK_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil)" -msgstr "葡萄牙语 (巴西) [Portuguese (Brazil)]" +msgstr "葡萄牙语 (巴西)" #: module_langpack.ulf msgctxt "" @@ -1982,7 +1982,7 @@ "STR_NAME_MODULE_LANGPACK_JA\n" "LngText.text" msgid "Japanese" -msgstr "日语 [Japanese]" +msgstr "日语" #: module_langpack.ulf msgctxt "" @@ -2014,7 +2014,7 @@ "STR_NAME_MODULE_LANGPACK_KO\n" "LngText.text" msgid "Korean" -msgstr "朝鲜语 [Korean]" +msgstr "朝鲜语" #: module_langpack.ulf msgctxt "" @@ -2030,7 +2030,7 @@ "STR_NAME_MODULE_LANGPACK_ZH_CN\n" "LngText.text" msgid "Chinese (simplified)" -msgstr "中文 (简体) [Chinese (simplified)]" +msgstr "中文 (简体)" #: module_langpack.ulf msgctxt "" @@ -2046,7 +2046,7 @@ "STR_NAME_MODULE_LANGPACK_ZH_TW\n" "LngText.text" msgid "Chinese (traditional)" -msgstr "中文 (正體) [Chinese (traditional)]" +msgstr "中文 (繁体)" #: module_langpack.ulf msgctxt "" @@ -2062,7 +2062,7 @@ "STR_NAME_MODULE_LANGPACK_NL\n" "LngText.text" msgid "Dutch" -msgstr "荷兰语 [Dutch]" +msgstr "荷兰语" #: module_langpack.ulf msgctxt "" @@ -2078,7 +2078,7 @@ "STR_NAME_MODULE_LANGPACK_HSB\n" "LngText.text" msgid "Upper Sorbian" -msgstr "上索布语 [Upper Sorbian]" +msgstr "上索布语" #: module_langpack.ulf msgctxt "" @@ -2094,7 +2094,7 @@ "STR_NAME_MODULE_LANGPACK_HU\n" "LngText.text" msgid "Hungarian" -msgstr "匈牙利语 [Hungarian]" +msgstr "匈牙利语" #: module_langpack.ulf msgctxt "" @@ -2110,7 +2110,7 @@ "STR_NAME_MODULE_LANGPACK_PL\n" "LngText.text" msgid "Polish" -msgstr "波兰语 [Polish]" +msgstr "波兰语" #: module_langpack.ulf msgctxt "" @@ -2126,7 +2126,7 @@ "STR_NAME_MODULE_LANGPACK_RU\n" "LngText.text" msgid "Russian" -msgstr "俄语 [Russian]" +msgstr "俄语" #: module_langpack.ulf msgctxt "" @@ -2142,7 +2142,7 @@ "STR_NAME_MODULE_LANGPACK_TR\n" "LngText.text" msgid "Turkish" -msgstr "土耳其语 [Turkish]" +msgstr "土耳其语" #: module_langpack.ulf msgctxt "" @@ -2158,7 +2158,7 @@ "STR_NAME_MODULE_LANGPACK_EL\n" "LngText.text" msgid "Greek" -msgstr "希腊语 [Greek]" +msgstr "希腊语" #: module_langpack.ulf msgctxt "" @@ -2174,7 +2174,7 @@ "STR_NAME_MODULE_LANGPACK_TH\n" "LngText.text" msgid "Thai" -msgstr "泰语 [Thai]" +msgstr "泰语" #: module_langpack.ulf msgctxt "" @@ -2190,7 +2190,7 @@ "STR_NAME_MODULE_LANGPACK_CS\n" "LngText.text" msgid "Czech" -msgstr "捷克语 [Czech]" +msgstr "捷克语" #: module_langpack.ulf msgctxt "" @@ -2206,7 +2206,7 @@ "STR_NAME_MODULE_LANGPACK_SK\n" "LngText.text" msgid "Slovak" -msgstr "斯洛伐克语 [Slovak]" +msgstr "斯洛伐克语" #: module_langpack.ulf msgctxt "" @@ -2222,7 +2222,7 @@ "STR_NAME_MODULE_LANGPACK_HR\n" "LngText.text" msgid "Croatian" -msgstr "克罗地亚语 [Croatian]" +msgstr "克罗地亚语" #: module_langpack.ulf msgctxt "" @@ -2238,7 +2238,7 @@ "STR_NAME_MODULE_LANGPACK_ET\n" "LngText.text" msgid "Estonian" -msgstr "爱沙尼亚语 [Estonian]" +msgstr "爱沙尼亚语" #: module_langpack.ulf msgctxt "" @@ -2254,7 +2254,7 @@ "STR_NAME_MODULE_LANGPACK_VI\n" "LngText.text" msgid "Vietnamese" -msgstr "越南语 [Vietnamese]" +msgstr "越南语" #: module_langpack.ulf msgctxt "" @@ -2270,7 +2270,7 @@ "STR_NAME_MODULE_LANGPACK_BG\n" "LngText.text" msgid "Bulgarian" -msgstr "保加利亚语 [Bulgarian]" +msgstr "保加利亚语" #: module_langpack.ulf msgctxt "" @@ -2286,7 +2286,7 @@ "STR_NAME_MODULE_LANGPACK_KM\n" "LngText.text" msgid "Khmer" -msgstr "高棉语 [Khmer]" +msgstr "高棉语" #: module_langpack.ulf msgctxt "" @@ -2302,7 +2302,7 @@ "STR_NAME_MODULE_LANGPACK_PA_IN\n" "LngText.text" msgid "Punjabi" -msgstr "旁遮普语 [Punjabi]" +msgstr "旁遮普语" #: module_langpack.ulf msgctxt "" @@ -2318,7 +2318,7 @@ "STR_NAME_MODULE_LANGPACK_TA\n" "LngText.text" msgid "Tamil" -msgstr "泰米尔语 [Tamil]" +msgstr "泰米尔语" #: module_langpack.ulf msgctxt "" @@ -2334,7 +2334,7 @@ "STR_NAME_MODULE_LANGPACK_HI\n" "LngText.text" msgid "Hindi" -msgstr "印地语 [Hindi]" +msgstr "印地语" #: module_langpack.ulf msgctxt "" @@ -2350,7 +2350,7 @@ "STR_NAME_MODULE_LANGPACK_ST\n" "LngText.text" msgid "Southern Sotho (Sutu)" -msgstr "南索托语 (苏土) [Southern Sotho (Sutu)]" +msgstr "南索托语 (苏土)" #: module_langpack.ulf msgctxt "" @@ -2366,7 +2366,7 @@ "STR_NAME_MODULE_LANGPACK_TN\n" "LngText.text" msgid "Tswana" -msgstr "茨瓦纳语 [Tswana]" +msgstr "茨瓦纳语" #: module_langpack.ulf msgctxt "" @@ -2382,7 +2382,7 @@ "STR_NAME_MODULE_LANGPACK_XH\n" "LngText.text" msgid "Xhosa" -msgstr "科萨语 [Xhosa]" +msgstr "科萨语" #: module_langpack.ulf msgctxt "" @@ -2398,7 +2398,7 @@ "STR_NAME_MODULE_LANGPACK_ZU\n" "LngText.text" msgid "Zulu" -msgstr "祖鲁语 [Zulu]" +msgstr "祖鲁语" #: module_langpack.ulf msgctxt "" @@ -2414,7 +2414,7 @@ "STR_NAME_MODULE_LANGPACK_AF\n" "LngText.text" msgid "Afrikaans" -msgstr "南非荷兰语 [Afrikaans]" +msgstr "南非荷兰语" #: module_langpack.ulf msgctxt "" @@ -2430,7 +2430,7 @@ "STR_NAME_MODULE_LANGPACK_SW_TZ\n" "LngText.text" msgid "Swahili" -msgstr "斯瓦希里语 [Swahili]" +msgstr "斯瓦希里语" #: module_langpack.ulf msgctxt "" @@ -2446,7 +2446,7 @@ "STR_NAME_MODULE_LANGPACK_LO\n" "LngText.text" msgid "Lao" -msgstr "老挝语 [Lao]" +msgstr "老挝语" #: module_langpack.ulf msgctxt "" @@ -2462,7 +2462,7 @@ "STR_NAME_MODULE_LANGPACK_MY\n" "LngText.text" msgid "Burmese" -msgstr "缅甸语 [Burmese]" +msgstr "缅甸语" #: module_langpack.ulf msgctxt "" @@ -2478,7 +2478,7 @@ "STR_NAME_MODULE_LANGPACK_NSO\n" "LngText.text" msgid "Northern Sotho" -msgstr "北索托语 [Northern Sotho]" +msgstr "北索托语" #: module_langpack.ulf msgctxt "" @@ -2494,7 +2494,7 @@ "STR_NAME_MODULE_LANGPACK_BN\n" "LngText.text" msgid "Bengali (Bangladesh)" -msgstr "孟加拉语 (孟加拉国) [Bengali (Bangladesh)]" +msgstr "孟加拉语 (孟加拉国)" #: module_langpack.ulf msgctxt "" @@ -2510,7 +2510,7 @@ "STR_NAME_MODULE_LANGPACK_BN_IN\n" "LngText.text" msgid "Bengali (India)" -msgstr "孟加拉语 (印度) [Bengali (India)]" +msgstr "孟加拉语 (印度)" #: module_langpack.ulf msgctxt "" @@ -2526,7 +2526,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "奥里亚语 [Odia]" +msgstr "奥里亚语" #: module_langpack.ulf msgctxt "" @@ -2542,7 +2542,7 @@ "STR_NAME_MODULE_LANGPACK_MR\n" "LngText.text" msgid "Marathi" -msgstr "马拉地语 [Marathi]" +msgstr "马拉地语" #: module_langpack.ulf msgctxt "" @@ -2558,7 +2558,7 @@ "STR_NAME_MODULE_LANGPACK_NE\n" "LngText.text" msgid "Nepali" -msgstr "尼泊尔语 [Nepali]" +msgstr "尼泊尔语" #: module_langpack.ulf msgctxt "" @@ -2574,7 +2574,7 @@ "STR_NAME_MODULE_LANGPACK_AR\n" "LngText.text" msgid "Arabic" -msgstr "阿拉伯语 [Arabic]" +msgstr "阿拉伯语" #: module_langpack.ulf msgctxt "" @@ -2590,7 +2590,7 @@ "STR_NAME_MODULE_LANGPACK_CA\n" "LngText.text" msgid "Catalan" -msgstr "加泰罗尼亚语 [Catalan]" +msgstr "加泰罗尼亚语" #: module_langpack.ulf msgctxt "" @@ -2606,7 +2606,7 @@ "STR_NAME_MODULE_LANGPACK_CA_VALENCIA\n" "LngText.text" msgid "Catalan (Valencian)" -msgstr "加泰罗尼亚语 (巴伦西亚) [Catalan (Valencian)]" +msgstr "加泰罗尼亚语 (巴伦西亚)" #: module_langpack.ulf msgctxt "" @@ -2622,7 +2622,7 @@ "STR_NAME_MODULE_LANGPACK_DA\n" "LngText.text" msgid "Danish" -msgstr "丹麦语 [Danish]" +msgstr "丹麦语" #: module_langpack.ulf msgctxt "" @@ -2638,7 +2638,7 @@ "STR_NAME_MODULE_LANGPACK_FI\n" "LngText.text" msgid "Finnish" -msgstr "芬兰语 [Finnish]" +msgstr "芬兰语" #: module_langpack.ulf msgctxt "" @@ -2654,7 +2654,7 @@ "STR_NAME_MODULE_LANGPACK_HE\n" "LngText.text" msgid "Hebrew" -msgstr "希伯来语 [Hebrew]" +msgstr "希伯来语" #: module_langpack.ulf msgctxt "" @@ -2670,7 +2670,7 @@ "STR_NAME_MODULE_LANGPACK_IS\n" "LngText.text" msgid "Icelandic" -msgstr "冰岛语 [Icelandic]" +msgstr "冰岛语" #: module_langpack.ulf msgctxt "" @@ -2686,7 +2686,7 @@ "STR_NAME_MODULE_LANGPACK_NB\n" "LngText.text" msgid "Norwegian (Bokmål)" -msgstr "挪威语 (书面挪威语) [Norwegian (Bokmål)]" +msgstr "挪威语 (书面挪威语)" #: module_langpack.ulf msgctxt "" @@ -2702,7 +2702,7 @@ "STR_NAME_MODULE_LANGPACK_NN\n" "LngText.text" msgid "Norwegian (Nynorsk)" -msgstr "挪威语 (新挪威语) [Norwegian (Nynorsk)]" +msgstr "挪威语 (新挪威语)" #: module_langpack.ulf msgctxt "" @@ -3118,7 +3118,7 @@ "STR_NAME_MODULE_LANGPACK_VEC\n" "LngText.text" msgid "Venetian" -msgstr "越南语 [Venetian]" +msgstr "威尼斯语" #: module_langpack.ulf msgctxt "" @@ -3134,7 +3134,7 @@ "STR_NAME_MODULE_LANGPACK_KN\n" "LngText.text" msgid "Kannada" -msgstr "埃纳德语 [Kannada]" +msgstr "卡纳达语" #: module_langpack.ulf msgctxt "" @@ -3262,7 +3262,7 @@ "STR_NAME_MODULE_LANGPACK_EN_ZA\n" "LngText.text" msgid "English (South Africa)" -msgstr "英语 (南非) [English (South Africa)]" +msgstr "英语 (南非)" #: module_langpack.ulf msgctxt "" @@ -3278,7 +3278,7 @@ "STR_NAME_MODULE_LANGPACK_EN_GB\n" "LngText.text" msgid "English (United Kingdom)" -msgstr "英语 (英国) [English (United Kingdom)]" +msgstr "英语 (英国)" #: module_langpack.ulf msgctxt "" @@ -3438,7 +3438,7 @@ "STR_NAME_MODULE_LANGPACK_DGO\n" "LngText.text" msgid "Dogri" -msgstr "多格拉语 [Dogri]" +msgstr "多格拉语" #: module_langpack.ulf msgctxt "" @@ -4166,7 +4166,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_ID\n" "LngText.text" msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus" -msgstr "印度尼西亚拼写词典、连字符规则及同义词库" +msgstr "印度尼西亚语拼写词典、断词规则及同义词库" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/sd/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sd/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/sd/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sd/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:27+0100\n" -"PO-Revision-Date: 2018-12-02 02:40+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-21 17:42+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543718434.000000\n" +"X-POOTLE-MTIME: 1548092532.000000\n" #: sd/inc/DocumentRenderer.hrc:27 msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES" @@ -269,7 +269,7 @@ #: sd/inc/strings.hrc:34 msgctxt "STR_QUERYROTATION" msgid "This image is rotated. Would you like to rotate it into standard orientation?" -msgstr "该图像已经被旋转。您想要将其旋转到标准方向吗?" +msgstr "该图像已被旋转。是否将其旋转到原来的方向?" #: sd/inc/strings.hrc:35 msgctxt "STR_UNDO_BEZCLOSE" @@ -717,7 +717,7 @@ #: sd/inc/strings.hrc:120 msgctxt "STR_END_SPELLING_OBJ" msgid "The spellcheck for the selected objects has been completed." -msgstr "已经完成选中对象的拼写检查!" +msgstr "已完成对选中对象的拼写检查。" #: sd/inc/strings.hrc:121 msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER" @@ -1002,7 +1002,7 @@ #: sd/inc/strings.hrc:177 msgctxt "STR_UNDO_SUMMARY_PAGE" msgid "Table of Contents Slide" -msgstr "内容目录-页面" +msgstr "目录页面" #: sd/inc/strings.hrc:178 msgctxt "STR_TWAIN_NO_SOURCE_UNX" @@ -1097,7 +1097,7 @@ #: sd/inc/strings.hrc:196 msgctxt "STR_BREAK_FAIL" msgid "It was not possible to ungroup all drawing objects." -msgstr "无法拆开所有的字符对象!" +msgstr "无法拆开所有的绘图对象。" #: sd/inc/strings.hrc:197 msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80" @@ -1147,7 +1147,7 @@ #: sd/inc/strings.hrc:207 msgctxt "STR_HTMLEXP_CONTENTS" msgid "Table of contents" -msgstr "内容目录" +msgstr "目录" #: sd/inc/strings.hrc:208 msgctxt "STR_HTMLEXP_CLICKSTART" @@ -1727,7 +1727,7 @@ #: sd/inc/strings.hrc:325 msgctxt "STR_POOLSHEET_FILLED_GREEN" msgid "Filled Green" -msgstr "黄色填充" +msgstr "绿色填充" #: sd/inc/strings.hrc:326 msgctxt "STR_POOLSHEET_FILLED_YELLOW" @@ -1742,27 +1742,27 @@ #: sd/inc/strings.hrc:329 msgctxt "STR_POOLSHEET_OUTLINE" msgid "Outlined" -msgstr "概述" +msgstr "边框" #: sd/inc/strings.hrc:330 msgctxt "STR_POOLSHEET_OUTLINE_BLUE" msgid "Outlined Blue" -msgstr "" +msgstr "蓝色边框" #: sd/inc/strings.hrc:331 msgctxt "STR_POOLSHEET_OUTLINE_GREEN" msgid "Outlined Green" -msgstr "" +msgstr "绿色边框" #: sd/inc/strings.hrc:332 msgctxt "STR_POOLSHEET_OUTLINE_YELLOW" msgid "Outlined Yellow" -msgstr "" +msgstr "黄色边框" #: sd/inc/strings.hrc:333 msgctxt "STR_POOLSHEET_OUTLINE_RED" msgid "Outlined Red" -msgstr "" +msgstr "红色边框" #: sd/inc/strings.hrc:335 msgctxt "STR_PSEUDOSHEET_TITLE" @@ -2244,12 +2244,12 @@ #: sd/inc/strings.hrc:436 msgctxt "STR_ANNOTATION_TODAY" msgid "Today," -msgstr "今天," +msgstr "今天," #: sd/inc/strings.hrc:437 msgctxt "STR_ANNOTATION_YESTERDAY" msgid "Yesterday," -msgstr "昨天," +msgstr "昨天," #: sd/inc/strings.hrc:438 msgctxt "STR_ANNOTATION_NOAUTHOR" @@ -2425,12 +2425,12 @@ #, c-format msgctxt "STR_CTRLCLICKHYPERLINK" msgid "%s-click to follow hyperlink: " -msgstr "%s-单击 以跟随超链接:" +msgstr "%s-击可跟踪超链接: " #: sd/inc/strings.hrc:478 msgctxt "STR_CLICKHYPERLINK" msgid "Click to open hyperlink: " -msgstr "双击打开超级链接" +msgstr "点击打开超链接: " #: sd/uiconfig/sdraw/ui/breakdialog.ui:8 msgctxt "breakdialog|BreakDialog" @@ -4170,7 +4170,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:3389 msgctxt "notebookbar|HomeMenuButton" msgid "_Home" -msgstr "开始(_H)" +msgstr "主页(_H)" #: sd/uiconfig/simpress/ui/notebookbar.ui:4846 msgctxt "notebookbar|HomeLabel" @@ -4281,7 +4281,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922 msgctxt "notebookbar_groupedbar_compact|Menu" msgid "_Check for Updates..." -msgstr "检查更新……" +msgstr "检查更新(_C)…" #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2328 msgctxt "notebookbar_groupedbar_compact|Tools" @@ -4460,17 +4460,17 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:1421 msgctxt "notebookbar_groupedbar_full|Help" msgid "_Check for Updates..." -msgstr "检查更新……" +msgstr "检查更新(_C)…" #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2115 msgctxt "notebookbar_groupedbar_full|Menu" msgid "_Check for Updates..." -msgstr "检查更新……" +msgstr "检查更新(_C)…" #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2599 msgctxt "notebookbar_groupedbar_full|Tools" msgid "_Check for Updates..." -msgstr "检查更新……" +msgstr "检查更新(_C)…" #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2865 msgctxt "notebookbar_groupedbar_full|menub" @@ -4894,7 +4894,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:56 msgctxt "optimpressgeneralpage|textselected" msgid "Only text area selectable" -msgstr "只能够选择文字区域" +msgstr "只有文字区域允许选中" #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:79 msgctxt "optimpressgeneralpage|label2" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/setup_native/source/mac.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/setup_native/source/mac.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/setup_native/source/mac.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/setup_native/source/mac.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-05-23 05:45+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-26 23:11+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1495518342.000000\n" +"X-POOTLE-MTIME: 1548544262.000000\n" #: macinstall.ulf msgctxt "" @@ -86,7 +86,7 @@ "ChooseManualText\n" "LngText.text" msgid "Point the dialog to your [PRODUCTNAME] [PRODUCTVERSION] installation." -msgstr "指向 [PRODUCTNAME] [PRODUCTVERSION] 安装对话框。" +msgstr "请在本对话框选中您已安装的 [PRODUCTNAME] [PRODUCTVERSION]。" #: macinstall.ulf msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-11-25 06:46+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-21 16:31+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543128415.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548088313.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -891,7 +891,7 @@ #: include/sfx2/strings.hrc:189 msgctxt "STR_SFX_IMPORT_ALL" msgid "" -msgstr "<所有的格式>" +msgstr "<所有格式>" #: include/sfx2/strings.hrc:190 msgctxt "STR_PB_SAVEACOPY" @@ -1148,6 +1148,9 @@ "\n" "Error code is $1" msgstr "" +"发送信息时出错。可能是因为缺少用户账号或配置错误。\n" +"\n" +"错误代码未 $1" #: include/sfx2/strings.hrc:239 msgctxt "STR_ERROR_SEND_MAIL_HEADER" @@ -1178,7 +1181,7 @@ #: include/sfx2/strings.hrc:243 msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN" msgid "~Open" -msgstr "打开(~O)" +msgstr "打开(~O)" #: include/sfx2/strings.hrc:244 msgctxt "STR_REPAIREDDOCUMENT" @@ -1278,7 +1281,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "无法验证证书,文档仅部分签署。" #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" @@ -1630,7 +1633,7 @@ #: sfx2/inc/dinfdlg.hrc:51 msgctxt "SFX_CB_PROPERTY_STRINGARRAY" msgid "Reference" -msgstr "参考" +msgstr "引用" #: sfx2/inc/dinfdlg.hrc:52 msgctxt "SFX_CB_PROPERTY_STRINGARRAY" @@ -2185,7 +2188,7 @@ #: sfx2/uiconfig/ui/helpmanual.ui:12 msgctxt "helpmanual|onlinehelpmanual" msgid "The %PRODUCTNAME built-in help for current UI language ($UILOCALE) is not installed on your computer." -msgstr "" +msgstr "您的计算机中没有安装当前用户界面语言 ($UILOCALE) 的 %PRODUCTNAME 内置帮助文件。" #: sfx2/uiconfig/ui/helpmanual.ui:13 msgctxt "helpmanual|onlinehelpmanual" @@ -2245,15 +2248,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" -"%PRODUCTNAME 采用 Mozilla Public License v. 2.0 发布,MPL 的许可协议可以在 http://mozilla.org/MPL/2.0/ 找到。\n" +"%PRODUCTNAME 采用 Mozilla Public License v2.0 发布,MPL 许可协议的副本可以在 http://mozilla.org/MPL/2.0/ 找到。\n" "\n" "我们使用的第三方代码附加版权申明和许可协议可以在 LICENSE.html 文件中找到;选择“显示许可证”可以查看详细的英文表述。\n" "\n" -"此处提及的所有商标和注册商标均为各自商标所有人的财产。\n" +"此项目提及的所有商标和注册商标均为各自商标所有人的财产。\n" "\n" "版权所有 © 2000–2018 LibreOffice 的贡献者。保留所有权利。\n" "\n" -"本软件由 %OOOVENDOR 在 OpenOffice.org 基础上开发。OpenOffice.org 版权所有:2000, 2011 Oracle 及其关联方。%OOOVENDOR 谨向所有的社区成员致谢,详情请见 http://www.libreoffice.org/。" +"本软件由 %OOOVENDOR 在 OpenOffice.org 基础上开发,版权所有 © 2000, 2011 Oracle 及其关联方。%OOOVENDOR 谨向所有社区成员致谢,详见 https://www.libreoffice.org/。" #: sfx2/uiconfig/ui/linkeditdialog.ui:105 msgctxt "linkeditdialog|label2" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/starmath/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/starmath/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/starmath/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/starmath/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-04-03 08:01+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2018-12-19 07:22+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1522742482.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545204173.000000\n" #: starmath/inc/smmod.hrc:16 msgctxt "RID_UI_SYMBOLSET_NAMES" @@ -2364,7 +2364,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:981 msgctxt "spacingdialog|3label1" msgid "_Numerator:" -msgstr "分子(_N):" +msgstr "分子(_N):" #: starmath/uiconfig/smath/ui/spacingdialog.ui:994 msgctxt "spacingdialog|3label2" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/svtools/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/svtools/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/svtools/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/svtools/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: 2018-12-08 15:20+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:31+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,22 +14,22 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1544282441.000000\n" +"X-POOTLE-MTIME: 1548268266.000000\n" #: include/svtools/strings.hrc:25 msgctxt "STR_UNDO" msgid "Undo: " -msgstr "撤消命令: " +msgstr "撤销: " #: include/svtools/strings.hrc:26 msgctxt "STR_REDO" msgid "Re~do: " -msgstr "恢复撤消命令(~D)" +msgstr "重做(~D): " #: include/svtools/strings.hrc:27 msgctxt "STR_REPEAT" msgid "~Repeat: " -msgstr "重复(~R):" +msgstr "重复(~R): " #: include/svtools/strings.hrc:29 msgctxt "STR_FORMAT_STRING" @@ -39,37 +39,37 @@ #: include/svtools/strings.hrc:30 msgctxt "STR_FORMAT_ID_STRING_TSVC" msgid "Unformatted text (TSV-Calc)" -msgstr "未格式的化文本" +msgstr "未格式化的文本 (TSV-Calc)" #: include/svtools/strings.hrc:31 msgctxt "STR_FORMAT_BITMAP" msgid "Bitmap Image (BMP)" -msgstr "Bitmap 图像 (BMP)" +msgstr "位图图像 (BMP)" #: include/svtools/strings.hrc:32 msgctxt "STR_FORMAT_GDIMETAFILE" msgid "Graphics Device Interface metafile (GDI)" -msgstr "图形设备接口图元文件" +msgstr "图形设备接口元文件 (GDI)" #: include/svtools/strings.hrc:33 msgctxt "STR_FORMAT_RTF" msgid "Rich text formatting (RTF)" -msgstr "富文本格式" +msgstr "富文本格式 (RTF)" #: include/svtools/strings.hrc:34 msgctxt "STR_FORMAT_ID_RICHTEXT" msgid "Rich text formatting (Richtext)" -msgstr "富文本格式" +msgstr "富文本格式 (Richtext)" #: include/svtools/strings.hrc:35 msgctxt "STR_FORMAT_ID_DRAWING" msgid "%PRODUCTNAME drawing format" -msgstr "%PRODUCTNAME 绘图格式 (Draw 6)" +msgstr "%PRODUCTNAME 绘图格式" #: include/svtools/strings.hrc:36 msgctxt "STR_FORMAT_ID_SVXB" msgid "StarView bitmap/animation (SVXB)" -msgstr "" +msgstr "StarView 位图/动画 (SVXB)" #: include/svtools/strings.hrc:37 msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE" @@ -79,7 +79,7 @@ #: include/svtools/strings.hrc:38 msgctxt "STR_FORMAT_ID_SOLK" msgid "%PRODUCTNAME Link (SOLK)" -msgstr "" +msgstr "%PRODUCTNAME Link (SOLK)" #: include/svtools/strings.hrc:39 msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK" @@ -234,12 +234,12 @@ #: include/svtools/strings.hrc:69 msgctxt "STR_FORMAT_ID_HTML_SIMPLE" msgid "Stripped HyperText Markup Language (Simple HTML)" -msgstr "" +msgstr "经过滤的超文本标记语言 (简单 HTML)" #: include/svtools/strings.hrc:70 msgctxt "STR_FORMAT_ID_BIFF_5" msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)" -msgstr "微软 Excel 二进制交换格式 5.0/95 (Biff5)" +msgstr "Microsoft Excel 二进制交换格式 5.0/95 (Biff5)" #: include/svtools/strings.hrc:71 msgctxt "STR_FORMAT_ID_BIFF_8" @@ -254,12 +254,12 @@ #: include/svtools/strings.hrc:73 msgctxt "STR_FORMAT_ID_LINK" msgid "Dynamic Data Exchange (DDE link)" -msgstr "动态数据交换(DDE 连接)" +msgstr "动态数据交换 (DDE 链接)" #: include/svtools/strings.hrc:74 msgctxt "STR_FORMAT_ID_DIF" msgid "Data Interchange Format (DIF)" -msgstr "数据交换格式" +msgstr "数据交换格式 (DIF)" #: include/svtools/strings.hrc:75 msgctxt "STR_FORMAT_ID_MSWORD_DOC" @@ -374,7 +374,7 @@ #: include/svtools/strings.hrc:97 msgctxt "STR_FORMAT_ID_PNG_BITMAP" msgid "Portable Network Graphic (PNG)" -msgstr "便携式网络图形(PNG)" +msgstr "便携式网络图形 (PNG)" #: include/svtools/strings.hrc:99 #, c-format @@ -401,7 +401,7 @@ #: include/svtools/strings.hrc:104 msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE" msgid "Name" -msgstr "姓名" +msgstr "名称" #: include/svtools/strings.hrc:105 msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE" @@ -426,17 +426,17 @@ #: include/svtools/strings.hrc:109 msgctxt "STR_SVT_KB" msgid "KB" -msgstr "千字节" +msgstr "KB" #: include/svtools/strings.hrc:110 msgctxt "STR_SVT_MB" msgid "MB" -msgstr "兆字节" +msgstr "MB" #: include/svtools/strings.hrc:111 msgctxt "STR_SVT_GB" msgid "GB" -msgstr "千兆" +msgstr "GB" #. descriptions of accessible objects #: include/svtools/strings.hrc:114 @@ -528,12 +528,12 @@ #: include/svtools/strings.hrc:143 msgctxt "STR_SVT_COLLATE_PHONETIC_F" msgid "Phonetic (alphanumeric first)" -msgstr "语音(数字排列最先)" +msgstr "语音 (数字排列最先)" #: include/svtools/strings.hrc:144 msgctxt "STR_SVT_COLLATE_PHONETIC_L" msgid "Phonetic (alphanumeric last)" -msgstr "语音(字母数字排列最后)" +msgstr "语音 (字母数字排列最后)" #. alphanumeric indexentry algorithm #: include/svtools/strings.hrc:146 @@ -574,22 +574,22 @@ #: include/svtools/strings.hrc:157 msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS" msgid "Phonetic (alphanumeric first, grouped by syllables)" -msgstr "语音(字母数字排列最先,按音节分组)" +msgstr "语音 (字母数字排列最先,按音节分组)" #: include/svtools/strings.hrc:158 msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC" msgid "Phonetic (alphanumeric first, grouped by consonants)" -msgstr "语音(字母数字排列最先,按辅音分组)" +msgstr "语音 (字母数字排列最先,按辅音分组)" #: include/svtools/strings.hrc:159 msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS" msgid "Phonetic (alphanumeric last, grouped by syllables)" -msgstr "语音(数字排列最后,按音节分组)" +msgstr "语音 (数字排列最后,按音节分组)" #: include/svtools/strings.hrc:160 msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC" msgid "Phonetic (alphanumeric last, grouped by consonants)" -msgstr "语音(数字排列最后,按辅音分组)" +msgstr "语音 (数字排列最后,按辅音分组)" #: include/svtools/strings.hrc:162 msgctxt "STR_SVT_CALENDAR_DAY" @@ -980,17 +980,17 @@ #: include/svtools/strings.hrc:244 msgctxt "STR_WIZDLG_FINISH" msgid "~Finish" -msgstr "完成(~F)" +msgstr "完成 (~F)" #: include/svtools/strings.hrc:245 msgctxt "STR_WIZDLG_NEXT" msgid "~Next >" -msgstr "下一步(~N) >" +msgstr "下一步 (~N) >" #: include/svtools/strings.hrc:246 msgctxt "STR_WIZDLG_PREVIOUS" msgid "< Bac~k" -msgstr "< 上一步(~K)" +msgstr "< 上一步 (~K)" #: include/svtools/strings.hrc:247 msgctxt "STR_WIZDLG_ROADMAP_TITLE" @@ -1170,7 +1170,7 @@ #: include/svtools/strings.hrc:285 msgctxt "STR_WARNING_JAVANOTFOUND_WIN" msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME." -msgstr "%PRODUCTNAME 需要 %BITNESS 位的 Java 运行时环境 (JRE) 来进行该任务。请安装 JRE 并重启 %PRODUCTNAME。" +msgstr "%PRODUCTNAME 需要 %BITNESS-位 Java 运行时环境 (JRE) 才能执行此任务。请安装 JRE 并重新启动 %PRODUCTNAME。" #: include/svtools/strings.hrc:286 msgctxt "STR_WARNING_JAVANOTFOUND_MAC" @@ -1270,7 +1270,7 @@ #: include/svtools/strings.hrc:306 msgctxt "STR_DESCRIPTION_LOGFILE" msgid "Log file" -msgstr "记录文件 (log)" +msgstr "日志文件" #: include/svtools/strings.hrc:307 msgctxt "STR_DESCRIPTION_SDATABASE_DOC" @@ -1530,7 +1530,7 @@ #: include/svtools/strings.hrc:359 msgctxt "STR_DESCRIPTION_LIBHYPHEN" msgid "Libhyphen Hyphenator" -msgstr "Libhyphen 断字处理器" +msgstr "libhyphen 断词器" #: include/svtools/strings.hrc:360 msgctxt "STR_DESCRIPTION_MYTHES" @@ -1555,7 +1555,7 @@ #: svtools/inc/errtxt.hrc:32 msgctxt "RID_ERRCTX" msgid "$(ERR) loading the template $(ARG1)" -msgstr "载入模板 $(ARG1) 时发生 $(ERR) " +msgstr "载入模板 $(ARG1) 时发生 $(ERR)" #: svtools/inc/errtxt.hrc:33 svtools/inc/errtxt.hrc:34 msgctxt "RID_ERRCTX" @@ -1788,7 +1788,7 @@ #: svtools/inc/errtxt.hrc:90 msgctxt "RID_ERRHDL" msgid "The operation could not be run due to insufficient memory." -msgstr "因为内存不足而无法执行这个操作" +msgstr "内存不足,无法执行操作。" #: svtools/inc/errtxt.hrc:91 msgctxt "RID_ERRHDL" @@ -1868,7 +1868,7 @@ #: svtools/inc/errtxt.hrc:106 msgctxt "RID_ERRHDL" msgid "The wrong password has been entered." -msgstr "输入的密码错误" +msgstr "输入的密码错误。" #: svtools/inc/errtxt.hrc:107 msgctxt "RID_ERRHDL" @@ -2043,7 +2043,7 @@ #: svtools/inc/errtxt.hrc:131 msgctxt "RID_ERRHDL" msgid "Function not possible: write protected." -msgstr "无法执行函数:已写保护" +msgstr "无法执行函数:已写保护。" #: svtools/inc/errtxt.hrc:132 msgctxt "RID_ERRHDL" @@ -2122,127 +2122,127 @@ #: svtools/inc/langtab.hrc:36 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Algeria)" -msgstr "Arabic (Algeria) [阿拉伯语(阿尔及利亚)]" +msgstr "Arabic (Algeria) 阿拉伯语 (阿尔及利亚)" #: svtools/inc/langtab.hrc:37 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Bahrain)" -msgstr "Arabic (Bahrain) [阿拉伯语(巴林)]" +msgstr "Arabic (Bahrain) 阿拉伯语 (巴林)" #: svtools/inc/langtab.hrc:38 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Chad)" -msgstr "Arabic (Chad) [阿拉伯语(乍得)]" +msgstr "Arabic (Chad) 阿拉伯语 (乍得)" #: svtools/inc/langtab.hrc:39 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Comoros)" -msgstr "Arabic (Comoros) [阿拉伯语(科摩罗)]" +msgstr "Arabic (Comoros) 阿拉伯语 (科摩罗)" #: svtools/inc/langtab.hrc:40 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Djibouti)" -msgstr "Arabic (Djibouti) [阿拉伯语(吉布提)] " +msgstr "阿拉伯语 (吉布提)" #: svtools/inc/langtab.hrc:41 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Egypt)" -msgstr "Arabic (Egypt) [阿拉伯语(埃及)]" +msgstr "Arabic (Egypt) 阿拉伯语 (埃及)" #: svtools/inc/langtab.hrc:42 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Eritrea)" -msgstr "Arabic (Eritrea) [阿拉伯语(厄立特里亚)]" +msgstr "Arabic (Eritrea) 阿拉伯语 (厄立特里亚)" #: svtools/inc/langtab.hrc:43 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Iraq)" -msgstr "Arabic (Iraq) [阿拉伯语(伊拉克)]" +msgstr "Arabic (Iraq) 阿拉伯语 (伊拉克)" #: svtools/inc/langtab.hrc:44 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Israel)" -msgstr "Arabic (Israel) [阿拉伯语(以色列)]" +msgstr "Arabic (Israel) 阿拉伯语 (以色列)" #: svtools/inc/langtab.hrc:45 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Jordan)" -msgstr "Arabic (Jordan) [阿拉伯语(约旦)]" +msgstr "Arabic (Jordan) 阿拉伯语 (约旦)" #: svtools/inc/langtab.hrc:46 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Kuwait)" -msgstr "Arabic (Kuwait) [阿拉伯语(科威特)]" +msgstr "Arabic (Kuwait) 阿拉伯语 (科威特)" #: svtools/inc/langtab.hrc:47 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Lebanon)" -msgstr "Arabic (Lebanon) [阿拉伯语(黎巴嫩)]" +msgstr "Arabic (Lebanon) 阿拉伯语 (黎巴嫩)" #: svtools/inc/langtab.hrc:48 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Libya)" -msgstr "Arabic (Libya) [阿拉伯语(利比亚)]" +msgstr "Arabic (Libya) 阿拉伯语 (利比亚)" #: svtools/inc/langtab.hrc:49 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Mauritania)" -msgstr "Arabic (Mauritania) [阿拉伯语(毛里塔尼亚)]" +msgstr "Arabic (Mauritania) 阿拉伯语 (毛里塔尼亚)" #: svtools/inc/langtab.hrc:50 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Morocco)" -msgstr "Arabic (Morocco) [阿拉伯语(摩洛哥)]" +msgstr "Arabic (Morocco) 阿拉伯语 (摩洛哥)" #: svtools/inc/langtab.hrc:51 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Oman)" -msgstr "Arabic (Oman) [阿拉伯语(阿曼)]" +msgstr "Arabic (Oman) 阿拉伯语 (阿曼)" #: svtools/inc/langtab.hrc:52 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Palestine)" -msgstr "Arabic (Palestine) [阿拉伯语(巴勒斯坦)]" +msgstr "Arabic (Palestine) 阿拉伯语 (巴勒斯坦)" #: svtools/inc/langtab.hrc:53 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Qatar)" -msgstr "Arabic (Qatar) [阿拉伯语(卡塔尔)]" +msgstr "Arabic (Qatar) 阿拉伯语 (卡塔尔)" #: svtools/inc/langtab.hrc:54 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Saudi Arabia)" -msgstr "Arabic (Saudi Arabia) [阿拉伯语(沙特阿拉伯)]" +msgstr "Arabic (Saudi Arabia) 阿拉伯语 (沙特阿拉伯)" #: svtools/inc/langtab.hrc:55 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Somalia)" -msgstr "Arabic (Somalia) [阿拉伯语(索马里)]" +msgstr "Arabic (Somalia) 阿拉伯语 (索马里)" #: svtools/inc/langtab.hrc:56 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Sudan)" -msgstr "Arabic (Sudan) [阿拉伯语(苏丹)]" +msgstr "Arabic (Sudan) 阿拉伯语 (苏丹)" #: svtools/inc/langtab.hrc:57 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Syria)" -msgstr "Arabic (Syria) [阿拉伯语(叙利亚)]" +msgstr "Arabic (Syria) 阿拉伯语 (叙利亚)" #: svtools/inc/langtab.hrc:58 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Tunisia)" -msgstr "Arabic (Tunisia) [阿拉伯语(突尼斯)]" +msgstr "Arabic (Tunisia) 阿拉伯语 (突尼斯)" #: svtools/inc/langtab.hrc:59 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (UAE)" -msgstr "Arabic (UAE) [阿拉伯语(阿联酋)]" +msgstr "Arabic (UAE) 阿拉伯语 (阿联酋)" #: svtools/inc/langtab.hrc:60 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arabic (Yemen)" -msgstr "Arabic (Yemen) [阿拉伯语(也门)]" +msgstr "Arabic (Yemen) 阿拉伯语 (也门)" #: svtools/inc/langtab.hrc:61 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2252,7 +2252,7 @@ #: svtools/inc/langtab.hrc:62 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Armenian, Eastern (Armenia)" -msgstr "" +msgstr "东亚美尼亚语 (亚美尼亚)" #: svtools/inc/langtab.hrc:63 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2262,12 +2262,12 @@ #: svtools/inc/langtab.hrc:64 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Azerbaijani Latin" -msgstr "Azerbaijani Latin [阿塞拜疆语(拉丁字母)]" +msgstr "Azerbaijani Latin 阿塞拜疆语 (拉丁字母)" #: svtools/inc/langtab.hrc:65 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Azerbaijani Cyrillic" -msgstr "Azerbaijani Cyrillic [阿塞拜疆语(西里尔字母)]" +msgstr "Azerbaijani Cyrillic 阿塞拜疆语 (西里尔字母)" #: svtools/inc/langtab.hrc:66 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2277,7 +2277,7 @@ #: svtools/inc/langtab.hrc:67 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Bengali (India)" -msgstr "Bengali (India) [孟加拉语(印度)]" +msgstr "Bengali (India) 孟加拉语 (印度)" #: svtools/inc/langtab.hrc:68 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2297,32 +2297,32 @@ #: svtools/inc/langtab.hrc:71 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Catalan (Valencian)" -msgstr "Catalan (Valencian) [加泰罗尼亚语(巴伦西亚)]" +msgstr "Catalan (Valencian) 加泰罗尼亚语 (巴伦西亚)" #: svtools/inc/langtab.hrc:72 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (traditional)" -msgstr "Chinese (traditional) [中文 (正體字) ]" +msgstr "中文 (繁体)" #: svtools/inc/langtab.hrc:73 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (simplified)" -msgstr "Chinese (simplified) [中文 (简体) ]" +msgstr "中文 (简体)" #: svtools/inc/langtab.hrc:74 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (Hong Kong)" -msgstr "Chinese (Hong Kong) [中文 (香港) ]" +msgstr "中文 (香港)" #: svtools/inc/langtab.hrc:75 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (Singapore)" -msgstr "Chinese (Singapore) [中文 (新加坡) ]" +msgstr "中文 (新加坡)" #: svtools/inc/langtab.hrc:76 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (Macau)" -msgstr "Chinese (Macau) [中文 (澳门) ]" +msgstr "中文 (澳门)" #: svtools/inc/langtab.hrc:77 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2332,152 +2332,152 @@ #: svtools/inc/langtab.hrc:78 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Croatian" -msgstr "Croatian (克罗地亚语)" +msgstr "克罗地亚语" #: svtools/inc/langtab.hrc:79 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Czech" -msgstr "Czech (捷克语)" +msgstr "捷克语" #: svtools/inc/langtab.hrc:80 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Danish" -msgstr "Danish (丹麦语)" +msgstr "丹麦语" #: svtools/inc/langtab.hrc:81 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Dutch (Netherlands)" -msgstr "Dutch (Netherlands) [荷兰语(荷兰)]" +msgstr "荷兰语 (荷兰)" #: svtools/inc/langtab.hrc:82 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Dutch (Belgium)" -msgstr "Dutch (Belgium) [荷兰语(比利时)] " +msgstr "荷兰语 (比利时)" #: svtools/inc/langtab.hrc:83 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (USA)" -msgstr "English (USA) [英语(美国)]" +msgstr "英语 (美国)" #: svtools/inc/langtab.hrc:84 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (UK)" -msgstr "English (UK) [英语(英国)]" +msgstr "英语 (英国)" #: svtools/inc/langtab.hrc:85 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English, OED spelling (UK)" -msgstr "English, OED spelling (UK) [英语(牛津英语词典拼法,英国)]" +msgstr "英语 (牛津英语词典拼法,英国)" #: svtools/inc/langtab.hrc:86 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Australia)" -msgstr "English (Australia) [英语(澳大利亚)]" +msgstr "英语 (澳大利亚)" #: svtools/inc/langtab.hrc:87 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Canada)" -msgstr "English (Canada) [英语(加拿大)]" +msgstr "英语 (加拿大)" #: svtools/inc/langtab.hrc:88 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (New Zealand)" -msgstr "English (New Zealand) [英语(新西兰)]" +msgstr "英语 (新西兰)" #: svtools/inc/langtab.hrc:89 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Ireland)" -msgstr "English (Ireland) [英语(爱尔兰)]" +msgstr "英语 (爱尔兰)" #: svtools/inc/langtab.hrc:90 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (South Africa)" -msgstr "English (South Africa) [英语(南非)]" +msgstr "英语 (南非)" #: svtools/inc/langtab.hrc:91 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Jamaica)" -msgstr "English (Jamaica) [英语(牙买加)]" +msgstr "英语 (牙买加)" #: svtools/inc/langtab.hrc:92 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Caribbean)" -msgstr "English (Caribbean) [英语(加勒比)]" +msgstr "英语 (加勒比)" #: svtools/inc/langtab.hrc:93 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Belize)" -msgstr "English (Belize) [英语(伯利兹)]" +msgstr "英语 (伯利兹)" #: svtools/inc/langtab.hrc:94 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Trinidad)" -msgstr "English (Trinidad) [英语(特立尼达岛)]" +msgstr "英语 (特立尼达岛)" #: svtools/inc/langtab.hrc:95 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Zimbabwe)" -msgstr "English (Zimbabwe) [英语(津巴布韦)]" +msgstr "英语 (津巴布韦)" #: svtools/inc/langtab.hrc:96 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Philippines)" -msgstr "English (Philippines) [英语(菲律宾)]" +msgstr "英语 (菲律宾)" #: svtools/inc/langtab.hrc:97 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (India)" -msgstr "English (India) [英语(印度)]" +msgstr "英语 (印度)" #: svtools/inc/langtab.hrc:98 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Estonian" -msgstr "Estonian (爱沙尼亚语)" +msgstr "爱沙尼亚语" #: svtools/inc/langtab.hrc:99 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Finnish" -msgstr "Finnish (芬兰语)" +msgstr "芬兰语" #: svtools/inc/langtab.hrc:100 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Faroese" -msgstr "Faroese (法罗语)" +msgstr "法罗语" #: svtools/inc/langtab.hrc:101 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Persian" -msgstr "Persian (波斯语)" +msgstr "波斯语" #: svtools/inc/langtab.hrc:102 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (France)" -msgstr "French (France) [法语(法国)]" +msgstr "French (France) 法语 (法国)" #: svtools/inc/langtab.hrc:103 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Belgium)" -msgstr "French (Belgium) [法语(比利时)]" +msgstr "French (Belgium) 法语 (比利时)" #: svtools/inc/langtab.hrc:104 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Canada)" -msgstr "French (Canada) [法语(加拿大)]" +msgstr "French (Canada) 法语 (加拿大)" #: svtools/inc/langtab.hrc:105 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Switzerland)" -msgstr "French (Switzerland) [法语(瑞士)]" +msgstr "French (Switzerland) 法语 (瑞士)" #: svtools/inc/langtab.hrc:106 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Luxembourg)" -msgstr "French (Luxembourg) [法语(卢森堡)]" +msgstr "French (Luxembourg) 法语 (卢森堡)" #: svtools/inc/langtab.hrc:107 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Monaco)" -msgstr "French (Monaco) [法语(摩洛哥)]" +msgstr "French (Monaco) 法语 (摩洛哥)" #: svtools/inc/langtab.hrc:108 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2487,32 +2487,32 @@ #: svtools/inc/langtab.hrc:109 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Germany)" -msgstr "German (Germany) [德语(德国)]" +msgstr "German (Germany) 德语 (德国)" #: svtools/inc/langtab.hrc:110 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Switzerland)" -msgstr "German (Switzerland) [德语(瑞士)]" +msgstr "German (Switzerland) 德语 (瑞士)" #: svtools/inc/langtab.hrc:111 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Austria)" -msgstr "German (Austria) [德语(奥地利)]" +msgstr "German (Austria) 德语 (奥地利)" #: svtools/inc/langtab.hrc:112 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Luxembourg)" -msgstr "German (Luxembourg) [德语(卢森堡)]" +msgstr "German (Luxembourg) 德语 (卢森堡)" #: svtools/inc/langtab.hrc:113 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Liechtenstein)" -msgstr "German (Liechtenstein) [德语(列支敦斯登)]" +msgstr "German (Liechtenstein) 德语 (列支敦斯登)" #: svtools/inc/langtab.hrc:114 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Greek" -msgstr "Greek (希腊语)" +msgstr "希腊语" #: svtools/inc/langtab.hrc:115 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2547,17 +2547,17 @@ #: svtools/inc/langtab.hrc:121 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Italian (Italy)" -msgstr "Italian (Italy) [意大利语(意大利)]" +msgstr "意大利语 (意大利)" #: svtools/inc/langtab.hrc:122 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Italian (Switzerland)" -msgstr "Italian (Switzerland) [意大利语(瑞士)]" +msgstr "意大利语 (瑞士)" #: svtools/inc/langtab.hrc:123 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Japanese" -msgstr "Japanese (日语)" +msgstr "日语" #: svtools/inc/langtab.hrc:124 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2587,12 +2587,12 @@ #: svtools/inc/langtab.hrc:129 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Korean (RoK)" -msgstr "Korean (RoK) [朝鲜语(韩国)]" +msgstr "朝鲜语 (韩国)" #: svtools/inc/langtab.hrc:130 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Latvian" -msgstr "Latvian (拉脱维亚语)" +msgstr "拉脱维亚语" #: svtools/inc/langtab.hrc:131 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2612,7 +2612,7 @@ #: svtools/inc/langtab.hrc:134 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Malay (Brunei Darussalam)" -msgstr "马来语(文莱达鲁萨兰国)" +msgstr "马来语 (文莱达鲁萨兰国)" #: svtools/inc/langtab.hrc:135 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2642,12 +2642,12 @@ #: svtools/inc/langtab.hrc:140 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Norwegian, Bokmål" -msgstr "[Norwegian (Bokmål)] 挪威语 (书面挪威语)" +msgstr "挪威语 (书面挪威语)" #: svtools/inc/langtab.hrc:141 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Norwegian, Nynorsk" -msgstr "挪威语 (新挪威语) [Norwegian (Nynorsk)]" +msgstr "挪威语 (新挪威语)" #: svtools/inc/langtab.hrc:142 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2657,7 +2657,7 @@ #: svtools/inc/langtab.hrc:143 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Polish" -msgstr "Polish (波兰语)" +msgstr "波兰语" #: svtools/inc/langtab.hrc:144 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2697,7 +2697,7 @@ #: svtools/inc/langtab.hrc:151 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Russian" -msgstr "Russian (俄语)" +msgstr "俄语" #: svtools/inc/langtab.hrc:152 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2762,97 +2762,97 @@ #: svtools/inc/langtab.hrc:164 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Spain)" -msgstr "Spanish (Spain) [西班牙语(西班牙)]" +msgstr "Spanish (Spain) 西班牙语 (西班牙)" #: svtools/inc/langtab.hrc:165 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Mexico)" -msgstr "Spanish (Mexico) [西班牙语(墨西哥)]" +msgstr "Spanish (Mexico) 西班牙语 (墨西哥)" #: svtools/inc/langtab.hrc:166 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Guatemala)" -msgstr "Spanish (Guatemala) [西班牙语(危地马拉)]" +msgstr "Spanish (Guatemala) 西班牙语 (危地马拉)" #: svtools/inc/langtab.hrc:167 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Costa Rica)" -msgstr "Spanish (Costa Rica) [西班牙语(哥斯达黎加)]" +msgstr "Spanish (Costa Rica) 西班牙语 (哥斯达黎加)" #: svtools/inc/langtab.hrc:168 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Panama)" -msgstr "Spanish (Panama) [西班牙语(巴拿马)]" +msgstr "Spanish (Panama) 西班牙语 (巴拿马)" #: svtools/inc/langtab.hrc:169 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Dom. Rep.)" -msgstr "Spanish (Dom. Rep.) [西班牙语(多米尼加)]" +msgstr "Spanish (Dom. Rep.) 西班牙语 (多米尼加)" #: svtools/inc/langtab.hrc:170 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Venezuela)" -msgstr "Spanish (Venezuela) [西班牙语(委内瑞拉)]" +msgstr "Spanish (Venezuela) 西班牙语 (委内瑞拉)" #: svtools/inc/langtab.hrc:171 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Colombia)" -msgstr "Spanish (Colombia) [西班牙语(哥伦比亚)]" +msgstr "Spanish (Colombia) 西班牙语 (哥伦比亚)" #: svtools/inc/langtab.hrc:172 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Peru)" -msgstr "Spanish (Peru) [西班牙语(秘鲁)]" +msgstr "Spanish (Peru) 西班牙语 (秘鲁)" #: svtools/inc/langtab.hrc:173 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Argentina)" -msgstr "Spanish (Argentina) [西班牙语(阿根廷)]" +msgstr "Spanish (Argentina) 西班牙语 (阿根廷)" #: svtools/inc/langtab.hrc:174 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Ecuador)" -msgstr "Spanish (Ecuador) [西班牙语(厄瓜多尔)]" +msgstr "Spanish (Ecuador) 西班牙语 (厄瓜多尔)" #: svtools/inc/langtab.hrc:175 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Chile)" -msgstr "Spanish (Chile) [西班牙语(智利)]" +msgstr "Spanish (Chile) 西班牙语 (智利)" #: svtools/inc/langtab.hrc:176 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Uruguay)" -msgstr "Spanish (Uruguay) [西班牙语(乌拉圭)]" +msgstr "Spanish (Uruguay) 西班牙语 (乌拉圭)" #: svtools/inc/langtab.hrc:177 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Paraguay)" -msgstr "Spanish (Paraguay) [西班牙语(巴拉圭)]" +msgstr "Spanish (Paraguay) 西班牙语 (巴拉圭)" #: svtools/inc/langtab.hrc:178 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Bolivia)" -msgstr "Spanish (Bolivia) [西班牙语(玻利维亚)]" +msgstr "Spanish (Bolivia) 西班牙语 (玻利维亚)" #: svtools/inc/langtab.hrc:179 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (El Salvador)" -msgstr "Spanish (El Salvador) [西班牙语(萨尔瓦多)]" +msgstr "Spanish (El Salvador) 西班牙语 (萨尔瓦多)" #: svtools/inc/langtab.hrc:180 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Honduras)" -msgstr "Spanish (Honduras) [西班牙语(洪都拉斯)]" +msgstr "Spanish (Honduras) 西班牙语 (洪都拉斯)" #: svtools/inc/langtab.hrc:181 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Nicaragua)" -msgstr "Spanish (Nicaragua) [西班牙语(尼加拉瓜)]" +msgstr "Spanish (Nicaragua) 西班牙语 (尼加拉瓜)" #: svtools/inc/langtab.hrc:182 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Puerto Rico)" -msgstr "Spanish (Puerto Rico) [西班牙语(波多黎各)]" +msgstr "Spanish (Puerto Rico) 西班牙语 (波多黎各)" #: svtools/inc/langtab.hrc:183 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -2932,12 +2932,12 @@ #: svtools/inc/langtab.hrc:198 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Latin" -msgstr "Latin (拉丁语)" +msgstr "拉丁语" #: svtools/inc/langtab.hrc:199 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Esperanto" -msgstr "Esperanto (世界语)" +msgstr "世界语" #: svtools/inc/langtab.hrc:200 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3042,7 +3042,7 @@ #: svtools/inc/langtab.hrc:220 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Dzongkha" -msgstr "Dzongkha (宗喀语)" +msgstr "宗喀语" #: svtools/inc/langtab.hrc:221 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3062,7 +3062,7 @@ #: svtools/inc/langtab.hrc:224 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tibetan (PR China)" -msgstr "Tibetan (PR China) [藏语(中国)]" +msgstr "藏语 (中国)" #: svtools/inc/langtab.hrc:225 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3177,7 +3177,7 @@ #: svtools/inc/langtab.hrc:247 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Namibia)" -msgstr "English (Namibia) [英语(纳米比亚)]" +msgstr "英语 (纳米比亚)" #: svtools/inc/langtab.hrc:248 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3212,7 +3212,7 @@ #: svtools/inc/langtab.hrc:254 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "German (Belgium)" -msgstr "German (Belgium) [德语(比利时)]" +msgstr "德语 (比利时)" #: svtools/inc/langtab.hrc:255 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3222,12 +3222,12 @@ #: svtools/inc/langtab.hrc:256 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Burmese" -msgstr "Burmese (缅甸语)" +msgstr "缅甸语" #: svtools/inc/langtab.hrc:257 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Hausa (Nigeria)" -msgstr "Hausa (Nigeria) [豪萨语(尼日利亚)]" +msgstr "豪萨语 (尼日利亚)" #: svtools/inc/langtab.hrc:258 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3237,12 +3237,12 @@ #: svtools/inc/langtab.hrc:259 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Éwé" -msgstr "Éwé (埃维语)" +msgstr "埃维语" #: svtools/inc/langtab.hrc:260 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Ghana)" -msgstr "English (Ghana) [英语(加纳)]" +msgstr "英语 (加纳)" #: svtools/inc/langtab.hrc:261 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3252,7 +3252,7 @@ #: svtools/inc/langtab.hrc:262 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tagalog" -msgstr "Tagalog (他加禄语)" +msgstr "他加禄语" #: svtools/inc/langtab.hrc:263 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3287,7 +3287,7 @@ #: svtools/inc/langtab.hrc:269 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Spanish (Cuba)" -msgstr "Spanish (Cuba) [西班牙语(古巴)]" +msgstr "西班牙语 (古巴)" #: svtools/inc/langtab.hrc:270 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3362,7 +3362,7 @@ #: svtools/inc/langtab.hrc:284 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Guarani (Paraguay)" -msgstr "Guarani (Paraguay) [瓜拉尼语(巴拉圭)]" +msgstr "瓜拉尼语 (巴拉圭)" #: svtools/inc/langtab.hrc:285 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3432,7 +3432,7 @@ #: svtools/inc/langtab.hrc:298 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Uyghur" -msgstr "Uyghur (维吾尔语)" +msgstr "维吾尔语" #: svtools/inc/langtab.hrc:299 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3617,7 +3617,7 @@ #: svtools/inc/langtab.hrc:335 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kyrgyz (China)" -msgstr "Kyrgyz (China) [吉尔吉斯语(中国)]" +msgstr "吉尔吉斯语 (中国)" #: svtools/inc/langtab.hrc:336 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3637,7 +3637,7 @@ #: svtools/inc/langtab.hrc:339 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Malawi)" -msgstr "English (Malawi) [英语(马拉维)]" +msgstr "英语 (马拉维)" #: svtools/inc/langtab.hrc:340 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3652,12 +3652,12 @@ #: svtools/inc/langtab.hrc:342 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Papiamento (Curaçao)" -msgstr "Papiamento (Curaçao) [帕皮阿门托语(库拉索岛)]" +msgstr "Papiamento (Curaçao) 帕皮阿门托语 (库拉索岛)" #: svtools/inc/langtab.hrc:343 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Papiamento (Bonaire)" -msgstr "Papiamento (Bonaire) [帕皮阿门托语(博内尔岛)]" +msgstr "Papiamento (Bonaire) 帕皮阿门托语 (博内尔岛)" #: svtools/inc/langtab.hrc:344 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3787,7 +3787,7 @@ #: svtools/inc/langtab.hrc:369 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tibetan (India)" -msgstr "Tibetan (India) [藏文 (印度)]" +msgstr "藏文 (印度)" #: svtools/inc/langtab.hrc:370 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3797,7 +3797,7 @@ #: svtools/inc/langtab.hrc:371 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sami, Pite (Sweden)" -msgstr "Sami, Pite (Sweden) [皮特-萨米语 (瑞典)]" +msgstr "Sami, Pite (Sweden) 皮特-萨米语 (瑞典)" #: svtools/inc/langtab.hrc:372 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3827,7 +3827,7 @@ #: svtools/inc/langtab.hrc:377 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Burkina Faso)" -msgstr "French (Burkina Faso) [法语 (布基纳法索)]" +msgstr "French (Burkina Faso) 法语 (布基纳法索)" #: svtools/inc/langtab.hrc:378 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3837,7 +3837,7 @@ #: svtools/inc/langtab.hrc:379 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Maninkakan, Eastern, Latin" -msgstr "Maninkakan, Eastern, Latin [东部马林克语,拉丁文]" +msgstr "Maninkakan, Eastern, Latin 东部马林克语,拉丁文" #: svtools/inc/langtab.hrc:380 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3847,12 +3847,12 @@ #: svtools/inc/langtab.hrc:381 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Cree, Plains, Latin" -msgstr "Cree, Plains, Latin [平原克里语,拉丁文]" +msgstr "Cree, Plains, Latin 平原克里语,拉丁文" #: svtools/inc/langtab.hrc:382 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Cree, Plains, Syllabics" -msgstr "Cree, Plains, Syllabics [平原克里语,音节文字]" +msgstr "Cree, Plains, Syllabics 平原克里语,音节文字" #: svtools/inc/langtab.hrc:383 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3862,32 +3862,32 @@ #: svtools/inc/langtab.hrc:384 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Côte d'Ivoire)" -msgstr "French (Côte d'Ivoire) [法语(科特迪瓦)]" +msgstr "French (Côte d'Ivoire) 法语 (科特迪瓦)" #: svtools/inc/langtab.hrc:385 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Mali)" -msgstr "French (Mali) [法语(马里)]" +msgstr "French (Mali) 法语 (马里)" #: svtools/inc/langtab.hrc:386 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Senegal)" -msgstr "French (Senegal) [法语(塞内加尔)]" +msgstr "French (Senegal) 法语 (塞内加尔)" #: svtools/inc/langtab.hrc:387 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Benin)" -msgstr "French (Benin) [法语(贝宁)]" +msgstr "French (Benin) 法语 (贝宁)" #: svtools/inc/langtab.hrc:388 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Niger)" -msgstr "French (Niger) [法语(尼日尔)]" +msgstr "French (Niger) 法语 (尼日尔)" #: svtools/inc/langtab.hrc:389 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Togo)" -msgstr "French (Togo) [法语(多哥)]" +msgstr "French (Togo) 法语 (多哥)" #: svtools/inc/langtab.hrc:390 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3902,7 +3902,7 @@ #: svtools/inc/langtab.hrc:392 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Gambia)" -msgstr "English (Namibia) [英语(纳米比亚)]" +msgstr "英语 (纳米比亚)" #: svtools/inc/langtab.hrc:393 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3912,22 +3912,22 @@ #: svtools/inc/langtab.hrc:394 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arpitan (France)" -msgstr "Arpitan (France) [普罗旺斯语(法国)]" +msgstr "Arpitan (France) 普罗旺斯语 (法国)" #: svtools/inc/langtab.hrc:395 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arpitan (Italy)" -msgstr "Arpitan (Italy) [普罗旺斯语(意大利)]" +msgstr "Arpitan (Italy) 普罗旺斯语 (意大利)" #: svtools/inc/langtab.hrc:396 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Arpitan (Switzerland)" -msgstr "Arpitan (Switzerland) [普罗旺斯语(瑞士)]" +msgstr "Arpitan (Switzerland) 普罗旺斯语 (瑞士)" #: svtools/inc/langtab.hrc:397 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Botswana)" -msgstr "English (Botswana) [英语(博茨瓦纳)]" +msgstr "英语 (博茨瓦纳)" #: svtools/inc/langtab.hrc:398 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3942,12 +3942,12 @@ #: svtools/inc/langtab.hrc:400 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Mauritius)" -msgstr "English (Mauritius) [英语(毛里求斯)]" +msgstr "英语 (毛里求斯)" #: svtools/inc/langtab.hrc:401 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "French (Mauritius)" -msgstr "French (Mauritius) [法语(毛里求斯)]" +msgstr "French (Mauritius) 法语 (毛里求斯)" #: svtools/inc/langtab.hrc:402 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3962,7 +3962,7 @@ #: svtools/inc/langtab.hrc:404 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Malaysia)" -msgstr "English (Malaysia) [英语(马来西亚)]" +msgstr "英语 (马来西亚)" #: svtools/inc/langtab.hrc:405 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3977,7 +3977,7 @@ #: svtools/inc/langtab.hrc:407 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Kituba (Democratic Republic of the Congo)" -msgstr "吉土巴语(刚果民主共和国,刚果(金))" +msgstr "吉土巴语 (刚果民主共和国,刚果 (金))" #: svtools/inc/langtab.hrc:408 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" @@ -3992,47 +3992,47 @@ #: svtools/inc/langtab.hrc:410 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Armenian, Eastern (Russia)" -msgstr "" +msgstr "东亚美尼亚语 (俄罗斯)" #: svtools/inc/langtab.hrc:411 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Armenian, Eastern (Iran)" -msgstr "" +msgstr "东亚美尼亚语 (伊朗)" #: svtools/inc/langtab.hrc:412 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Armenian, Western (Armenia)" -msgstr "" +msgstr "西亚美尼亚语 (亚美尼亚)" #: svtools/inc/langtab.hrc:413 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Armenian, Classic (Armenia)" -msgstr "" +msgstr "古亚美尼亚语 (亚美尼亚)" #: svtools/inc/langtab.hrc:414 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Malay Arabic (Malaysia)" -msgstr "马来阿拉伯语(马来西亚)" +msgstr "马来阿拉伯语 (马来西亚)" #: svtools/inc/langtab.hrc:415 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Malay Arabic (Brunei Darussalam)" -msgstr "" +msgstr "马来阿拉伯语 (文莱)" #: svtools/inc/langtab.hrc:416 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Juǀ’hoan" -msgstr "" +msgstr "啾荷安语" #: svtools/inc/langtab.hrc:417 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Naro" -msgstr "" +msgstr "纳罗语" #: svtools/inc/langtab.hrc:418 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Iloko" -msgstr "" +msgstr "伊洛卡诺语" #: svtools/inc/templwin.hrc:42 msgctxt "STRARY_SVT_DOCINFO" @@ -4067,22 +4067,22 @@ #: svtools/inc/templwin.hrc:48 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified on" -msgstr "修改的日期" +msgstr "修改日期" #: svtools/inc/templwin.hrc:49 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified by" -msgstr "编辑修改者" +msgstr "修改者" #: svtools/inc/templwin.hrc:50 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed on" -msgstr "打印的日期" +msgstr "打印日期" #: svtools/inc/templwin.hrc:51 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed by" -msgstr "打印的日期" +msgstr "打印者" #: svtools/inc/templwin.hrc:52 msgctxt "STRARY_SVT_DOCINFO" @@ -4102,17 +4102,17 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:104 msgctxt "addresstemplatedialog|label33" msgid "Data source:" -msgstr "数据源:" +msgstr "数据源:" #: svtools/uiconfig/ui/addresstemplatedialog.ui:118 msgctxt "addresstemplatedialog|label43" msgid "Table:" -msgstr "表:" +msgstr "表:" #: svtools/uiconfig/ui/addresstemplatedialog.ui:163 msgctxt "addresstemplatedialog|admin" msgid "_Address Data Source..." -msgstr "地址数据源(_A)..." +msgstr "地址数据源 (_A)..." #: svtools/uiconfig/ui/addresstemplatedialog.ui:185 msgctxt "addresstemplatedialog|label100" @@ -4127,12 +4127,12 @@ #: svtools/uiconfig/ui/fileviewmenu.ui:12 msgctxt "fileviewmenu|delete" msgid "_Delete" -msgstr "删除(_D)" +msgstr "删除 (_D)" #: svtools/uiconfig/ui/fileviewmenu.ui:20 msgctxt "fileviewmenu|rename" msgid "_Rename" -msgstr "重命名(_R)" +msgstr "重命名 (_R)" #: svtools/uiconfig/ui/graphicexport.ui:31 msgctxt "graphicexport|liststore1" @@ -4182,7 +4182,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:159 msgctxt "graphicexport|label5" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: svtools/uiconfig/ui/graphicexport.ui:173 msgctxt "graphicexport|label6" @@ -4342,7 +4342,7 @@ #: svtools/uiconfig/ui/placeedit.ui:111 msgctxt "placeedit|typeLabel" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: svtools/uiconfig/ui/placeedit.ui:127 msgctxt "placeedit|liststore1" @@ -4367,22 +4367,22 @@ #: svtools/uiconfig/ui/placeedit.ui:155 msgctxt "placeedit|hostLabel" msgid "Host:" -msgstr "主机:" +msgstr "主机:" #: svtools/uiconfig/ui/placeedit.ui:169 msgctxt "placeedit|pathLabel" msgid "Root:" -msgstr "根目录:" +msgstr "根目录:" #: svtools/uiconfig/ui/placeedit.ui:195 msgctxt "placeedit|shareLabel" msgid "Share:" -msgstr "共享:" +msgstr "共享:" #: svtools/uiconfig/ui/placeedit.ui:221 msgctxt "placeedit|repositoryLabel" msgid "Repository:" -msgstr "仓库:" +msgstr "仓库:" #: svtools/uiconfig/ui/placeedit.ui:233 msgctxt "placeedit|webdavs" @@ -4392,22 +4392,22 @@ #: svtools/uiconfig/ui/placeedit.ui:250 msgctxt "placeedit|loginLabel" msgid "User:" -msgstr "用户名:" +msgstr "用户名:" #: svtools/uiconfig/ui/placeedit.ui:276 msgctxt "placeedit|nameLabel" msgid "Label:" -msgstr "标签:" +msgstr "标签:" #: svtools/uiconfig/ui/placeedit.ui:320 msgctxt "placeedit|portLabel" msgid "Port:" -msgstr "端口:" +msgstr "端口:" #: svtools/uiconfig/ui/placeedit.ui:392 msgctxt "placeedit|passwordLabel" msgid "Password:" -msgstr "密码:" +msgstr "密码:" #: svtools/uiconfig/ui/placeedit.ui:415 msgctxt "placeedit|rememberPassword" @@ -4427,27 +4427,27 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:112 msgctxt "printersetupdialog|label2" msgid "Name:" -msgstr "名称:" +msgstr "名称:" #: svtools/uiconfig/ui/printersetupdialog.ui:126 msgctxt "printersetupdialog|label3" msgid "Status:" -msgstr "状态:" +msgstr "状态:" #: svtools/uiconfig/ui/printersetupdialog.ui:138 msgctxt "printersetupdialog|label4" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: svtools/uiconfig/ui/printersetupdialog.ui:150 msgctxt "printersetupdialog|label5" msgid "Location:" -msgstr "位置:" +msgstr "位置:" #: svtools/uiconfig/ui/printersetupdialog.ui:162 msgctxt "printersetupdialog|label6" msgid "Comment:" -msgstr "备注:" +msgstr "备注:" #: svtools/uiconfig/ui/printersetupdialog.ui:220 msgctxt "printersetupdialog|properties" @@ -4472,22 +4472,22 @@ #: svtools/uiconfig/ui/querydeletedialog.ui:14 msgctxt "querydeletedialog|QueryDeleteDialog" msgid "Entry: %s" -msgstr "条目:%s" +msgstr "条目: %s" #: svtools/uiconfig/ui/querydeletedialog.ui:25 msgctxt "querydeletedialog|yes" msgid "_Delete" -msgstr "删除(_D)" +msgstr "删除 (_D)" #: svtools/uiconfig/ui/querydeletedialog.ui:41 msgctxt "querydeletedialog|all" msgid "Delete _All" -msgstr "全部删除(_A)" +msgstr "全部删除 (_A)" #: svtools/uiconfig/ui/querydeletedialog.ui:56 msgctxt "querydeletedialog|no" msgid "Do _Not Delete" -msgstr "不要删除(_N)" +msgstr "不要删除 (_N)" #: svtools/uiconfig/ui/restartdialog.ui:8 msgctxt "restartdialog|RestartDialog" @@ -4522,7 +4522,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:115 msgctxt "restartdialog|reason_bibliography_install" msgid "For the bibliography to work properly, %PRODUCTNAME must be restarted." -msgstr "要使文献引用正常工作,必须重新启动 %PRODUCTNAME。" +msgstr "要使参考文献引用正常工作,必须重新启动 %PRODUCTNAME。" #: svtools/uiconfig/ui/restartdialog.ui:130 msgctxt "restartdialog|reason_assigning_folders" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/svx/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/svx/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/svx/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/svx/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-19 16:15+0100\n" -"PO-Revision-Date: 2018-11-25 06:56+0000\n" -"Last-Translator: elone \n" +"PO-Revision-Date: 2019-01-26 21:58+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543128995.000000\n" +"X-POOTLE-MTIME: 1548539907.000000\n" #: include/svx/strings.hrc:25 msgctxt "STR_ObjNameSingulNONE" @@ -1892,7 +1892,7 @@ #: include/svx/strings.hrc:402 msgctxt "SIP_SA_TEXT_CONTOURFRAME" msgid "Outline text flow" -msgstr "文字轮廓流" +msgstr "轮廓文字流" #: include/svx/strings.hrc:403 msgctxt "SIP_SA_XMLATTRIBUTES" @@ -2267,7 +2267,7 @@ #: include/svx/strings.hrc:477 msgctxt "SIP_EE_PARA_HYPHENATE" msgid "Hyphenation" -msgstr "断词处理" +msgstr "断词" #: include/svx/strings.hrc:478 msgctxt "SIP_EE_PARA_BULLETSTATE" @@ -2377,7 +2377,7 @@ #: include/svx/strings.hrc:499 msgctxt "SIP_EE_CHAR_PAIRKERNING" msgid "Kerning" -msgstr "字距微调 (Kerning)" +msgstr "字距微调" #: include/svx/strings.hrc:500 msgctxt "SIP_EE_CHAR_KERNING" @@ -2827,7 +2827,7 @@ #: include/svx/strings.hrc:593 msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA" msgid "Dark Magenta" -msgstr "" +msgstr "深洋红色" #: include/svx/strings.hrc:594 msgctxt "RID_SVXSTR_COLOR_DARKPURPLE" @@ -3091,22 +3091,22 @@ #: include/svx/strings.hrc:649 msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE" msgid "Box List Blue" -msgstr "列表蓝方框" +msgstr "蓝色列表框" #: include/svx/strings.hrc:650 msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN" msgid "Box List Green" -msgstr "列表绿方框" +msgstr "绿色列表框" #: include/svx/strings.hrc:651 msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED" msgid "Box List Red" -msgstr "列表红方框" +msgstr "红色列表框" #: include/svx/strings.hrc:652 msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW" msgid "Box List Yellow" -msgstr "列表黄方框" +msgstr "黄色列表框" #: include/svx/strings.hrc:653 msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT" @@ -3532,77 +3532,77 @@ #: include/svx/strings.hrc:746 msgctxt "RID_SVXSTR_GRDT70" msgid "Pastel Bouquet" -msgstr "" +msgstr "粉彩花束" #: include/svx/strings.hrc:747 msgctxt "RID_SVXSTR_GRDT71" msgid "Pastel Dream" -msgstr "" +msgstr "粉彩梦" #: include/svx/strings.hrc:748 msgctxt "RID_SVXSTR_GRDT72" msgid "Blue Touch" -msgstr "" +msgstr "蓝色触摸" #: include/svx/strings.hrc:749 msgctxt "RID_SVXSTR_GRDT73" msgid "Blank with Gray" -msgstr "" +msgstr "空白带灰" #: include/svx/strings.hrc:750 msgctxt "RID_SVXSTR_GRDT74" msgid "Spotted Gray" -msgstr "" +msgstr "斑点灰" #: include/svx/strings.hrc:751 msgctxt "RID_SVXSTR_GRDT75" msgid "London Mist" -msgstr "" +msgstr "伦敦迷雾" #: include/svx/strings.hrc:752 msgctxt "RID_SVXSTR_GRDT76" msgid "Teal to Blue" -msgstr "" +msgstr "蓝绿到蓝" #: include/svx/strings.hrc:753 msgctxt "RID_SVXSTR_GRDT77" msgid "Midnight" -msgstr "" +msgstr "午夜" #: include/svx/strings.hrc:754 msgctxt "RID_SVXSTR_GRDT78" msgid "Deep Ocean" -msgstr "" +msgstr "深海" #: include/svx/strings.hrc:755 msgctxt "RID_SVXSTR_GRDT79" msgid "Submarine" -msgstr "" +msgstr "海底" #: include/svx/strings.hrc:756 msgctxt "RID_SVXSTR_GRDT80" msgid "Green Grass" -msgstr "" +msgstr "青草" #: include/svx/strings.hrc:757 msgctxt "RID_SVXSTR_GRDT81" msgid "Neon Light" -msgstr "" +msgstr "霓虹灯" #: include/svx/strings.hrc:758 msgctxt "RID_SVXSTR_GRDT82" msgid "Sunshine" -msgstr "" +msgstr "阳光" #: include/svx/strings.hrc:759 msgctxt "RID_SVXSTR_GRDT83" msgid "Present" -msgstr "" +msgstr "存在" #: include/svx/strings.hrc:760 msgctxt "RID_SVXSTR_GRDT84" msgid "Mahagoni" -msgstr "" +msgstr "桃花心木" #. /gradients #: include/svx/strings.hrc:762 @@ -3668,97 +3668,97 @@ #: include/svx/strings.hrc:774 msgctxt "RID_SVXSTR_BMP1" msgid "Painted White" -msgstr "" +msgstr "漆白" #: include/svx/strings.hrc:775 msgctxt "RID_SVXSTR_BMP2" msgid "Paper Texture" -msgstr "" +msgstr "纸张纹理" #: include/svx/strings.hrc:776 msgctxt "RID_SVXSTR_BMP3" msgid "Paper Crumpled" -msgstr "" +msgstr "皱纸" #: include/svx/strings.hrc:777 msgctxt "RID_SVXSTR_BMP4" msgid "Paper Graph" -msgstr "" +msgstr "纸图" #: include/svx/strings.hrc:778 msgctxt "RID_SVXSTR_BMP5" msgid "Parchment Paper" -msgstr "" +msgstr "羊皮纸" #: include/svx/strings.hrc:779 msgctxt "RID_SVXSTR_BMP6" msgid "Fence" -msgstr "" +msgstr "栅栏" #: include/svx/strings.hrc:780 msgctxt "RID_SVXSTR_BMP7" msgid "Wooden Board" -msgstr "" +msgstr "木制板材" #: include/svx/strings.hrc:781 msgctxt "RID_SVXSTR_BMP8" msgid "Maple Leaves" -msgstr "" +msgstr "枫叶" #: include/svx/strings.hrc:782 msgctxt "RID_SVXSTR_BMP9" msgid "Lawn" -msgstr "" +msgstr "草坪" #: include/svx/strings.hrc:783 msgctxt "RID_SVXSTR_BMP10" msgid "Colorful Pebbles" -msgstr "" +msgstr "彩色鹅卵石" #: include/svx/strings.hrc:784 msgctxt "RID_SVXSTR_BMP11" msgid "Coffee Beans" -msgstr "" +msgstr "咖啡豆" #: include/svx/strings.hrc:785 msgctxt "RID_SVXSTR_BMP12" msgid "Little Clouds" -msgstr "" +msgstr "小云" #: include/svx/strings.hrc:786 msgctxt "RID_SVXSTR_BMP13" msgid "Bathroom Tiles" -msgstr "" +msgstr "浴室瓷砖" #: include/svx/strings.hrc:787 msgctxt "RID_SVXSTR_BMP14" msgid "Wall of Rock" -msgstr "" +msgstr "岩石墙" #: include/svx/strings.hrc:788 msgctxt "RID_SVXSTR_BMP15" msgid "Zebra" -msgstr "" +msgstr "斑马" #: include/svx/strings.hrc:789 msgctxt "RID_SVXSTR_BMP16" msgid "Color Stripes" -msgstr "" +msgstr "彩条" #: include/svx/strings.hrc:790 msgctxt "RID_SVXSTR_BMP17" msgid "Gravel" -msgstr "" +msgstr "沙砾" #: include/svx/strings.hrc:791 msgctxt "RID_SVXSTR_BMP18" msgid "Parchment Studio" -msgstr "" +msgstr "羊皮纸工作室" #: include/svx/strings.hrc:792 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "" +msgstr "夜空" #: include/svx/strings.hrc:793 msgctxt "RID_SVXSTR_BMP20" @@ -4371,7 +4371,7 @@ #: include/svx/strings.hrc:923 msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE" msgid "Image Export" -msgstr "图像导入" +msgstr "图像导出" #: include/svx/strings.hrc:924 msgctxt "RID_SVXSTR_SAVEAS_IMAGE" @@ -5197,7 +5197,7 @@ #: include/svx/strings.hrc:1106 msgctxt "RID_STR_PROPERTIES_CONTROL" msgid "Properties: " -msgstr "属性:" +msgstr "属性: " #: include/svx/strings.hrc:1107 msgctxt "RID_STR_PROPERTIES_FORM" @@ -5926,12 +5926,12 @@ #: include/svx/strings.hrc:1252 msgctxt "RID_SVXSTR_SEARCH" msgid "Search for formatting" -msgstr "" +msgstr "搜索格式" #: include/svx/strings.hrc:1253 msgctxt "RID_SVXSTR_REPLACE" msgid "Replace with formatting" -msgstr "" +msgstr "格式替换" #: include/svx/strings.hrc:1254 msgctxt "RID_SVXSTR_SEARCH_END" @@ -5941,7 +5941,7 @@ #: include/svx/strings.hrc:1255 msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED" msgid "Reached the end of the document, continued from the beginning" -msgstr "" +msgstr "已到达文档末尾,从头开始" #: include/svx/strings.hrc:1256 msgctxt "RID_SVXSTR_SEARCH_END_SHEET" @@ -5956,7 +5956,7 @@ #: include/svx/strings.hrc:1258 msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND" msgid "Navigation Element not found" -msgstr "" +msgstr "导航元素未找到" #: include/svx/strings.hrc:1259 msgctxt "RID_SVXSTR_SEARCH_START" @@ -5966,7 +5966,7 @@ #: include/svx/strings.hrc:1260 msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED" msgid "Reached the beginning of the document, continued from the end" -msgstr "" +msgstr "已到达文档开头,从末尾开始" #: include/svx/strings.hrc:1262 msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE" @@ -6016,12 +6016,12 @@ #: include/svx/strings.hrc:1273 msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6" msgid "Cross mark bullets" -msgstr "" +msgstr "十字标记项目符号" #: include/svx/strings.hrc:1274 msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7" msgid "Check mark bullets" -msgstr "" +msgstr "打勾标记项目符号" #: include/svx/strings.hrc:1275 msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0" @@ -6286,27 +6286,27 @@ #: include/svx/strings.hrc:1335 msgctxt "RID_SVXITEMS_MARGIN_LEFT" msgid "Left margin: " -msgstr "左方页边距:" +msgstr "左方页边距: " #: include/svx/strings.hrc:1336 msgctxt "RID_SVXITEMS_MARGIN_TOP" msgid "Top margin: " -msgstr "上方页边距:" +msgstr "上方页边距: " #: include/svx/strings.hrc:1337 msgctxt "RID_SVXITEMS_MARGIN_RIGHT" msgid "Right margin: " -msgstr "右方页边距:" +msgstr "右方页边距: " #: include/svx/strings.hrc:1338 msgctxt "RID_SVXITEMS_MARGIN_BOTTOM" msgid "Bottom margin: " -msgstr "下方页边距:" +msgstr "下方页边距: " #: include/svx/strings.hrc:1339 msgctxt "RID_SVXITEMS_PAGE_COMPLETE" msgid "Page Description: " -msgstr "页面说明:" +msgstr "页面说明: " #: include/svx/strings.hrc:1340 msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER" @@ -6371,17 +6371,17 @@ #: include/svx/strings.hrc:1352 msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE" msgid "Author: " -msgstr "作者:" +msgstr "作者: " #: include/svx/strings.hrc:1353 msgctxt "RID_SVXITEMS_DATE_COMPLETE" msgid "Date: " -msgstr "日期:" +msgstr "日期: " #: include/svx/strings.hrc:1354 msgctxt "RID_SVXITEMS_TEXT_COMPLETE" msgid "Text: " -msgstr "文字:" +msgstr "文字: " #: include/svx/strings.hrc:1355 msgctxt "RID_SVXITEMS_BRUSH_CHAR" @@ -7746,7 +7746,7 @@ #: include/svx/strings.hrc:1630 msgctxt "RID_SUBSETMAP" msgid "Marchen" -msgstr "Marchen" +msgstr "玛钦文(象雄文)" #: include/svx/strings.hrc:1631 msgctxt "RID_SUBSETMAP" @@ -7837,12 +7837,12 @@ #: include/svx/strings.hrc:1650 msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT" msgid "Right-to-left (vertical)" -msgstr "从右向左(竖写)" +msgstr "从右向左(竖排)" #: include/svx/strings.hrc:1651 msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT" msgid "Left-to-right (vertical)" -msgstr "从左向右(竖写)" +msgstr "从左向右(竖排)" #: include/svx/svxitems.hrc:33 msgctxt "RID_ATTR_NAMES" @@ -7917,7 +7917,7 @@ #: include/svx/svxitems.hrc:47 msgctxt "RID_ATTR_NAMES" msgid "Kerning" -msgstr "字距微调 (Kerning)" +msgstr "字距微调" #: include/svx/svxitems.hrc:48 msgctxt "RID_ATTR_NAMES" @@ -7967,7 +7967,7 @@ #: include/svx/svxitems.hrc:57 msgctxt "RID_ATTR_NAMES" msgid "Hyphenation" -msgstr "断词处理" +msgstr "断词" #: include/svx/svxitems.hrc:58 msgctxt "RID_ATTR_NAMES" @@ -8451,19 +8451,19 @@ #: svx/inc/numberingtype.hrc:38 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "1st, 2nd, 3rd, ..." -msgstr "" +msgstr "1st, 2nd, 3rd, ..." #. TEXT_NUMBER #: svx/inc/numberingtype.hrc:39 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "One, Two, Three, ..." -msgstr "" +msgstr "One, Two, Three, ..." #. TEXT_CARDINAL #: svx/inc/numberingtype.hrc:40 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "First, Second, Third, ..." -msgstr "" +msgstr "First, Second, Third, ..." #. TEXT_ORDINAL #: svx/inc/numberingtype.hrc:41 @@ -8583,19 +8583,19 @@ #: svx/inc/numberingtype.hrc:60 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "١, ٢, ٣, ٤, ... (Arabic)" -msgstr "" +msgstr "١, ٢, ٣, ٤, ... (阿拉伯语)" #. NUMBER_ARABIC_INDIC #: svx/inc/numberingtype.hrc:61 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "۱, ۲, ۳, ۴, ... (Farsi)" -msgstr "" +msgstr "۱, ۲, ۳, ۴, ... (波斯语)" #. NUMBER_EAST_ARABIC_INDIC #: svx/inc/numberingtype.hrc:62 msgctxt "RID_SVXSTRARY_NUMBERINGTYPE" msgid "१, २, ३, ..." -msgstr "" +msgstr "१, २, ३, ..." #: svx/inc/samecontent.hrc:18 msgctxt "RID_SVXSTRARY_SAMECONTENT" @@ -8900,12 +8900,12 @@ #: svx/inc/swframeposstrings.hrc:57 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: svx/inc/swframeposstrings.hrc:58 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: svx/inc/swframeposstrings.hrc:59 svx/inc/swframeposstrings.hrc:60 msgctxt "RID_SVXSW_FRAMEPOSITIONS" @@ -9770,12 +9770,12 @@ #: svx/uiconfig/ui/addconditiondialog.ui:28 msgctxt "addconditiondialog|label1" msgid "_Condition:" -msgstr "条件(_C):" +msgstr "条件(_C): " #: svx/uiconfig/ui/addconditiondialog.ui:69 msgctxt "addconditiondialog|label2" msgid "_Result:" -msgstr "结果(_R):" +msgstr "结果(_R): " #: svx/uiconfig/ui/addconditiondialog.ui:94 msgctxt "addconditiondialog|edit" @@ -9785,12 +9785,12 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:51 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N): " #: svx/uiconfig/ui/adddataitemdialog.ui:65 msgctxt "adddataitemdialog|valueft" msgid "_Default value:" -msgstr "默认值(_D):" +msgstr "默认值(_D): " #: svx/uiconfig/ui/adddataitemdialog.ui:76 msgctxt "adddataitemdialog|browse" @@ -9805,7 +9805,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:146 msgctxt "adddataitemdialog|datatypeft" msgid "_Data type:" -msgstr "数据类型(_D):" +msgstr "数据类型(_D): " #: svx/uiconfig/ui/adddataitemdialog.ui:169 msgctxt "adddataitemdialog|required" @@ -9870,7 +9870,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:103 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N): " #: svx/uiconfig/ui/addinstancedialog.ui:117 msgctxt "addinstancedialog|alttitle" @@ -9905,7 +9905,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:117 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N): " #: svx/uiconfig/ui/addmodeldialog.ui:131 msgctxt "addmodeldialog|alttitle" @@ -9920,7 +9920,7 @@ #: svx/uiconfig/ui/addnamespacedialog.ui:89 msgctxt "addnamespacedialog|label1" msgid "_Prefix:" -msgstr "前缀(_P):" +msgstr "前缀(_P): " #: svx/uiconfig/ui/addnamespacedialog.ui:129 msgctxt "addnamespacedialog|label2" @@ -9940,12 +9940,12 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:97 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N): " #: svx/uiconfig/ui/addsubmissiondialog.ui:111 msgctxt "addsubmissiondialog|urlft" msgid "Binding e_xpression:" -msgstr "绑定表达式(_X):" +msgstr "绑定表达式(_X): " #: svx/uiconfig/ui/addsubmissiondialog.ui:122 msgctxt "addsubmissiondialog|browse" @@ -9955,22 +9955,22 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:139 msgctxt "addsubmissiondialog|label3" msgid "_Action:" -msgstr "操作(_A):" +msgstr "操作(_A): " #: svx/uiconfig/ui/addsubmissiondialog.ui:166 msgctxt "addsubmissiondialog|label4" msgid "_Method:" -msgstr "方法(_M):" +msgstr "方法(_M): " #: svx/uiconfig/ui/addsubmissiondialog.ui:204 msgctxt "addsubmissiondialog|label5" msgid "_Binding:" -msgstr "绑定(_B):" +msgstr "绑定(_B): " #: svx/uiconfig/ui/addsubmissiondialog.ui:218 msgctxt "addsubmissiondialog|label6" msgid "_Replace:" -msgstr "替换(_R):" +msgstr "替换(_R): " #: svx/uiconfig/ui/asianphoneticguidedialog.ui:9 msgctxt "asianphoneticguidedialog|AsianPhoneticGuideDialog" @@ -10020,17 +10020,17 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:268 msgctxt "asianphoneticguidedialog|label4" msgid "Alignment:" -msgstr "对齐:" +msgstr "对齐: " #: svx/uiconfig/ui/asianphoneticguidedialog.ui:282 msgctxt "asianphoneticguidedialog|label5" msgid "Position:" -msgstr "位置:" +msgstr "位置: " #: svx/uiconfig/ui/asianphoneticguidedialog.ui:296 msgctxt "asianphoneticguidedialog|styleft" msgid "Character style for ruby text:" -msgstr "注音符号的字符样式:" +msgstr "注音符号的字符样式: " #: svx/uiconfig/ui/asianphoneticguidedialog.ui:319 msgctxt "asianphoneticguidedialog|styles" @@ -10065,22 +10065,22 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:352 msgctxt "asianphoneticguidedialog|positionlb" msgid "Top" -msgstr "顶端对齐" +msgstr "顶端" #: svx/uiconfig/ui/asianphoneticguidedialog.ui:353 msgctxt "asianphoneticguidedialog|positionlb" msgid "Bottom" -msgstr "底端对齐" +msgstr "底端" #: svx/uiconfig/ui/asianphoneticguidedialog.ui:354 msgctxt "asianphoneticguidedialog|positionlb" msgid "Right" -msgstr "" +msgstr "右侧" #: svx/uiconfig/ui/asianphoneticguidedialog.ui:377 msgctxt "asianphoneticguidedialog|label1" msgid "Preview:" -msgstr "预览:" +msgstr "预览: " #: svx/uiconfig/ui/cellmenu.ui:12 msgctxt "cellmenu|copy" @@ -10090,22 +10090,22 @@ #: svx/uiconfig/ui/charsetmenu.ui:12 msgctxt "charviewmenu|STR_CLEAR_CHAR" msgid "Insert into document" -msgstr "" +msgstr "插入文档" #: svx/uiconfig/ui/charsetmenu.ui:20 msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR" msgid "Add to favorites" -msgstr "" +msgstr "添加到收藏" #: svx/uiconfig/ui/charsetmenu.ui:28 msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR" msgid "Remove from favorites" -msgstr "" +msgstr "从收藏中移除" #: svx/uiconfig/ui/charsetmenu.ui:36 msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR" msgid "Copy to clipboard" -msgstr "" +msgstr "复制到剪贴板" #: svx/uiconfig/ui/chineseconversiondialog.ui:8 msgctxt "chineseconversiondialog|ChineseConversionDialog" @@ -10260,7 +10260,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:9 msgctxt "classificationdialog|dialogname" msgid "Classification" -msgstr "" +msgstr "保密分级" #: svx/uiconfig/ui/classificationdialog.ui:89 msgctxt "classificationdialog|label-Classification" @@ -10310,7 +10310,7 @@ #: svx/uiconfig/ui/classificationdialog.ui:326 msgctxt "classificationdialog|label-PartNumber" msgid "License:" -msgstr "" +msgstr "许可:" #: svx/uiconfig/ui/classificationdialog.ui:373 msgctxt "classificationdialog|label-IntellectualProperty" @@ -10580,27 +10580,27 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:530 msgctxt "compressgraphicdialog|label7" msgid "Actual dimensions:" -msgstr "实际维度:" +msgstr "实际维度: " #: svx/uiconfig/ui/compressgraphicdialog.ui:556 msgctxt "compressgraphicdialog|label8" msgid "Apparent dimensions:" -msgstr "显示的维度:" +msgstr "显示的维度: " #: svx/uiconfig/ui/compressgraphicdialog.ui:568 msgctxt "compressgraphicdialog|label9" msgid "Image size:" -msgstr "图像大小:" +msgstr "图像大小: " #: svx/uiconfig/ui/compressgraphicdialog.ui:619 msgctxt "compressgraphicdialog|label15" msgid "Type:" -msgstr "类型:" +msgstr "类型: " #: svx/uiconfig/ui/compressgraphicdialog.ui:643 msgctxt "compressgraphicdialog|calculate" msgid "Calculate New Size:" -msgstr "计算新的大小:" +msgstr "计算新的大小: " #: svx/uiconfig/ui/compressgraphicdialog.ui:662 msgctxt "compressgraphicdialog|label1" @@ -10938,12 +10938,12 @@ #: svx/uiconfig/ui/docking3deffects.ui:443 msgctxt "docking3deffects|label6" msgid "_Horizontal" -msgstr "水平(_H):" +msgstr "水平(_H): " #: svx/uiconfig/ui/docking3deffects.ui:482 msgctxt "docking3deffects|label7" msgid "_Vertical" -msgstr "垂直(_V):" +msgstr "垂直(_V): " #: svx/uiconfig/ui/docking3deffects.ui:517 msgctxt "docking3deffects|label10" @@ -11568,12 +11568,12 @@ #: svx/uiconfig/ui/docrecoverybrokendialog.ui:91 msgctxt "docrecoverybrokendialog|label3" msgid "Documents:" -msgstr "文档:" +msgstr "文档: " #: svx/uiconfig/ui/docrecoverybrokendialog.ui:124 msgctxt "docrecoverybrokendialog|label4" msgid "_Save to:" -msgstr "保存到(_S):" +msgstr "保存到(_S): " #: svx/uiconfig/ui/docrecoverybrokendialog.ui:154 msgctxt "docrecoverybrokendialog|change" @@ -11588,7 +11588,7 @@ #: svx/uiconfig/ui/docrecoveryprogressdialog.ui:42 msgctxt "docrecoveryprogressdialog|label2" msgid "Progress of saving:" -msgstr "保存进度:" +msgstr "保存进度: " #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:9 msgctxt "docrecoveryrecoverdialog|DocRecoveryRecoverDialog" @@ -11613,7 +11613,7 @@ #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:98 msgctxt "docrecoveryrecoverdialog|label2" msgid "Status of recovered documents:" -msgstr "已恢复文档的状态:" +msgstr "已恢复文档的状态: " #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:135 msgctxt "docrecoveryrecoverdialog|nameft" @@ -11638,7 +11638,7 @@ #: svx/uiconfig/ui/docrecoverysavedialog.ui:80 msgctxt "docrecoverysavedialog|label2" msgid "The following files will be recovered:" -msgstr "将恢复以下文件:" +msgstr "将恢复以下文件: " #: svx/uiconfig/ui/extrustiondepthdialog.ui:13 msgctxt "extrustiondepthdialog|ExtrustionDepthDialog" @@ -11683,7 +11683,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:135 msgctxt "findreplacedialog|label4" msgid "_Find:" -msgstr "查找(_F):" +msgstr "查找(_F): " #: svx/uiconfig/ui/findreplacedialog.ui:183 msgctxt "findreplacedialog|matchcase" @@ -11718,7 +11718,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:366 msgctxt "findreplacedialog|label5" msgid "Re_place:" -msgstr "替换(_P):" +msgstr "替换(_P): " #: svx/uiconfig/ui/findreplacedialog.ui:399 msgctxt "findreplacedialog|label2" @@ -11813,7 +11813,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:844 msgctxt "findreplacedialog|soundslikebtn" msgid "Sounds..." -msgstr "声音..." +msgstr "发音..." #: svx/uiconfig/ui/findreplacedialog.ui:870 msgctxt "findreplacedialog|wildcard" @@ -11833,7 +11833,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:944 msgctxt "findreplacedialog|searchinlabel" msgid "Search i_n:" -msgstr "查找范围(_N):" +msgstr "查找范围(_N): " #: svx/uiconfig/ui/findreplacedialog.ui:959 msgctxt "findreplacedialog|calcsearchin" @@ -11853,7 +11853,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:986 msgctxt "findreplacedialog|searchdir" msgid "Direction:" -msgstr "方向:" +msgstr "方向: " #: svx/uiconfig/ui/findreplacedialog.ui:1003 msgctxt "findreplacedialog|rows" @@ -11873,7 +11873,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:43 msgctxt "floatingareastyle|label1" msgid "_Angle:" -msgstr "角度(_A):" +msgstr "角度(_A): " #: svx/uiconfig/ui/floatingareastyle.ui:62 msgctxt "floatingareastyle|angle|tooltip_text" @@ -11893,12 +11893,12 @@ #: svx/uiconfig/ui/floatingareastyle.ui:147 msgctxt "floatingareastyle|label4" msgid "_Start value:" -msgstr "起始值(_S):" +msgstr "起始值(_S): " #: svx/uiconfig/ui/floatingareastyle.ui:161 msgctxt "floatingareastyle|label5" msgid "_End value:" -msgstr "结束值(_E):" +msgstr "结束值(_E): " #: svx/uiconfig/ui/floatingareastyle.ui:174 msgctxt "floatingareastyle|start|tooltip_text" @@ -11913,7 +11913,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:210 msgctxt "floatingareastyle|label6" msgid "_Border:" -msgstr "边框(_B):" +msgstr "边框(_B): " #: svx/uiconfig/ui/floatingareastyle.ui:223 msgctxt "floatingareastyle|border|tooltip_text" @@ -11923,12 +11923,12 @@ #: svx/uiconfig/ui/floatingareastyle.ui:248 msgctxt "floatingareastyle|label2" msgid "Center _X:" -msgstr "中心 _X:" +msgstr "中心 _X: " #: svx/uiconfig/ui/floatingareastyle.ui:262 msgctxt "floatingareastyle|label3" msgid "Center _Y:" -msgstr "中心 _Y:" +msgstr "中心 _Y: " #: svx/uiconfig/ui/floatingareastyle.ui:275 msgctxt "floatingareastyle|centerx|tooltip_text" @@ -11938,7 +11938,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:287 msgctxt "floatingareastyle|centery|tooltip_text" msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center." -msgstr "为渐变阴影样式指定从中心点开始的垂直偏移百分比。50%是垂直中心位置。" +msgstr "为渐变阴影样式指定从中心点开始的垂直偏移百分比。50% 是垂直中心位置。" #: svx/uiconfig/ui/floatingcontour.ui:17 msgctxt "floatingcontour|FloatingContour" @@ -12023,7 +12023,7 @@ #: svx/uiconfig/ui/floatinglineproperty.ui:53 msgctxt "floatinglineproperty|label1" msgid "Custom Line Width:" -msgstr "自定义行宽:" +msgstr "自定义行宽: " #: svx/uiconfig/ui/fontworkgallerydialog.ui:9 msgctxt "fontworkgallerydialog|FontworkGalleryDialog" @@ -12033,7 +12033,7 @@ #: svx/uiconfig/ui/fontworkgallerydialog.ui:87 msgctxt "fontworkgallerydialog|label1" msgid "Select a Fontwork style:" -msgstr "选择艺术字样式:" +msgstr "选择艺术字样式: " #: svx/uiconfig/ui/fontworkspacingdialog.ui:13 msgctxt "fontworkspacingdialog|FontworkSpacingDialog" @@ -12043,7 +12043,7 @@ #: svx/uiconfig/ui/fontworkspacingdialog.ui:32 msgctxt "fontworkspacingdialog|label2" msgid "_Value:" -msgstr "值(_V):" +msgstr "值(_V): " #: svx/uiconfig/ui/formdatamenu.ui:12 msgctxt "formdatamenu|additem" @@ -12289,7 +12289,7 @@ #: svx/uiconfig/ui/headfootformatpage.ui:218 msgctxt "headfootformatpage|labelSpacing" msgid "_Spacing:" -msgstr "间距(_S):" +msgstr "间距(_S): " #: svx/uiconfig/ui/headfootformatpage.ui:244 msgctxt "headfootformatpage|checkDynSpacing" @@ -12424,17 +12424,17 @@ #: svx/uiconfig/ui/imapdialog.ui:312 msgctxt "imapdialog|urlft" msgid "Address:" -msgstr "地址:" +msgstr "地址: " #: svx/uiconfig/ui/imapdialog.ui:347 msgctxt "imapdialog|targetft" msgid "Frame:" -msgstr "框架:" +msgstr "框架: " #: svx/uiconfig/ui/imapdialog.ui:402 msgctxt "imapdialog|textft" msgid "Text:" -msgstr "文本:" +msgstr "文本: " #: svx/uiconfig/ui/imapmenu.ui:12 msgctxt "imapmenu|url" @@ -12519,17 +12519,17 @@ #: svx/uiconfig/ui/mediaplayback.ui:22 msgctxt "mediaplayback|label1" msgid "Playback:" -msgstr "播放:" +msgstr "播放: " #: svx/uiconfig/ui/mediaplayback.ui:36 msgctxt "mediaplayback|label2" msgid "Seek:" -msgstr "搜索:" +msgstr "搜索: " #: svx/uiconfig/ui/mediaplayback.ui:50 msgctxt "mediaplayback|label3" msgid "Volume:" -msgstr "音量:" +msgstr "音量: " #: svx/uiconfig/ui/mediaplayback.ui:79 msgctxt "mediaplayback|zoombox|tooltip_text" @@ -12569,7 +12569,7 @@ #: svx/uiconfig/ui/oldcolorwindow.ui:59 msgctxt "oldcolorwindow|none_color_button" msgid "None" -msgstr "" +msgstr "无" #: svx/uiconfig/ui/oldcolorwindow.ui:128 msgctxt "oldcolorwindow|label1" @@ -12604,7 +12604,7 @@ #: svx/uiconfig/ui/optgridpage.ui:183 msgctxt "optgridpage|flddrawy" msgid "_Vertical:" -msgstr "垂直(_V):" +msgstr "垂直(_V): " #: svx/uiconfig/ui/optgridpage.ui:194 msgctxt "optgridpage|synchronize" @@ -12629,12 +12629,12 @@ #: svx/uiconfig/ui/optgridpage.ui:326 msgctxt "optgridpage|divisionx" msgid "Horizont_al:" -msgstr "水平(_A):" +msgstr "水平(_A): " #: svx/uiconfig/ui/optgridpage.ui:340 msgctxt "optgridpage|divisiony" msgid "V_ertical:" -msgstr "垂直(_E):" +msgstr "垂直(_E): " #: svx/uiconfig/ui/optgridpage.ui:357 msgctxt "optgridpage|label3" @@ -12664,7 +12664,7 @@ #: svx/uiconfig/ui/optgridpage.ui:481 msgctxt "optgridpage|label7" msgid "_Snap range:" -msgstr "吸附范围(_S):" +msgstr "吸附范围(_S): " #: svx/uiconfig/ui/optgridpage.ui:504 msgctxt "optgridpage|label6" @@ -12684,12 +12684,12 @@ #: svx/uiconfig/ui/optgridpage.ui:589 msgctxt "optgridpage|rotate" msgid "When ro_tating:" -msgstr "旋转时(_T):" +msgstr "旋转时(_T): " #: svx/uiconfig/ui/optgridpage.ui:622 msgctxt "optgridpage|label9" msgid "Point reducti_on:" -msgstr "降低点数(_O):" +msgstr "降低点数(_O): " #: svx/uiconfig/ui/optgridpage.ui:645 msgctxt "optgridpage|label8" @@ -12719,7 +12719,7 @@ #: svx/uiconfig/ui/paralinespacingcontrol.ui:163 msgctxt "paralinespacingcontrol|label3" msgid "Line Spacing:" -msgstr "行距:" +msgstr "行距: " #: svx/uiconfig/ui/paralinespacingcontrol.ui:182 msgctxt "paralinespacingcontrol|line_dist" @@ -12764,12 +12764,12 @@ #: svx/uiconfig/ui/paralinespacingcontrol.ui:204 msgctxt "paralinespacingcontrol|value_label" msgid "Value:" -msgstr "值:" +msgstr "值: " #: svx/uiconfig/ui/paralinespacingcontrol.ui:265 msgctxt "paralinespacingcontrol|label2" msgid "Custom Value" -msgstr "自定义值:" +msgstr "自定义值: " #: svx/uiconfig/ui/paralrspacing.ui:37 msgctxt "paralrspacing|beforetextindent|tooltip_text" @@ -12804,7 +12804,7 @@ #: svx/uiconfig/ui/passwd.ui:106 msgctxt "passwd|oldpassL" msgid "_Password:" -msgstr "密码(_P):" +msgstr "密码(_P): " #: svx/uiconfig/ui/passwd.ui:140 msgctxt "passwd|oldpass" @@ -12814,12 +12814,12 @@ #: svx/uiconfig/ui/passwd.ui:206 msgctxt "passwd|label4" msgid "Pa_ssword:" -msgstr "密码(_S):" +msgstr "密码(_S): " #: svx/uiconfig/ui/passwd.ui:220 msgctxt "passwd|label5" msgid "Confi_rm:" -msgstr "确认(_R):" +msgstr "确认(_R): " #: svx/uiconfig/ui/passwd.ui:238 msgctxt "passwd|label2" @@ -12973,17 +12973,17 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:31 msgctxt "redlinefilterpage|date" msgid "_Date:" -msgstr "日期(_D):" +msgstr "日期(_D): " #: svx/uiconfig/ui/redlinefilterpage.ui:46 msgctxt "redlinefilterpage|author" msgid "_Author:" -msgstr "作者(_A):" +msgstr "作者(_A): " #: svx/uiconfig/ui/redlinefilterpage.ui:61 msgctxt "redlinefilterpage|comment" msgid "C_omment:" -msgstr "批注(_O):" +msgstr "批注(_O): " #: svx/uiconfig/ui/redlinefilterpage.ui:86 msgctxt "redlinefilterpage|commentedit-atkobject" @@ -12993,7 +12993,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:97 msgctxt "redlinefilterpage|range" msgid "_Range:" -msgstr "区域(_R):" +msgstr "区域(_R): " #: svx/uiconfig/ui/redlinefilterpage.ui:122 msgctxt "redlinefilterpage|actionlist-atkobject" @@ -13003,7 +13003,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:133 msgctxt "redlinefilterpage|action" msgid "A_ction:" -msgstr "操作(_C):" +msgstr "操作(_C): " #: svx/uiconfig/ui/redlinefilterpage.ui:158 msgctxt "redlinefilterpage|authorlist-atkobject" @@ -13308,7 +13308,7 @@ #: svx/uiconfig/ui/safemodedialog.ui:432 msgctxt "safemodedialog|btn_create_zip" msgid "Archive User Profile" -msgstr "" +msgstr "归档用户配置文件" #: svx/uiconfig/ui/safemodedialog.ui:445 msgctxt "safemodedialog|linkbutton_profile" @@ -13353,12 +13353,12 @@ #: svx/uiconfig/ui/sidebararea.ui:40 msgctxt "sidebararea|filllabel|tooltip_text" msgid "Fill:" -msgstr "填充:" +msgstr "填充: " #: svx/uiconfig/ui/sidebararea.ui:42 msgctxt "sidebararea|filllabel" msgid "_Fill:" -msgstr "填充(_F):" +msgstr "填充(_F): " #: svx/uiconfig/ui/sidebararea.ui:66 msgctxt "sidebararea|color|tooltip_text" @@ -13458,7 +13458,7 @@ #: svx/uiconfig/ui/sidebararea.ui:234 msgctxt "sidebararea|transparencylabel" msgid "_Transparency:" -msgstr "透明(_T):" +msgstr "透明(_T): " #: svx/uiconfig/ui/sidebararea.ui:249 msgctxt "sidebararea|transtype|tooltip_text" @@ -13533,7 +13533,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:46 msgctxt "sidebargraphic|brightnesslabel" msgid "_Brightness:" -msgstr "亮度(_B):" +msgstr "亮度(_B): " #: svx/uiconfig/ui/sidebargraphic.ui:61 msgctxt "sidebargraphic|setbrightness|tooltip_text" @@ -13548,7 +13548,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:82 msgctxt "sidebargraphic|contrastlabel" msgid "_Contrast:" -msgstr "对比度(_C):" +msgstr "对比度(_C): " #: svx/uiconfig/ui/sidebargraphic.ui:97 msgctxt "sidebargraphic|setcontrast|tooltip_text" @@ -13563,7 +13563,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:118 msgctxt "sidebargraphic|colorlmodelabel" msgid "Color _mode:" -msgstr "色彩模式(_M):" +msgstr "色彩模式(_M): " #: svx/uiconfig/ui/sidebargraphic.ui:137 msgctxt "sidebargraphic|setcolormode-atkobject" @@ -13573,7 +13573,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:150 msgctxt "sidebargraphic|transparencylabel" msgid "_Transparency:" -msgstr "透明(_T):" +msgstr "透明(_T): " #: svx/uiconfig/ui/sidebargraphic.ui:165 msgctxt "sidebargraphic|settransparency|tooltip_text" @@ -13658,7 +13658,7 @@ #: svx/uiconfig/ui/sidebarline.ui:113 msgctxt "sidebarline|widthlabel" msgid "_Width:" -msgstr "宽度(_W):" +msgstr "宽度(_W): " #: svx/uiconfig/ui/sidebarline.ui:130 msgctxt "sidebarline|width|tooltip_text" @@ -13668,7 +13668,7 @@ #: svx/uiconfig/ui/sidebarline.ui:159 msgctxt "sidebarline|colorlabel" msgid "_Color:" -msgstr "颜色(_C):" +msgstr "颜色(_C): " #: svx/uiconfig/ui/sidebarline.ui:175 msgctxt "sidebarline|color|tooltip_text" @@ -13683,7 +13683,7 @@ #: svx/uiconfig/ui/sidebarline.ui:204 msgctxt "sidebarline|translabel" msgid "_Transparency:" -msgstr "透明(_T):" +msgstr "透明(_T): " #: svx/uiconfig/ui/sidebarline.ui:220 msgctxt "sidebarline|linetransparency|tooltip_text" @@ -13698,7 +13698,7 @@ #: svx/uiconfig/ui/sidebarline.ui:261 msgctxt "sidebarline|cornerlabel" msgid "_Corner style:" -msgstr "拐角样式(_C):" +msgstr "拐角样式(_C): " #: svx/uiconfig/ui/sidebarline.ui:278 msgctxt "sidebarline|edgestyle|tooltip_text" @@ -13733,7 +13733,7 @@ #: svx/uiconfig/ui/sidebarline.ui:302 msgctxt "sidebarline|caplabel" msgid "Ca_p style:" -msgstr "顶端样式(_P):" +msgstr "顶端样式(_P): " #: svx/uiconfig/ui/sidebarline.ui:319 msgctxt "sidebarline|linecapstyle|tooltip_text" @@ -13778,7 +13778,7 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:238 msgctxt "sidebarparagraph|spacinglabel" msgid "_Spacing:" -msgstr "间距(_S):" +msgstr "间距(_S): " #: svx/uiconfig/ui/sidebarparagraph.ui:254 msgctxt "sidebarparagraph|paraspacing|tooltip_text" @@ -13813,7 +13813,7 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:430 msgctxt "sidebarparagraph|indentlabel" msgid "_Indent:" -msgstr "缩进(_I):" +msgstr "缩进(_I): " #: svx/uiconfig/ui/sidebarparagraph.ui:446 msgctxt "sidebarparagraph|indent|tooltip_text" @@ -13988,12 +13988,12 @@ #: svx/uiconfig/ui/sidebarshadow.ui:117 msgctxt "sidebarshadow|transparency_label" msgid "Transparency:" -msgstr "透明度:" +msgstr "透明度: " #: svx/uiconfig/ui/sidebarshadow.ui:180 msgctxt "sidebarshadow|color" msgid "Color:" -msgstr "颜色:" +msgstr "颜色: " #: svx/uiconfig/ui/stylemenu.ui:12 msgctxt "stylemenu|update" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-10-29 18:39+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-24 09:33+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1540838353.000000\n" +"X-POOTLE-MTIME: 1548322410.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -84,7 +84,7 @@ #: sw/inc/app.hrc:47 msgctxt "RID_CHARACTERSTYLEFAMILY" msgid "Hidden Styles" -msgstr "隐藏的样式样式" +msgstr "隐藏的样式" #: sw/inc/app.hrc:48 msgctxt "RID_CHARACTERSTYLEFAMILY" @@ -199,7 +199,7 @@ #: sw/inc/cnttab.hrc:33 msgctxt "RES_SRCTYPES" msgid "Other OLE Objects" -msgstr "其他OLE对象" +msgstr "其他 OLE 对象" #: sw/inc/dbui.hrc:45 msgctxt "SA_ADDRESS_HEADER" @@ -342,7 +342,7 @@ #: sw/inc/error.hrc:49 msgctxt "RID_SW_ERRHDL" msgid "Additional columns cannot be inserted." -msgstr "无法插入额外的列。" +msgstr "无法继续插入列。" #: sw/inc/error.hrc:50 msgctxt "RID_SW_ERRHDL" @@ -370,8 +370,8 @@ "This HTML document contains %PRODUCTNAME Basic macros.\n" "They were not saved with the current export settings." msgstr "" -"这个HTML文档含有 %PRODUCTNAME Basic 宏。\n" -"无法使用当前的导出设置来保存这些宏。" +"该 HTML 文档含有 %PRODUCTNAME Basic 宏。\n" +"以当前的导出设置,这些宏不会被保存。" #: sw/inc/mmaddressblockpage.hrc:27 msgctxt "RA_SALUTATION" @@ -391,12 +391,12 @@ #: sw/inc/mmaddressblockpage.hrc:34 msgctxt "RA_PUNCTUATION" msgid "," -msgstr "‘" +msgstr "," #: sw/inc/mmaddressblockpage.hrc:35 msgctxt "RA_PUNCTUATION" msgid ":" -msgstr ":" +msgstr ":" #: sw/inc/mmaddressblockpage.hrc:36 msgctxt "RA_PUNCTUATION" @@ -761,7 +761,7 @@ #: sw/inc/strings.hrc:88 msgctxt "STR_POOLCOLL_NUM_NONUM1" msgid "Numbering 1 Cont." -msgstr "编号 1 继续" +msgstr "有序列表 1 续" #: sw/inc/strings.hrc:89 msgctxt "STR_POOLCOLL_NUM_LEVEL2S" @@ -781,7 +781,7 @@ #: sw/inc/strings.hrc:92 msgctxt "STR_POOLCOLL_NUM_NONUM2" msgid "Numbering 2 Cont." -msgstr "编号 2 继续" +msgstr "有序列表 2 续" #: sw/inc/strings.hrc:93 msgctxt "STR_POOLCOLL_NUM_LEVEL3S" @@ -801,7 +801,7 @@ #: sw/inc/strings.hrc:96 msgctxt "STR_POOLCOLL_NUM_NONUM3" msgid "Numbering 3 Cont." -msgstr "编号 3 继续" +msgstr "有序列表 3 续" #: sw/inc/strings.hrc:97 msgctxt "STR_POOLCOLL_NUM_LEVEL4S" @@ -821,7 +821,7 @@ #: sw/inc/strings.hrc:100 msgctxt "STR_POOLCOLL_NUM_NONUM4" msgid "Numbering 4 Cont." -msgstr "编号 4 继续" +msgstr "有序列表 4 续" #: sw/inc/strings.hrc:101 msgctxt "STR_POOLCOLL_NUM_LEVEL5S" @@ -841,7 +841,7 @@ #: sw/inc/strings.hrc:104 msgctxt "STR_POOLCOLL_NUM_NONUM5" msgid "Numbering 5 Cont." -msgstr "编号 5 继续" +msgstr "有序列表 5 续" #: sw/inc/strings.hrc:105 msgctxt "STR_POOLCOLL_BUL_LEVEL1S" @@ -861,7 +861,7 @@ #: sw/inc/strings.hrc:108 msgctxt "STR_POOLCOLL_BUL_NONUM1" msgid "List 1 Cont." -msgstr "项目符号 1 继续" +msgstr "无序列表 1 续" #: sw/inc/strings.hrc:109 msgctxt "STR_POOLCOLL_BUL_LEVEL2S" @@ -881,7 +881,7 @@ #: sw/inc/strings.hrc:112 msgctxt "STR_POOLCOLL_BUL_NONUM2" msgid "List 2 Cont." -msgstr "项目符号 2 继续" +msgstr "无序列表 2 续" #: sw/inc/strings.hrc:113 msgctxt "STR_POOLCOLL_BUL_LEVEL3S" @@ -901,7 +901,7 @@ #: sw/inc/strings.hrc:116 msgctxt "STR_POOLCOLL_BUL_NONUM3" msgid "List 3 Cont." -msgstr "项目符号 3 继续" +msgstr "无序列表 3 续" #: sw/inc/strings.hrc:117 msgctxt "STR_POOLCOLL_BUL_LEVEL4S" @@ -921,7 +921,7 @@ #: sw/inc/strings.hrc:120 msgctxt "STR_POOLCOLL_BUL_NONUM4" msgid "List 4 Cont." -msgstr "项目符号 4 继续" +msgstr "无序列表 4 续" #: sw/inc/strings.hrc:121 msgctxt "STR_POOLCOLL_BUL_LEVEL5S" @@ -941,7 +941,7 @@ #: sw/inc/strings.hrc:124 msgctxt "STR_POOLCOLL_BUL_NONUM5" msgid "List 5 Cont." -msgstr "项目符号 5 继续" +msgstr "无序列表 5 续" #: sw/inc/strings.hrc:125 msgctxt "STR_POOLCOLL_HEADER" @@ -1026,7 +1026,7 @@ #: sw/inc/strings.hrc:141 msgctxt "STR_POOLCOLL_LABEL_FIGURE" msgid "Figure" -msgstr "" +msgstr "图示" #: sw/inc/strings.hrc:142 msgctxt "STR_POOLCOLL_JAKETADRESS" @@ -1066,57 +1066,57 @@ #: sw/inc/strings.hrc:149 msgctxt "STR_POOLCOLL_TOX_CNTNTH" msgid "Contents Heading" -msgstr "内容目录标题" +msgstr "目录标题" #: sw/inc/strings.hrc:150 msgctxt "STR_POOLCOLL_TOX_CNTNT1" msgid "Contents 1" -msgstr "内容目录 1" +msgstr "目录 1" #: sw/inc/strings.hrc:151 msgctxt "STR_POOLCOLL_TOX_CNTNT2" msgid "Contents 2" -msgstr "内容目录 2" +msgstr "目录 2" #: sw/inc/strings.hrc:152 msgctxt "STR_POOLCOLL_TOX_CNTNT3" msgid "Contents 3" -msgstr "内容目录 3" +msgstr "目录 3" #: sw/inc/strings.hrc:153 msgctxt "STR_POOLCOLL_TOX_CNTNT4" msgid "Contents 4" -msgstr "内容目录 4" +msgstr "目录 4" #: sw/inc/strings.hrc:154 msgctxt "STR_POOLCOLL_TOX_CNTNT5" msgid "Contents 5" -msgstr "内容目录 5" +msgstr "目录 5" #: sw/inc/strings.hrc:155 msgctxt "STR_POOLCOLL_TOX_CNTNT6" msgid "Contents 6" -msgstr "内容目录 6" +msgstr "目录 6" #: sw/inc/strings.hrc:156 msgctxt "STR_POOLCOLL_TOX_CNTNT7" msgid "Contents 7" -msgstr "内容目录 7" +msgstr "目录 7" #: sw/inc/strings.hrc:157 msgctxt "STR_POOLCOLL_TOX_CNTNT8" msgid "Contents 8" -msgstr "内容目录 8" +msgstr "目录 8" #: sw/inc/strings.hrc:158 msgctxt "STR_POOLCOLL_TOX_CNTNT9" msgid "Contents 9" -msgstr "内容目录 9" +msgstr "目录 9" #: sw/inc/strings.hrc:159 msgctxt "STR_POOLCOLL_TOX_CNTNT10" msgid "Contents 10" -msgstr "内容目录 10" +msgstr "目录 10" #: sw/inc/strings.hrc:160 msgctxt "STR_POOLCOLL_TOX_USERH" @@ -1181,12 +1181,12 @@ #: sw/inc/strings.hrc:172 msgctxt "STR_POOLCOLL_TOX_ILLUSH" msgid "Figure Index Heading" -msgstr "" +msgstr "图示索引标题" #: sw/inc/strings.hrc:173 msgctxt "STR_POOLCOLL_TOX_ILLUS1" msgid "Figure Index 1" -msgstr "" +msgstr "图示索引 1" #: sw/inc/strings.hrc:174 msgctxt "STR_POOLCOLL_TOX_OBJECTH" @@ -1211,12 +1211,12 @@ #: sw/inc/strings.hrc:178 msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH" msgid "Bibliography Heading" -msgstr "文献目录标题" +msgstr "参考文献标题" #: sw/inc/strings.hrc:179 msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1" msgid "Bibliography 1" -msgstr "文献目录 1" +msgstr "参考文献 1" #. Document title style, not to be confused with Heading style #: sw/inc/strings.hrc:181 @@ -1471,7 +1471,7 @@ #: sw/inc/strings.hrc:235 msgctxt "STR_REMOVE_WARNING" msgid "The following characters are not valid and have been removed: " -msgstr "下列字符无效,已被移除:" +msgstr "下列字符无效,已被移除: " #: sw/inc/strings.hrc:236 msgctxt "STR_BOOKMARK_DEF_NAME" @@ -1637,27 +1637,27 @@ #: sw/inc/strings.hrc:269 msgctxt "STR_ABSTRACT_TITLE" msgid "Abstract: " -msgstr "摘要: " +msgstr "摘要: " #: sw/inc/strings.hrc:270 msgctxt "STR_FDLG_TEMPLATE_NAME" msgid "separated by: " -msgstr "分隔方式: " +msgstr "分隔方式: " #: sw/inc/strings.hrc:271 msgctxt "STR_FDLG_OUTLINE_LEVEL" msgid "Outline: Level " -msgstr "大纲:级别 " +msgstr "大纲: 级别 " #: sw/inc/strings.hrc:272 msgctxt "STR_FDLG_STYLE" msgid "Style: " -msgstr "样式: " +msgstr "样式: " #: sw/inc/strings.hrc:273 msgctxt "STR_PAGEOFFSET" msgid "Page number: " -msgstr "页码: " +msgstr "页码: " #: sw/inc/strings.hrc:274 msgctxt "STR_PAGEBREAK" @@ -1667,17 +1667,17 @@ #: sw/inc/strings.hrc:275 msgctxt "STR_WESTERN_FONT" msgid "Western text: " -msgstr "西方文字:" +msgstr "西方文字: " #: sw/inc/strings.hrc:276 msgctxt "STR_CJK_FONT" msgid "Asian text: " -msgstr "亚洲文字:" +msgstr "亚洲文字: " #: sw/inc/strings.hrc:277 msgctxt "STR_CTL_FONT" msgid "CTL text: " -msgstr "" +msgstr "复杂文字: " #: sw/inc/strings.hrc:278 msgctxt "STR_REDLINE_UNKNOWN_AUTHOR" @@ -1707,7 +1707,7 @@ #: sw/inc/strings.hrc:283 msgctxt "STR_STATUSBAR_WORDCOUNT" msgid "%1 words, %2 characters selected" -msgstr "已选择::%1 个字词, %2 个字符" +msgstr "已选择:: %1 个字词, %2 个字符" #: sw/inc/strings.hrc:284 msgctxt "STR_CONVERT_TEXT_TABLE" @@ -1732,7 +1732,7 @@ #: sw/inc/strings.hrc:288 msgctxt "STR_DEL_AUTOFORMAT_MSG" msgid "The following AutoFormat entry will be deleted:" -msgstr "以下的自动格式将被删除:" +msgstr "以下的自动格式将被删除:" #: sw/inc/strings.hrc:289 msgctxt "STR_RENAME_AUTOFORMAT_TITLE" @@ -1803,7 +1803,7 @@ #: sw/inc/strings.hrc:301 msgctxt "STR_COL" msgid "Column" -msgstr "列" +msgstr "分栏" #: sw/inc/strings.hrc:302 msgctxt "STR_AUTHMRK_EDIT" @@ -1823,7 +1823,7 @@ #: sw/inc/strings.hrc:305 msgctxt "STR_ACCESS_COLUMN_WIDTH" msgid "Column %1 Width" -msgstr "列 %1 宽度" +msgstr "栏 %1 宽度" #: sw/inc/strings.hrc:306 msgctxt "STR_CAPTION_TABLE" @@ -2004,7 +2004,7 @@ #: sw/inc/strings.hrc:343 msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11" msgid "This is the content from chapter 1.1. This is the entry for the table of contents." -msgstr "这是第 1.1 章节的内容。这是内容目录的条目。" +msgstr "这是第 1.1 章节的内容。这是目录的条目。" #: sw/inc/strings.hrc:344 msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12" @@ -2108,7 +2108,7 @@ #: sw/inc/strings.hrc:363 msgctxt "STR_HYPH_TITLE" msgid "Hyphenation" -msgstr "断词处理" +msgstr "断词" #: sw/inc/strings.hrc:366 msgctxt "STR_CANT_UNDO" @@ -2128,7 +2128,7 @@ #: sw/inc/strings.hrc:369 msgctxt "STR_OVR_UNDO" msgid "Overwrite: $1" -msgstr "覆盖:$1" +msgstr "覆盖: $1" #: sw/inc/strings.hrc:370 msgctxt "STR_SPLITNODE_UNDO" @@ -2148,7 +2148,7 @@ #: sw/inc/strings.hrc:373 msgctxt "STR_SETFMTCOLL_UNDO" msgid "Apply Styles: $1" -msgstr "应用样式:$1" +msgstr "应用样式: $1" #: sw/inc/strings.hrc:374 msgctxt "STR_RESET_ATTR_UNDO" @@ -2158,7 +2158,7 @@ #: sw/inc/strings.hrc:375 msgctxt "STR_INSFMT_ATTR_UNDO" msgid "Change style: $1" -msgstr "变更样式:$1" +msgstr "变更样式: $1" #: sw/inc/strings.hrc:376 msgctxt "STR_INSERT_DOC_UNDO" @@ -2173,12 +2173,12 @@ #: sw/inc/strings.hrc:378 msgctxt "STR_DELBOOKMARK" msgid "Delete bookmark: $1" -msgstr "删除书签:$1" +msgstr "删除书签: $1" #: sw/inc/strings.hrc:379 msgctxt "STR_INSBOOKMARK" msgid "Insert bookmark: $1" -msgstr "插入书签:$1" +msgstr "插入书签: $1" #: sw/inc/strings.hrc:380 msgctxt "STR_SORT_TBL" @@ -2193,7 +2193,7 @@ #: sw/inc/strings.hrc:382 msgctxt "STR_INSTABLE_UNDO" msgid "Insert table: $1$2$3" -msgstr "插入表格:$1$2$3" +msgstr "插入表格: $1$2$3" #: sw/inc/strings.hrc:383 msgctxt "STR_TEXTTOTABLE_UNDO" @@ -2208,7 +2208,7 @@ #: sw/inc/strings.hrc:385 msgctxt "STR_COPY_UNDO" msgid "Copy: $1" -msgstr "复制:$1" +msgstr "复制: $1" #: sw/inc/strings.hrc:386 msgctxt "STR_REPLACE_UNDO" @@ -2233,12 +2233,12 @@ #: sw/inc/strings.hrc:390 msgctxt "STR_DRAG_AND_COPY" msgid "Copy: $1" -msgstr "复制:$1" +msgstr "复制: $1" #: sw/inc/strings.hrc:391 msgctxt "STR_DRAG_AND_MOVE" msgid "Move: $1" -msgstr "移动:$1" +msgstr "移动: $1" #: sw/inc/strings.hrc:392 msgctxt "STR_INSERT_CHART" @@ -2268,7 +2268,7 @@ #: sw/inc/strings.hrc:397 msgctxt "STR_REPLACE" msgid "Replace: $1 $2 $3" -msgstr "替换:$1 $2 $3" +msgstr "替换: $1 $2 $3" #: sw/inc/strings.hrc:398 msgctxt "STR_INSERTSECTION" @@ -2293,7 +2293,7 @@ #: sw/inc/strings.hrc:402 msgctxt "STR_REPLACE_STYLE" msgid "Replace style: $1 $2 $3" -msgstr "替换样式:$1 $2 $3" +msgstr "替换样式: $1 $2 $3" #: sw/inc/strings.hrc:403 msgctxt "STR_DELETE_PAGE_BREAK" @@ -2338,7 +2338,7 @@ #: sw/inc/strings.hrc:411 msgctxt "STR_INSERTDRAW" msgid "Insert drawing object: $1" -msgstr "插入绘图对象:$1" +msgstr "插入绘图对象: $1" #: sw/inc/strings.hrc:412 msgctxt "STR_NUMORNONUM" @@ -2358,7 +2358,7 @@ #: sw/inc/strings.hrc:415 msgctxt "STR_INSERTLABEL" msgid "Insert caption: $1" -msgstr "插入题注:$1" +msgstr "插入题注: $1" #: sw/inc/strings.hrc:416 msgctxt "STR_SETNUMRULESTART" @@ -2373,12 +2373,12 @@ #: sw/inc/strings.hrc:418 msgctxt "STR_ACCEPT_REDLINE" msgid "Accept change: $1" -msgstr "接受变更:$1" +msgstr "接受变更: $1" #: sw/inc/strings.hrc:419 msgctxt "STR_REJECT_REDLINE" msgid "Reject change: $1" -msgstr "拒绝变更:$1" +msgstr "拒绝变更: $1" #: sw/inc/strings.hrc:420 msgctxt "STR_SPLIT_TABLE" @@ -2413,7 +2413,7 @@ #: sw/inc/strings.hrc:426 msgctxt "STR_DRAWUNDO" msgid "Drawing objects: $1" -msgstr "绘图对象:$1" +msgstr "绘图对象: $1" #: sw/inc/strings.hrc:427 msgctxt "STR_DRAWGROUP" @@ -2493,12 +2493,12 @@ #: sw/inc/strings.hrc:442 msgctxt "STR_INSERT_TOX" msgid "Insert index/table" -msgstr "插入索引和目录" +msgstr "插入索引/目录" #: sw/inc/strings.hrc:443 msgctxt "STR_CLEAR_TOX_RANGE" msgid "Remove index/table" -msgstr "移除索引和目录" +msgstr "移除索引/目录" #: sw/inc/strings.hrc:444 msgctxt "STR_TABLE_TBLCPYTBL" @@ -2538,7 +2538,7 @@ #: sw/inc/strings.hrc:451 msgctxt "STR_UNDO_SETFLYFRMFMT" msgid "Apply frame style: $1" -msgstr "应用框架样式:$1" +msgstr "应用框架样式: $1" #: sw/inc/strings.hrc:452 msgctxt "STR_UNDO_SETRUBYATTR" @@ -2593,7 +2593,7 @@ #: sw/inc/strings.hrc:462 msgctxt "STR_TYPING_UNDO" msgid "Typing: $1" -msgstr "键入:$1" +msgstr "键入: $1" #: sw/inc/strings.hrc:463 msgctxt "STR_PASTE_CLIPBOARD_UNDO" @@ -2688,22 +2688,22 @@ #: sw/inc/strings.hrc:481 msgctxt "STR_UNDO_PAGEDESC" msgid "Change page style: $1" -msgstr "修改页面样式:$1" +msgstr "修改页面样式: $1" #: sw/inc/strings.hrc:482 msgctxt "STR_UNDO_PAGEDESC_CREATE" msgid "Create page style: $1" -msgstr "创建页面样式:$1" +msgstr "创建页面样式: $1" #: sw/inc/strings.hrc:483 msgctxt "STR_UNDO_PAGEDESC_DELETE" msgid "Delete page style: $1" -msgstr "删除页面样式:$1" +msgstr "删除页面样式: $1" #: sw/inc/strings.hrc:484 msgctxt "STR_UNDO_PAGEDESC_RENAME" msgid "Rename page style: $1 $2 $3" -msgstr "重命名页面样式:$1 $2 $3" +msgstr "重命名页面样式: $1 $2 $3" #: sw/inc/strings.hrc:485 msgctxt "STR_UNDO_HEADER_FOOTER" @@ -2718,67 +2718,67 @@ #: sw/inc/strings.hrc:487 msgctxt "STR_UNDO_TXTFMTCOL_CREATE" msgid "Create paragraph style: $1" -msgstr "创建段落样式:$1" +msgstr "创建段落样式: $1" #: sw/inc/strings.hrc:488 msgctxt "STR_UNDO_TXTFMTCOL_DELETE" msgid "Delete paragraph style: $1" -msgstr "删除段落样式:$1" +msgstr "删除段落样式: $1" #: sw/inc/strings.hrc:489 msgctxt "STR_UNDO_TXTFMTCOL_RENAME" msgid "Rename paragraph style: $1 $2 $3" -msgstr "重命名段落样式:$1 $2 $3" +msgstr "重命名段落样式: $1 $2 $3" #: sw/inc/strings.hrc:490 msgctxt "STR_UNDO_CHARFMT_CREATE" msgid "Create character style: $1" -msgstr "创建字符样式:$1" +msgstr "创建字符样式: $1" #: sw/inc/strings.hrc:491 msgctxt "STR_UNDO_CHARFMT_DELETE" msgid "Delete character style: $1" -msgstr "删除字符样式:$1" +msgstr "删除字符样式: $1" #: sw/inc/strings.hrc:492 msgctxt "STR_UNDO_CHARFMT_RENAME" msgid "Rename character style: $1 $2 $3" -msgstr "重命名字符样式:$1 $2 $3" +msgstr "重命名字符样式: $1 $2 $3" #: sw/inc/strings.hrc:493 msgctxt "STR_UNDO_FRMFMT_CREATE" msgid "Create frame style: $1" -msgstr "创建框架样式:$1" +msgstr "创建框架样式: $1" #: sw/inc/strings.hrc:494 msgctxt "STR_UNDO_FRMFMT_DELETE" msgid "Delete frame style: $1" -msgstr "删除框架样式:$1" +msgstr "删除框架样式: $1" #: sw/inc/strings.hrc:495 msgctxt "STR_UNDO_FRMFMT_RENAME" msgid "Rename frame style: $1 $2 $3" -msgstr "重命名框架样式:$1 $2 $3" +msgstr "重命名框架样式: $1 $2 $3" #: sw/inc/strings.hrc:496 msgctxt "STR_UNDO_NUMRULE_CREATE" msgid "Create numbering style: $1" -msgstr "创建编号样式:$1" +msgstr "创建编号样式: $1" #: sw/inc/strings.hrc:497 msgctxt "STR_UNDO_NUMRULE_DELETE" msgid "Delete numbering style: $1" -msgstr "删除编号样式:$1" +msgstr "删除编号样式: $1" #: sw/inc/strings.hrc:498 msgctxt "STR_UNDO_NUMRULE_RENAME" msgid "Rename numbering style: $1 $2 $3" -msgstr "重命名编号样式:$1 $2 $3" +msgstr "重命名编号样式: $1 $2 $3" #: sw/inc/strings.hrc:499 msgctxt "STR_UNDO_BOOKMARK_RENAME" msgid "Rename bookmark: $1 $2 $3" -msgstr "重命名书签:$1 $2 $3" +msgstr "重命名书签: $1 $2 $3" #: sw/inc/strings.hrc:500 msgctxt "STR_UNDO_INDEX_ENTRY_INSERT" @@ -2839,7 +2839,7 @@ #: sw/inc/strings.hrc:512 msgctxt "STR_AUTHORITY_ENTRY" msgid "bibliography entry" -msgstr "文献目录条目" +msgstr "参考文献条目" #: sw/inc/strings.hrc:513 msgctxt "STR_SPECIALCHAR" @@ -2864,7 +2864,7 @@ #: sw/inc/strings.hrc:517 msgctxt "STR_TABLE_NAME" msgid "table: $1$2$3" -msgstr "表格:$1$2$3" +msgstr "表格: $1$2$3" #: sw/inc/strings.hrc:518 msgctxt "STR_PARAGRAPH_UNDO" @@ -2889,17 +2889,17 @@ #: sw/inc/strings.hrc:522 msgctxt "STR_UNDO_TBLSTYLE_CREATE" msgid "Create table style: $1" -msgstr "创建表格样式:$1" +msgstr "创建表格样式: $1" #: sw/inc/strings.hrc:523 msgctxt "STR_UNDO_TBLSTYLE_DELETE" msgid "Delete table style: $1" -msgstr "删除表格样式:$1" +msgstr "删除表格样式: $1" #: sw/inc/strings.hrc:524 msgctxt "STR_UNDO_TBLSTYLE_UPDATE" msgid "Update table style: $1" -msgstr "更新表格样式:$1" +msgstr "更新表格样式: $1" #: sw/inc/strings.hrc:525 msgctxt "STR_UNDO_TABLE_DELETE" @@ -2969,7 +2969,7 @@ #: sw/inc/strings.hrc:539 msgctxt "STR_ACCESS_PAGE_DESC" msgid "Page: $(ARG1)" -msgstr "页:$(ARG1)" +msgstr "页: $(ARG1)" #: sw/inc/strings.hrc:540 msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME" @@ -3024,18 +3024,18 @@ #: sw/inc/strings.hrc:552 msgctxt "STR_COLUMN_BREAK" msgid "Manual Column Break" -msgstr "手动换列" +msgstr "手动分栏" #: sw/inc/strings.hrc:554 msgctxt "STR_CHART2_ROW_LABEL_TEXT" msgid "Row %ROWNUMBER" -msgstr "行 %ROWNUMBER" +msgstr "%ROWNUMBER 行" #: sw/inc/strings.hrc:555 #, c-format msgctxt "STR_CHART2_COL_LABEL_TEXT" msgid "Column %COLUMNLETTER" -msgstr "列 %COLUMNLETTER" +msgstr "%COLUMNLETTER 列" #: sw/inc/strings.hrc:556 msgctxt "STR_STYLE_FAMILY_CHARACTER" @@ -3105,7 +3105,7 @@ #: sw/inc/strings.hrc:570 msgctxt "STR_PRINTOPTUI_PICTURES" msgid "~Images and other graphic objects" -msgstr "" +msgstr "图像及其他图形对象(~I)" #: sw/inc/strings.hrc:571 msgctxt "STR_PRINTOPTUI_HIDDEN" @@ -3425,7 +3425,7 @@ #: sw/inc/strings.hrc:636 msgctxt "STR_BROKEN_LINK" msgid "File not found: " -msgstr "文件未找到:" +msgstr "文件未找到: " #: sw/inc/strings.hrc:637 msgctxt "STR_RENAME" @@ -3455,32 +3455,32 @@ #: sw/inc/strings.hrc:643 msgctxt "STR_MARGIN_TOOLTIP_LEFT" msgid "Left: " -msgstr "左侧:" +msgstr "左侧: " #: sw/inc/strings.hrc:644 msgctxt "STR_MARGIN_TOOLTIP_RIGHT" msgid ". Right: " -msgstr "右侧:" +msgstr "。右侧: " #: sw/inc/strings.hrc:645 msgctxt "STR_MARGIN_TOOLTIP_INNER" msgid "Inner: " -msgstr "内侧:" +msgstr "内侧: " #: sw/inc/strings.hrc:646 msgctxt "STR_MARGIN_TOOLTIP_OUTER" msgid ". Outer: " -msgstr "外侧:" +msgstr "。外侧:" #: sw/inc/strings.hrc:647 msgctxt "STR_MARGIN_TOOLTIP_TOP" msgid ". Top: " -msgstr "顶部:" +msgstr "。顶部: " #: sw/inc/strings.hrc:648 msgctxt "STR_MARGIN_TOOLTIP_BOT" msgid ". Bottom: " -msgstr "底部:" +msgstr "。底部: " #. Error calculator #: sw/inc/strings.hrc:651 @@ -3536,7 +3536,7 @@ #: sw/inc/strings.hrc:661 msgctxt "STR_GETREFFLD_REFITEMNOTFOUND" msgid "Error: Reference source not found" -msgstr "错误:引用源未找到" +msgstr "错误: 引用源未找到" #: sw/inc/strings.hrc:662 msgctxt "STR_TEMPLATE_NONE" @@ -3566,12 +3566,12 @@ #: sw/inc/strings.hrc:667 msgctxt "STR_TOC" msgid "Table of Contents" -msgstr "内容目录" +msgstr "目录" #: sw/inc/strings.hrc:668 msgctxt "STR_TOX_AUTH" msgid "Bibliography" -msgstr "文献目录" +msgstr "参考文献" #: sw/inc/strings.hrc:669 msgctxt "STR_TOX_CITATION" @@ -3591,7 +3591,7 @@ #: sw/inc/strings.hrc:672 msgctxt "STR_TOX_ILL" msgid "Table of Figures" -msgstr "" +msgstr "图示表" #: sw/inc/strings.hrc:673 #, c-format @@ -3778,7 +3778,7 @@ #: sw/inc/strings.hrc:710 msgctxt "STR_AUTH_FIELD_IDENTIFIER" msgid "Short name" -msgstr "短名称" +msgstr "简称" #: sw/inc/strings.hrc:711 msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE" @@ -3943,7 +3943,7 @@ #: sw/inc/strings.hrc:744 msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY" msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?" -msgstr "文档中已经包含该文献条目,但是具有不同的数据。您想要调整已有的条目吗?" +msgstr "文档中已经包含该参考文献条目,但数据不同。是否要调整已有的条目?" #: sw/inc/strings.hrc:746 msgctxt "STR_COMMENTS_LABEL" @@ -3963,7 +3963,7 @@ #: sw/inc/strings.hrc:750 msgctxt "STR_DOUBLE_SHORTNAME" msgid "Shortcut name already exists. Please choose another name." -msgstr "已经存在这个缩写。请输入另外一个缩写名称!" +msgstr "快捷键名称已存在。请选择其他名称。" #: sw/inc/strings.hrc:751 msgctxt "STR_QUERY_DELETE" @@ -4028,22 +4028,22 @@ #: sw/inc/strings.hrc:764 msgctxt "STR_PRIVATETEXT" msgid "%PRODUCTNAME %PRODUCTVERSION Text Document" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION 文本文档" #: sw/inc/strings.hrc:765 msgctxt "STR_PRIVATEGRAPHIC" msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)" -msgstr "" +msgstr "图像 (%PRODUCTNAME %PRODUCTVERSION 文本文档)" #: sw/inc/strings.hrc:766 msgctxt "STR_PRIVATEOLE" msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)" -msgstr "" +msgstr "对象 (%PRODUCTNAME %PRODUCTVERSION 文本文档)" #: sw/inc/strings.hrc:767 msgctxt "STR_DDEFORMAT" msgid "Dynamic Data Exchange (DDE link)" -msgstr "" +msgstr "动态数据交换 (DDE 链接)" #: sw/inc/strings.hrc:769 msgctxt "STR_DELETE_ALL_NOTES" @@ -4058,7 +4058,7 @@ #: sw/inc/strings.hrc:771 msgctxt "STR_DELETE_AUTHOR_NOTES" msgid "Comments by " -msgstr "以下作者的批注" +msgstr "批注人 " #: sw/inc/strings.hrc:772 msgctxt "STR_NODATE" @@ -4158,7 +4158,7 @@ #: sw/inc/strings.hrc:793 msgctxt "STR_NOTASSIGNED" msgid " not yet matched " -msgstr "仍不匹配" +msgstr " 尚未匹配 " #: sw/inc/strings.hrc:794 msgctxt "STR_FILTER_ALL" @@ -4512,7 +4512,7 @@ #: sw/inc/strings.hrc:873 msgctxt "STR_AUTHORITY" msgid "Bibliography entry" -msgstr "文献目录条目" +msgstr "参考文献条目" #: sw/inc/strings.hrc:874 msgctxt "STR_HIDDENPARAFLD" @@ -4928,12 +4928,12 @@ #: sw/inc/strings.hrc:983 msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE" msgid "Article a/az + " -msgstr "" +msgstr "文章 a/az + " #: sw/inc/strings.hrc:984 msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE" msgid "Article A/Az + " -msgstr "" +msgstr "文章 A/Az + " #. -------------------------------------------------------------------- #. Description: placeholder @@ -5069,7 +5069,7 @@ #: sw/inc/strings.hrc:1019 msgctxt "STR_SERVICE_UNAVAILABLE" msgid "The following service is not available: " -msgstr "以下服务不可用:" +msgstr "以下服务不可用: " #: sw/inc/strings.hrc:1021 msgctxt "STR_WORDCOUNT_HINT" @@ -5094,12 +5094,12 @@ #: sw/inc/strings.hrc:1025 msgctxt "STR_BOOKCTRL_HINT" msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list." -msgstr "" +msgstr "文档中的页码。点击打开「转到页面」对话框,或右击打开书签列表。" #: sw/inc/strings.hrc:1026 msgctxt "STR_BOOKCTRL_HINT_EXTENDED" msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog." -msgstr "" +msgstr "文档中的页码(打印出来的文档的页码)。点击打开「转到页面」对话框。" #: sw/inc/strings.hrc:1027 msgctxt "STR_TMPLCTRL_HINT" @@ -5215,22 +5215,22 @@ #: sw/inc/strings.hrc:1051 msgctxt "STR_SURROUND_ANCHORONLY" msgid "(Anchor only)" -msgstr "(只是锚定)" +msgstr "(仅锚点)" #: sw/inc/strings.hrc:1052 msgctxt "STR_FRM_WIDTH" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: sw/inc/strings.hrc:1053 msgctxt "STR_FRM_FIXEDHEIGHT" msgid "Fixed height:" -msgstr "固定高度:" +msgstr "固定高度:" #: sw/inc/strings.hrc:1054 msgctxt "STR_FRM_MINHEIGHT" msgid "Min. height:" -msgstr "最小高度:" +msgstr "最小高度:" #: sw/inc/strings.hrc:1055 msgctxt "STR_FLY_AT_PARA" @@ -5250,12 +5250,12 @@ #: sw/inc/strings.hrc:1058 msgctxt "STR_POS_X" msgid "X Coordinate:" -msgstr "X 坐标:" +msgstr "X 坐标:" #: sw/inc/strings.hrc:1059 msgctxt "STR_POS_Y" msgid "Y Coordinate:" -msgstr "Y 坐标:" +msgstr "Y 坐标:" #: sw/inc/strings.hrc:1060 msgctxt "STR_VERT_TOP" @@ -5335,12 +5335,12 @@ #: sw/inc/strings.hrc:1075 msgctxt "STR_LINE_WIDTH" msgid "Separator Width:" -msgstr "分隔线宽度:" +msgstr "分隔线宽度:" #: sw/inc/strings.hrc:1076 msgctxt "STR_MAX_FTN_HEIGHT" msgid "Max. footnote area:" -msgstr "最大脚注区域:" +msgstr "最大脚注区域:" #: sw/inc/strings.hrc:1077 msgctxt "STR_EDIT_IN_READONLY" @@ -5385,42 +5385,42 @@ #: sw/inc/strings.hrc:1085 msgctxt "STR_LINCOUNT_START" msgid "restart line count with: " -msgstr "重新开始计算行数从:" +msgstr "行数重新统计初始值: " #: sw/inc/strings.hrc:1086 msgctxt "STR_LUMINANCE" msgid "Brightness: " -msgstr "亮度:" +msgstr "亮度: " #: sw/inc/strings.hrc:1087 msgctxt "STR_CHANNELR" msgid "Red: " -msgstr "红色:" +msgstr "红色: " #: sw/inc/strings.hrc:1088 msgctxt "STR_CHANNELG" msgid "Green: " -msgstr "绿色:" +msgstr "绿色: " #: sw/inc/strings.hrc:1089 msgctxt "STR_CHANNELB" msgid "Blue: " -msgstr "蓝色:" +msgstr "蓝色: " #: sw/inc/strings.hrc:1090 msgctxt "STR_CONTRAST" msgid "Contrast: " -msgstr "对比度: " +msgstr "对比度: " #: sw/inc/strings.hrc:1091 msgctxt "STR_GAMMA" msgid "Gamma: " -msgstr "Gamma:" +msgstr "Gamma: " #: sw/inc/strings.hrc:1092 msgctxt "STR_TRANSPARENCY" msgid "Transparency: " -msgstr "透明度:" +msgstr "透明度: " #: sw/inc/strings.hrc:1093 msgctxt "STR_INVERT" @@ -5435,7 +5435,7 @@ #: sw/inc/strings.hrc:1095 msgctxt "STR_DRAWMODE" msgid "Graphics mode: " -msgstr "图形模式:" +msgstr "图形模式: " #: sw/inc/strings.hrc:1096 msgctxt "STR_DRAWMODE_STD" @@ -5480,12 +5480,12 @@ #: sw/inc/strings.hrc:1104 msgctxt "STR_FOLLOW_TEXT_FLOW" msgid "Follow text flow" -msgstr "跟随文本流" +msgstr "跟随文字流" #: sw/inc/strings.hrc:1105 msgctxt "STR_DONT_FOLLOW_TEXT_FLOW" msgid "Do not follow text flow" -msgstr "不跟随文本流" +msgstr "不跟随文字流" #: sw/inc/strings.hrc:1106 msgctxt "STR_CONNECT_BORDER_ON" @@ -5560,7 +5560,7 @@ #: sw/inc/strings.hrc:1121 msgctxt "ST_MARK" msgid "Reminder" -msgstr "提示" +msgstr "提醒" #: sw/inc/strings.hrc:1122 msgctxt "ST_POSTIT" @@ -5575,7 +5575,7 @@ #: sw/inc/strings.hrc:1124 msgctxt "ST_INDEX_ENTRY" msgid "Index entry" -msgstr "索引项" +msgstr "索引条目" #: sw/inc/strings.hrc:1125 msgctxt "ST_TABLE_FORMULA" @@ -5651,7 +5651,7 @@ #: sw/inc/strings.hrc:1140 msgctxt "STR_IMGBTN_MARK_DOWN" msgid "Next Reminder" -msgstr "下一个标记" +msgstr "下一个提醒" #: sw/inc/strings.hrc:1141 msgctxt "STR_IMGBTN_POSTIT_DOWN" @@ -5666,7 +5666,7 @@ #: sw/inc/strings.hrc:1143 msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN" msgid "Next index entry" -msgstr "下一个索引项" +msgstr "下一个索引条目" #: sw/inc/strings.hrc:1144 msgctxt "STR_IMGBTN_TBL_UP" @@ -5731,7 +5731,7 @@ #: sw/inc/strings.hrc:1156 msgctxt "STR_IMGBTN_MARK_UP" msgid "Previous Reminder" -msgstr "上一个标记" +msgstr "上一个提醒" #: sw/inc/strings.hrc:1157 msgctxt "STR_IMGBTN_POSTIT_UP" @@ -5746,7 +5746,7 @@ #: sw/inc/strings.hrc:1159 msgctxt "STR_IMGBTN_INDEX_ENTRY_UP" msgid "Previous index entry" -msgstr "上一个索引项" +msgstr "上一个索引条目" #: sw/inc/strings.hrc:1160 msgctxt "STR_IMGBTN_TBLFML_UP" @@ -5801,7 +5801,7 @@ #: sw/inc/strings.hrc:1171 msgctxt "STR_REDLINE_TABLE_ROW_INSERT" msgid "Row Inserted" -msgstr "已插入了行。" +msgstr "已插入行" #: sw/inc/strings.hrc:1172 msgctxt "STR_REDLINE_TABLE_ROW_DELETE" @@ -5821,12 +5821,12 @@ #: sw/inc/strings.hrc:1175 msgctxt "STR_ENDNOTE" msgid "Endnote: " -msgstr "尾注:" +msgstr "尾注: " #: sw/inc/strings.hrc:1176 msgctxt "STR_FTNNOTE" msgid "Footnote: " -msgstr "脚注:" +msgstr "脚注: " #: sw/inc/strings.hrc:1177 #, c-format @@ -5932,7 +5932,7 @@ #: sw/inc/strings.hrc:1198 msgctxt "STR_REDLINE_COMMENT" msgid "Comment: " -msgstr "注释: " +msgstr "注释: " #: sw/inc/strings.hrc:1199 msgctxt "STR_REDLINE_INSERTED" @@ -6054,12 +6054,12 @@ #: sw/inc/strings.hrc:1226 msgctxt "STR_LEVEL" msgid "Level " -msgstr "级别" +msgstr "级别 " #: sw/inc/strings.hrc:1227 msgctxt "STR_FILE_NOT_FOUND" msgid "The file, \"%1\" in the \"%2\" path could not be found." -msgstr "在路径 \"%2\" 中无法找到文件 \"%1\" 。" +msgstr "无法在路径「%2」中找到文件「%1」。" #: sw/inc/strings.hrc:1228 msgctxt "STR_USER_DEFINED_INDEX" @@ -6164,12 +6164,12 @@ #: sw/inc/strings.hrc:1248 msgctxt "STR_TOKEN_HELP_AUTHORITY" msgid "Bibliography entry: " -msgstr "文献条目: " +msgstr "参考文献条目: " #: sw/inc/strings.hrc:1249 msgctxt "STR_CHARSTYLE" msgid "Character Style: " -msgstr "字符样式: " +msgstr "字符样式: " #: sw/inc/strings.hrc:1250 msgctxt "STR_STRUCTURE" @@ -6227,7 +6227,7 @@ #: sw/inc/strings.hrc:1264 msgctxt "STR_FRMUI_COLL_HEADER" msgid " (Template: " -msgstr "(模板: " +msgstr " (模板: " #: sw/inc/strings.hrc:1265 msgctxt "STR_FRMUI_BORDER" @@ -6242,7 +6242,7 @@ #: sw/inc/strings.hrc:1268 msgctxt "STR_TEXTCOLL_HEADER" msgid "(Paragraph Style: " -msgstr "(段落样式: " +msgstr "(段落样式: " #: sw/inc/strings.hrc:1269 msgctxt "STR_ILLEGAL_PAGENUM" @@ -6277,7 +6277,7 @@ #: sw/inc/strings.hrc:1278 msgctxt "STR_HYP_OK" msgid "Hyphenation completed" -msgstr "断字处理已完成" +msgstr "断词已完成" #: sw/inc/strings.hrc:1279 msgctxt "STR_LANGSTATUS_NONE" @@ -6322,7 +6322,7 @@ #: sw/inc/strings.hrc:1288 msgctxt "STR_ERR_NO_FAX" msgid "No fax printer has been set under Tools/Options/%1/Print." -msgstr "在“工具/选项/%1/打印”中没有设置传真打印机" +msgstr "在“工具/选项/%1/打印”中没有设置传真打印机。" #: sw/inc/strings.hrc:1289 msgctxt "STR_WEBOPTIONS" @@ -6397,7 +6397,7 @@ #: sw/inc/strings.hrc:1304 msgctxt "ST_SENDINGTO" msgid "Sending to: %1" -msgstr "发送至:%1" +msgstr "发送至: %1" #: sw/inc/strings.hrc:1305 msgctxt "ST_COMPLETED" @@ -6448,7 +6448,7 @@ #: sw/inc/strings.hrc:1325 msgctxt "STR_VALID" msgid " Valid " -msgstr "有效" +msgstr " 有效 " #: sw/inc/strings.hrc:1326 msgctxt "STR_INVALID" @@ -6688,7 +6688,7 @@ #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:81 msgctxt "alreadyexistsdialog|label1" msgid "Subject:" -msgstr "" +msgstr "主题:" #: sw/uiconfig/swriter/ui/annotationmenu.ui:12 msgctxt "annotationmenu|reply" @@ -6823,7 +6823,7 @@ #: sw/uiconfig/swriter/ui/attachnamedialog.ui:81 msgctxt "attachnamedialog|label1" msgid "Name:" -msgstr "名称:" +msgstr "名称:" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:14 msgctxt "authenticationsettingsdialog|AuthenticationSettingsDialog" @@ -6848,12 +6848,12 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:155 msgctxt "authenticationsettingsdialog|username_label" msgid "_User name:" -msgstr "用户名(_U):" +msgstr "用户名(_U):" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:185 msgctxt "authenticationsettingsdialog|outpassword_label" msgid "_Password:" -msgstr "密码(_P):" +msgstr "密码(_P):" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:197 msgctxt "authenticationsettingsdialog|smtpafterpop" @@ -6868,17 +6868,17 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:246 msgctxt "authenticationsettingsdialog|server_label" msgid "Server _name:" -msgstr "服务器名称:(_N)" +msgstr "服务器名称: (_N)" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:273 msgctxt "authenticationsettingsdialog|port_label" msgid "P_ort:" -msgstr "端口(_O):" +msgstr "端口(_O):" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:288 msgctxt "authenticationsettingsdialog|label3" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:298 msgctxt "authenticationsettingsdialog|pop3" @@ -6893,12 +6893,12 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:362 msgctxt "authenticationsettingsdialog|inusername_label" msgid "Us_er name:" -msgstr "用户名:(_E)" +msgstr "用户名: (_E)" #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:377 msgctxt "authenticationsettingsdialog|inpassword_label" msgid "Pass_word:" -msgstr "密码:(_W)" +msgstr "密码: (_W)" #: sw/uiconfig/swriter/ui/autoformattable.ui:16 msgctxt "autoformattable|AutoFormatTableDialog" @@ -6993,12 +6993,12 @@ #: sw/uiconfig/swriter/ui/autotext.ui:230 msgctxt "autotext|nameft" msgid "Name:" -msgstr "名称:" +msgstr "名称:" #: sw/uiconfig/swriter/ui/autotext.ui:243 msgctxt "autotext|shortnameft" msgid "Shortcut:" -msgstr "快捷键:" +msgstr "快捷键:" #: sw/uiconfig/swriter/ui/autotext.ui:297 msgctxt "autotext|category-atkobject" @@ -7058,7 +7058,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:7 msgctxt "bibliographyentry|BibliographyEntryDialog" msgid "Insert Bibliography Entry" -msgstr "插入文献目录条目" +msgstr "插入参考文献条目" #: sw/uiconfig/swriter/ui/bibliographyentry.ui:20 msgctxt "bibliographyentry|insert" @@ -7083,12 +7083,12 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:185 msgctxt "bibliographyentry|label5" msgid "Short name" -msgstr "简短说明文" +msgstr "简称" #: sw/uiconfig/swriter/ui/bibliographyentry.ui:224 msgctxt "bibliographyentry|frombibliography" msgid "From bibliography database" -msgstr "从文献数据库" +msgstr "从参考文献数据库" #: sw/uiconfig/swriter/ui/bibliographyentry.ui:243 msgctxt "bibliographyentry|fromdocument" @@ -7148,27 +7148,27 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:30 msgctxt "businessdatapage|label5" msgid "Company:" -msgstr "公司名称:" +msgstr "公司名称:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:44 msgctxt "businessdatapage|streetft" msgid "Slogan:" -msgstr "口号:" +msgstr "口号:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:58 msgctxt "businessdatapage|countryft" msgid "Co_untry/state:" -msgstr "国家/州(_U):" +msgstr "国家/州(_U):" #: sw/uiconfig/swriter/ui/businessdatapage.ui:72 msgctxt "businessdatapage|label8" msgid "Position:" -msgstr "职位:" +msgstr "职位:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:86 msgctxt "businessdatapage|phoneft" msgid "Fa_x:" -msgstr "传真(_X):" +msgstr "传真(_X):" #: sw/uiconfig/swriter/ui/businessdatapage.ui:91 msgctxt "businessdatapage|phoneft-atkobject" @@ -7178,7 +7178,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:105 msgctxt "businessdatapage|faxft" msgid "Homepage/e-mail:" -msgstr "网址/e-mail:" +msgstr "网址/e-mail:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:127 msgctxt "businessdatapage|company-atkobject" @@ -7208,7 +7208,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:251 msgctxt "businessdatapage|eastnameft" msgid "Company 2nd line:" -msgstr "公司名称第二行:" +msgstr "公司名称第二行:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:273 msgctxt "businessdatapage|company2-atkobject" @@ -7218,7 +7218,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:293 msgctxt "businessdatapage|icityft" msgid "_Zip/city:" -msgstr "邮编/城市(_Z):" +msgstr "邮编/城市(_Z):" #: sw/uiconfig/swriter/ui/businessdatapage.ui:315 msgctxt "businessdatapage|icity-atkobject" @@ -7233,7 +7233,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:411 msgctxt "businessdatapage|titleft1" msgid "Phone/mobile:" -msgstr "电话/手机:" +msgstr "电话/手机:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:434 msgctxt "businessdatapage|phone-atkobject" @@ -7248,7 +7248,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:471 msgctxt "businessdatapage|streetft1" msgid "Street:" -msgstr "街道:" +msgstr "街道:" #: sw/uiconfig/swriter/ui/businessdatapage.ui:511 msgctxt "businessdatapage|label1" @@ -7283,12 +7283,12 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:129 msgctxt "captionoptions|label5" msgid "_Level:" -msgstr "级别(_L):" +msgstr "级别(_L):" #: sw/uiconfig/swriter/ui/captionoptions.ui:143 msgctxt "captionoptions|label6" msgid "_Separator:" -msgstr "分隔符(_S):" +msgstr "分隔符(_S):" #: sw/uiconfig/swriter/ui/captionoptions.ui:161 msgctxt "captionoptions|label1" @@ -7298,7 +7298,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:198 msgctxt "captionoptions|label4" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: sw/uiconfig/swriter/ui/captionoptions.ui:221 msgctxt "captionoptions|border_and_shadow" @@ -7313,7 +7313,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:281 msgctxt "captionoptions|label7" msgid "Caption order:" -msgstr "题注顺序:" +msgstr "题注顺序:" #: sw/uiconfig/swriter/ui/captionoptions.ui:297 msgctxt "captionoptions|liststore1" @@ -7338,22 +7338,22 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:81 msgctxt "cardmediumpage|label2" msgid "Label text:" -msgstr "标签文本:" +msgstr "标签文本:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:141 msgctxt "cardmediumpage|label4" msgid "Database:" -msgstr "数据库:" +msgstr "数据库:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:179 msgctxt "cardmediumpage|label7" msgid "Table:" -msgstr "表:" +msgstr "表:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:217 msgctxt "cardmediumpage|label8" msgid "Database field:" -msgstr "数据库字段:" +msgstr "数据库字段:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:255 msgctxt "cardmediumpage|insert|tooltip_text" @@ -7378,12 +7378,12 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:368 msgctxt "cardmediumpage|label5" msgid "Brand:" -msgstr "品牌:" +msgstr "品牌:" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:382 msgctxt "cardmediumpage|label3" msgid "_Type:" -msgstr "类型(_T):" +msgstr "类型(_T):" #: sw/uiconfig/swriter/ui/cardmediumpage.ui:457 msgctxt "cardmediumpage|label1" @@ -7398,17 +7398,17 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:102 msgctxt "ccdialog|label2" msgid "_Cc:" -msgstr "抄送(_C):" +msgstr "抄送(_C):" #: sw/uiconfig/swriter/ui/ccdialog.ui:116 msgctxt "ccdialog|label3" msgid "_Bcc:" -msgstr "密送(_B):" +msgstr "密送(_B):" #: sw/uiconfig/swriter/ui/ccdialog.ui:130 msgctxt "ccdialog|label4" msgid "Note: Separate e-mail addresses with a semicolon (;)." -msgstr "提示:电子邮件地址以分号 (;) 隔开。" +msgstr "提示: 电子邮件地址以分号 (;) 隔开。" #: sw/uiconfig/swriter/ui/ccdialog.ui:170 msgctxt "ccdialog|label1" @@ -7463,17 +7463,17 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:48 msgctxt "charurlpage|label37" msgid "Name:" -msgstr "名称:" +msgstr "名称:" #: sw/uiconfig/swriter/ui/charurlpage.ui:62 msgctxt "charurlpage|textft" msgid "Text:" -msgstr "文本:" +msgstr "文本:" #: sw/uiconfig/swriter/ui/charurlpage.ui:76 msgctxt "charurlpage|label39" msgid "Target frame:" -msgstr "目标框架:" +msgstr "目标框架:" #: sw/uiconfig/swriter/ui/charurlpage.ui:88 msgctxt "charurlpage|eventpb" @@ -7493,12 +7493,12 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:224 msgctxt "charurlpage|label34" msgid "Visited links:" -msgstr "访问过的链接:" +msgstr "访问过的链接:" #: sw/uiconfig/swriter/ui/charurlpage.ui:238 msgctxt "charurlpage|label10" msgid "Unvisited links:" -msgstr "尚未访问的链接:" +msgstr "尚未访问的链接:" #: sw/uiconfig/swriter/ui/charurlpage.ui:276 msgctxt "charurlpage|label33" @@ -7533,22 +7533,22 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:75 msgctxt "columnpage|liststore2" msgid "Page Style: " -msgstr "页面样式: " +msgstr "页面样式: " #: sw/uiconfig/swriter/ui/columnpage.ui:112 msgctxt "columnpage|columnft" msgid "Column:" -msgstr "栏次:" +msgstr "栏次:" #: sw/uiconfig/swriter/ui/columnpage.ui:173 msgctxt "columnpage|widthft" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: sw/uiconfig/swriter/ui/columnpage.ui:241 msgctxt "columnpage|distft" msgid "Spacing:" -msgstr "间距:" +msgstr "间距:" #: sw/uiconfig/swriter/ui/columnpage.ui:300 msgctxt "columnpage|autowidth" @@ -7563,27 +7563,27 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:410 msgctxt "columnpage|linestyleft" msgid "St_yle:" -msgstr "样式(_Y):" +msgstr "样式(_Y):" #: sw/uiconfig/swriter/ui/columnpage.ui:424 msgctxt "columnpage|linewidthft" msgid "_Width:" -msgstr "宽度(_W):" +msgstr "宽度(_W):" #: sw/uiconfig/swriter/ui/columnpage.ui:438 msgctxt "columnpage|lineheightft" msgid "H_eight:" -msgstr "高度(_E):" +msgstr "高度(_E):" #: sw/uiconfig/swriter/ui/columnpage.ui:452 msgctxt "columnpage|lineposft" msgid "_Position:" -msgstr "位置(_P):" +msgstr "位置(_P):" #: sw/uiconfig/swriter/ui/columnpage.ui:478 msgctxt "columnpage|lineposlb" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: sw/uiconfig/swriter/ui/columnpage.ui:479 msgctxt "columnpage|lineposlb" @@ -7593,12 +7593,12 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:480 msgctxt "columnpage|lineposlb" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: sw/uiconfig/swriter/ui/columnpage.ui:526 msgctxt "columnpage|linecolorft" msgid "_Color:" -msgstr "颜色(_C):" +msgstr "颜色(_C):" #: sw/uiconfig/swriter/ui/columnpage.ui:550 msgctxt "columnpage|label11" @@ -7608,7 +7608,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:602 msgctxt "columnpage|label3" msgid "Columns:" -msgstr "栏数:" +msgstr "栏数:" #: sw/uiconfig/swriter/ui/columnpage.ui:636 msgctxt "columnpage|balance" @@ -7618,12 +7618,12 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:670 msgctxt "columnpage|applytoft" msgid "_Apply to:" -msgstr "应用到(_A):" +msgstr "应用到(_A):" #: sw/uiconfig/swriter/ui/columnpage.ui:695 msgctxt "columnpage|textdirectionft" msgid "Text _direction:" -msgstr "文字方向(_D):" +msgstr "文字方向(_D):" #: sw/uiconfig/swriter/ui/columnpage.ui:750 msgctxt "columnpage|label2" @@ -7633,17 +7633,17 @@ #: sw/uiconfig/swriter/ui/columnwidth.ui:15 msgctxt "columnwidth|ColumnWidthDialog" msgid "Column Width" -msgstr "栏宽" +msgstr "列宽" #: sw/uiconfig/swriter/ui/columnwidth.ui:105 msgctxt "columnwidth|label2" msgid "Column:" -msgstr "列:" +msgstr "列:" #: sw/uiconfig/swriter/ui/columnwidth.ui:119 msgctxt "columnwidth|label3" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: sw/uiconfig/swriter/ui/columnwidth.ui:162 msgctxt "columnwidth|label1" @@ -7658,7 +7658,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:63 msgctxt "conditionpage|contextft" msgid "Conte_xt" -msgstr "情境(_X)" +msgstr "上下文(_X)" #: sw/uiconfig/swriter/ui/conditionpage.ui:78 msgctxt "conditionpage|usedft" @@ -7713,47 +7713,47 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:207 msgctxt "conditionpage|filter" msgid " 1st Outline Level" -msgstr "1级大纲" +msgstr " 1 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:208 msgctxt "conditionpage|filter" msgid " 2nd Outline Level" -msgstr "2级大纲" +msgstr " 2 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:209 msgctxt "conditionpage|filter" msgid " 3rd Outline Level" -msgstr "3级大纲" +msgstr " 3 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:210 msgctxt "conditionpage|filter" msgid " 4th Outline Level" -msgstr "4级大纲" +msgstr " 4 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:211 msgctxt "conditionpage|filter" msgid " 5th Outline Level" -msgstr "5级大纲" +msgstr " 5 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:212 msgctxt "conditionpage|filter" msgid " 6th Outline Level" -msgstr "6级大纲" +msgstr " 6 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:213 msgctxt "conditionpage|filter" msgid " 7th Outline Level" -msgstr "7级大纲" +msgstr " 7 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:214 msgctxt "conditionpage|filter" msgid " 8th Outline Level" -msgstr "8级大纲" +msgstr " 8 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:215 msgctxt "conditionpage|filter" msgid " 9th Outline Level" -msgstr "9级大纲" +msgstr " 9 级大纲" #: sw/uiconfig/swriter/ui/conditionpage.ui:216 msgctxt "conditionpage|filter" @@ -7763,47 +7763,47 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:217 msgctxt "conditionpage|filter" msgid " 1st Numbering Level" -msgstr "1级编号" +msgstr " 1 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:218 msgctxt "conditionpage|filter" msgid " 2nd Numbering Level" -msgstr "2级编号" +msgstr " 2 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:219 msgctxt "conditionpage|filter" msgid " 3rd Numbering Level" -msgstr "3级编号" +msgstr " 3 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:220 msgctxt "conditionpage|filter" msgid " 4th Numbering Level" -msgstr "4级编号" +msgstr " 4 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:221 msgctxt "conditionpage|filter" msgid " 5th Numbering Level" -msgstr "5级编号" +msgstr " 5 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:222 msgctxt "conditionpage|filter" msgid " 6th Numbering Level" -msgstr "6级编号" +msgstr " 6 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:223 msgctxt "conditionpage|filter" msgid " 7th Numbering Level" -msgstr "7级编号" +msgstr " 7 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:224 msgctxt "conditionpage|filter" msgid " 8th Numbering Level" -msgstr "8级编号" +msgstr " 8 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:225 msgctxt "conditionpage|filter" msgid " 9th Numbering Level" -msgstr "9级编号" +msgstr " 9 级编号" #: sw/uiconfig/swriter/ui/conditionpage.ui:226 msgctxt "conditionpage|filter" @@ -7878,7 +7878,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:314 msgctxt "converttexttable|label3" msgid "The first " -msgstr "前" +msgstr "前 " #: sw/uiconfig/swriter/ui/converttexttable.ui:327 msgctxt "converttexttable|label4" @@ -7953,7 +7953,7 @@ #: sw/uiconfig/swriter/ui/createauthorentry.ui:8 msgctxt "createauthorentry|CreateAuthorEntryDialog" msgid "Define Bibliography Entry" -msgstr "定义文献条目" +msgstr "定义参考文献条目" #: sw/uiconfig/swriter/ui/createauthorentry.ui:189 msgctxt "createauthorentry|label1" @@ -8033,7 +8033,7 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:158 msgctxt "customizeaddrlistdialog|label1" msgid "A_ddress list elements:" -msgstr "地址列表元素(_D):" +msgstr "地址列表元素(_D):" #: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:7 msgctxt "datasourcesunavailabledialog|DataSourcesUnavailableDialog" @@ -8048,7 +8048,7 @@ #: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:15 msgctxt "datasourcesunavailabledialog|DataSourcesUnavailableDialog" msgid "No data source has been set up yet. You need a data source, such as a database, to supply data (for example, names and addresses) for the fields." -msgstr "尚未配置数据源。您需要一个数据源(例如:数据库),以便为字段提供数据(比如:姓名和地址)。" +msgstr "尚未配置数据源。您需要一个数据源(例如: 数据库),以便为字段提供数据(比如: 姓名和地址)。" #: sw/uiconfig/swriter/ui/dropcapspage.ui:55 msgctxt "dropcapspage|checkCB_SWITCH" @@ -8063,17 +8063,17 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:89 msgctxt "dropcapspage|labelFT_DROPCAPS" msgid "Number of _characters:" -msgstr "字符数(_C):" +msgstr "字符数(_C):" #: sw/uiconfig/swriter/ui/dropcapspage.ui:103 msgctxt "dropcapspage|labelTXT_LINES" msgid "_Lines:" -msgstr "行(_L):" +msgstr "行(_L):" #: sw/uiconfig/swriter/ui/dropcapspage.ui:117 msgctxt "dropcapspage|labelTXT_DISTANCE" msgid "_Space to text:" -msgstr "至文字的距离(_S):" +msgstr "至文字的距离(_S):" #: sw/uiconfig/swriter/ui/dropcapspage.ui:175 msgctxt "dropcapspage|labelFL_SETTING" @@ -8083,12 +8083,12 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:209 msgctxt "dropcapspage|labelTXT_TEXT" msgid "_Text:" -msgstr "文字(_T):" +msgstr "文字(_T):" #: sw/uiconfig/swriter/ui/dropcapspage.ui:223 msgctxt "dropcapspage|labelTXT_TEMPLATE" msgid "Character st_yle:" -msgstr "字符样式(_Y):" +msgstr "字符样式(_Y):" #: sw/uiconfig/swriter/ui/dropcapspage.ui:263 msgctxt "dropcapspage|labelFL_CONTENT" @@ -8098,7 +8098,7 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:26 msgctxt "dropdownfielddialog|DropdownFieldDialog" msgid "Choose Item: " -msgstr "选择项目:" +msgstr "选择项目: " #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:212 msgctxt "dropdownfielddialog|label1" @@ -8143,12 +8143,12 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:92 msgctxt "editfielddialog|prev_tip" msgid "Previous field of same type" -msgstr "" +msgstr "相同类型的前一个字段" #: sw/uiconfig/swriter/ui/editfielddialog.ui:109 msgctxt "editfielddialog|next_tip" msgid "Next field of same type" -msgstr "" +msgstr "相同类型的后一个字段" #: sw/uiconfig/swriter/ui/editfielddialog.ui:121 msgctxt "editfielddialog|edit" @@ -8158,7 +8158,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:126 msgctxt "editfielddialog|edit_tip" msgid "Edit variable field content" -msgstr "" +msgstr "编辑可变字段的内容" #: sw/uiconfig/swriter/ui/editsectiondialog.ui:9 msgctxt "editsectiondialog|EditSectionDialog" @@ -8383,22 +8383,22 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:44 msgctxt "envformatpage|character1" msgid "C_haracter..." -msgstr "" +msgstr "字符(_H)…" #: sw/uiconfig/swriter/ui/envformatpage.ui:52 msgctxt "envformatpage|paragraph1" msgid "P_aragraph..." -msgstr "" +msgstr "段落(_A)…" #: sw/uiconfig/swriter/ui/envformatpage.ui:64 msgctxt "envformatpage|character2" msgid "C_haracter..." -msgstr "" +msgstr "字符(_H)..." #: sw/uiconfig/swriter/ui/envformatpage.ui:72 msgctxt "envformatpage|paragraph2" msgid "P_aragraph..." -msgstr "" +msgstr "段落(_A)..." #: sw/uiconfig/swriter/ui/envformatpage.ui:156 msgctxt "envformatpage|label5" @@ -8508,62 +8508,62 @@ #: sw/uiconfig/swriter/ui/envprinterpage.ui:198 msgctxt "envprinterpage|horileftl|tooltip_text" msgid "Horizontal Left" -msgstr "" +msgstr "水平靠左" #: sw/uiconfig/swriter/ui/envprinterpage.ui:214 msgctxt "envprinterpage|horicenterl|tooltip_text" msgid "Horizontal Center" -msgstr "" +msgstr "水平居中" #: sw/uiconfig/swriter/ui/envprinterpage.ui:230 msgctxt "envprinterpage|horirightl|tooltip_text" msgid "Horizontal Right" -msgstr "" +msgstr "水平靠右" #: sw/uiconfig/swriter/ui/envprinterpage.ui:246 msgctxt "envprinterpage|vertleftl|tooltip_text" msgid "Vertical Left" -msgstr "" +msgstr "垂直靠左" #: sw/uiconfig/swriter/ui/envprinterpage.ui:262 msgctxt "envprinterpage|vertcenterl|tooltip_text" msgid "Vertical Center" -msgstr "" +msgstr "垂直居中" #: sw/uiconfig/swriter/ui/envprinterpage.ui:278 msgctxt "envprinterpage|vertrightl|tooltip_text" msgid "Vertical Right" -msgstr "" +msgstr "垂直靠右" #: sw/uiconfig/swriter/ui/envprinterpage.ui:306 msgctxt "envprinterpage|horileftu|tooltip_text" msgid "Horizontal Left" -msgstr "" +msgstr "水平靠左" #: sw/uiconfig/swriter/ui/envprinterpage.ui:322 msgctxt "envprinterpage|horicenteru|tooltip_text" msgid "Horizontal Center" -msgstr "" +msgstr "水平居中" #: sw/uiconfig/swriter/ui/envprinterpage.ui:338 msgctxt "envprinterpage|horirightu|tooltip_text" msgid "Horizontal Right" -msgstr "" +msgstr "水平靠右" #: sw/uiconfig/swriter/ui/envprinterpage.ui:354 msgctxt "envprinterpage|vertleftu|tooltip_text" msgid "Vertical Left" -msgstr "" +msgstr "垂直靠左" #: sw/uiconfig/swriter/ui/envprinterpage.ui:370 msgctxt "envprinterpage|vertcenteru|tooltip_text" msgid "Vertical Center" -msgstr "" +msgstr "垂直居中" #: sw/uiconfig/swriter/ui/envprinterpage.ui:386 msgctxt "envprinterpage|vertrightu|tooltip_text" msgid "Vertical Right" -msgstr "" +msgstr "垂直靠右" #: sw/uiconfig/swriter/ui/envprinterpage.ui:412 msgctxt "envprinterpage|label1" @@ -8627,7 +8627,7 @@ #: sw/uiconfig/swriter/ui/exchangedatabases.ui:229 msgctxt "exchangedatabases|label2" msgid "Database applied to document:" -msgstr "应用于文档的数据库:" +msgstr "应用于文档的数据库:" #: sw/uiconfig/swriter/ui/fielddialog.ui:8 msgctxt "fielddialog|FieldDialog" @@ -9252,7 +9252,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93 msgctxt "footnotesendnotestabpage|ftnoffset_label" msgid "_Start at:" -msgstr "开始于:(_S)" +msgstr "开始于: (_S)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111 msgctxt "footnotesendnotestabpage|ftnntnumfmt" @@ -9262,12 +9262,12 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150 msgctxt "footnotesendnotestabpage|ftnsuffix_label" msgid "Aft_er:" -msgstr "之后:(_E)" +msgstr "之后: (_E)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188 msgctxt "footnotesendnotestabpage|ftnprefix_label" msgid "Be_fore:" -msgstr "之前:(_F)" +msgstr "之前: (_F)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212 msgctxt "footnotesendnotestabpage|ftnntattextend" @@ -9292,7 +9292,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333 msgctxt "footnotesendnotestabpage|endoffset_label" msgid "_Start at:" -msgstr "开始于:(_S)" +msgstr "开始于: (_S)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351 msgctxt "footnotesendnotestabpage|endntnumfmt" @@ -9302,12 +9302,12 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390 msgctxt "footnotesendnotestabpage|endsuffix_label" msgid "Aft_er:" -msgstr "之后:(_E)" +msgstr "之后: (_E)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428 msgctxt "footnotesendnotestabpage|endprefix_label" msgid "Be_fore:" -msgstr "之前:(_F)" +msgstr "之前: (_F)" #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458 msgctxt "footnotesendnotestabpage|label2" @@ -9322,7 +9322,7 @@ #: sw/uiconfig/swriter/ui/formatsectiondialog.ui:107 msgctxt "formatsectiondialog|columns" msgid "Columns" -msgstr "列" +msgstr "分栏" #: sw/uiconfig/swriter/ui/formatsectiondialog.ui:129 msgctxt "formatsectiondialog|indents" @@ -9402,7 +9402,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:397 msgctxt "formattablepage|right" msgid "R_ight" -msgstr "右(_I)" +msgstr "右对齐(_I)" #: sw/uiconfig/swriter/ui/formattablepage.ui:413 msgctxt "formattablepage|center" @@ -9497,12 +9497,12 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:90 msgctxt "frmaddpage|name_label" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:104 msgctxt "frmaddpage|altname_label" msgid "_Alternative (Text only):" -msgstr "替代 (仅文字) (_A):" +msgstr "替代 (仅文字) (_A):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:120 msgctxt "frmaddpage|prev" @@ -9517,17 +9517,17 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:146 msgctxt "frmaddpage|prev_label" msgid "_Previous link:" -msgstr "上一个链接(_P):" +msgstr "上一个链接(_P):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:160 msgctxt "frmaddpage|next_label" msgid "_Next link:" -msgstr "下一个链接(_N):" +msgstr "下一个链接(_N):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:174 msgctxt "frmaddpage|description_label" msgid "_Description:" -msgstr "描述(_D):" +msgstr "描述(_D):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:211 msgctxt "frmaddpage|label1" @@ -9577,7 +9577,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:449 msgctxt "frmaddpage|textflow_label" msgid "_Text direction:" -msgstr "文字方向(_T):" +msgstr "文字方向(_T):" #: sw/uiconfig/swriter/ui/frmaddpage.ui:483 msgctxt "frmaddpage|label3" @@ -9667,7 +9667,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:480 msgctxt "frmtypepage|label1" msgid "Anchor" -msgstr "锚定" +msgstr "锚点" #: sw/uiconfig/swriter/ui/frmtypepage.ui:520 msgctxt "frmtypepage|horiposft" @@ -9707,7 +9707,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:683 msgctxt "frmtypepage|followtextflow" msgid "Follow text flow" -msgstr "跟随文本流" +msgstr "跟随文字流" #: sw/uiconfig/swriter/ui/frmtypepage.ui:706 msgctxt "frmtypepage|label11" @@ -9722,12 +9722,12 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:80 msgctxt "frmurlpage|name_label" msgid "_Name:" -msgstr "名称(_N):" +msgstr "名称(_N):" #: sw/uiconfig/swriter/ui/frmurlpage.ui:96 msgctxt "frmurlpage|frame_label" msgid "_Frame:" -msgstr "框架(_F):" +msgstr "框架(_F):" #: sw/uiconfig/swriter/ui/frmurlpage.ui:114 msgctxt "frmurlpage|search" @@ -9767,7 +9767,7 @@ #: sw/uiconfig/swriter/ui/gotopagedialog.ui:100 msgctxt "gotopagedialog|page_label" msgid "Page:" -msgstr "页面:" +msgstr "页面:" #: sw/uiconfig/swriter/ui/headerfootermenu.ui:19 msgctxt "headerfootermenu|borderback" @@ -9807,7 +9807,7 @@ #: sw/uiconfig/swriter/ui/indexentry.ui:46 msgctxt "indexentry|IndexEntryDialog" msgid "Insert Index Entry" -msgstr "插入索引项" +msgstr "插入索引条目" #: sw/uiconfig/swriter/ui/indexentry.ui:59 msgctxt "indexentry|insert" @@ -9922,7 +9922,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:136 msgctxt "inputfielddialog|inputfieldname" msgid "Reference:" -msgstr "引用:" +msgstr "引用:" #: sw/uiconfig/swriter/ui/inputwinmenu.ui:12 msgctxt "inputwinmenu|sum" @@ -10112,7 +10112,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:112 msgctxt "insertbreak|linerb-atkobject" msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph." -msgstr "" +msgstr "结束当前行,并将光标右侧文字挪到下一行,但不新建段落。" #: sw/uiconfig/swriter/ui/insertbreak.ui:124 msgctxt "insertbreak|columnrb" @@ -10122,7 +10122,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:134 msgctxt "insertbreak|columnrb-atkobject" msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column." -msgstr "" +msgstr "插入手动分栏符(多栏布局),并将光标右侧文字挪到次栏开头。手动分栏符以边界形式(打印时不可见)显示在新栏顶部。" #: sw/uiconfig/swriter/ui/insertbreak.ui:146 msgctxt "insertbreak|pagerb" @@ -10137,7 +10137,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:171 msgctxt "insertbreak|styleft" msgid "Style:" -msgstr "样式:" +msgstr "样式:" #: sw/uiconfig/swriter/ui/insertbreak.ui:188 msgctxt "insertbreak|liststore1" @@ -10147,7 +10147,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:192 msgctxt "insertbreak|stylelb-atkobject" msgid "Select the page style for the page that follows the manual page break." -msgstr "" +msgstr "选择手动分页符之后页面的页面样式。" #: sw/uiconfig/swriter/ui/insertbreak.ui:204 msgctxt "insertbreak|pagenumcb" @@ -10157,12 +10157,12 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:214 msgctxt "insertbreak|pagenumcb-atkobject" msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break." -msgstr "" +msgstr "为手动分页符之后的页面指定页码。仅当您为手动分页符之后的页面指定不同的页面样式时,此选项才可用。" #: sw/uiconfig/swriter/ui/insertbreak.ui:236 msgctxt "insertbreak|pagenumsb-atkobject" msgid "Enter the new page number for the page that follows the manual page break." -msgstr "" +msgstr "输入手动分页符之后页面的新页码。" #: sw/uiconfig/swriter/ui/insertbreak.ui:254 msgctxt "insertbreak|label1" @@ -10182,17 +10182,17 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:88 msgctxt "insertcaption|numbering_label" msgid "Numbering:" -msgstr "编号:" +msgstr "编号:" #: sw/uiconfig/swriter/ui/insertcaption.ui:102 msgctxt "insertcaption|separator_label" msgid "Separator:" -msgstr "分隔符:" +msgstr "分隔符:" #: sw/uiconfig/swriter/ui/insertcaption.ui:116 msgctxt "insertcaption|position_label" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: sw/uiconfig/swriter/ui/insertcaption.ui:141 msgctxt "insertcaption|separator_edit" @@ -10202,17 +10202,17 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:153 msgctxt "insertcaption|num_separator" msgid "Numbering separator:" -msgstr "编号分隔符:" +msgstr "编号分隔符:" #: sw/uiconfig/swriter/ui/insertcaption.ui:167 msgctxt "insertcaption|num_separator_edit" msgid ". " -msgstr "." +msgstr ". " #: sw/uiconfig/swriter/ui/insertcaption.ui:190 msgctxt "insertcaption|label4" msgid "Category:" -msgstr "类别:" +msgstr "类别:" #: sw/uiconfig/swriter/ui/insertcaption.ui:223 msgctxt "insertcaption|label2" @@ -10302,7 +10302,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:548 msgctxt "insertdbcolumnsdialog|parastylelabel" msgid "Paragraph _style:" -msgstr "段落样式(_S):" +msgstr "段落样式(_S):" #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:587 msgctxt "insertdbcolumnsdialog|fromdatabase" @@ -10342,7 +10342,7 @@ #: sw/uiconfig/swriter/ui/insertfootnote.ui:211 msgctxt "insertfootnote|choosecharacter" msgid "Choose…" -msgstr "选择..." +msgstr "选择…" #: sw/uiconfig/swriter/ui/insertfootnote.ui:231 msgctxt "insertfootnote|label1" @@ -10372,7 +10372,7 @@ #: sw/uiconfig/swriter/ui/insertscript.ui:136 msgctxt "insertscript|label1" msgid "Script type:" -msgstr "脚本类型:" +msgstr "脚本类型:" #: sw/uiconfig/swriter/ui/insertscript.ui:148 msgctxt "insertscript|scripttype" @@ -10387,12 +10387,12 @@ #: sw/uiconfig/swriter/ui/insertscript.ui:187 msgctxt "insertscript|browse" msgid "Browse…" -msgstr "浏览..." +msgstr "浏览…" #: sw/uiconfig/swriter/ui/insertscript.ui:200 msgctxt "insertscript|text" msgid "Text:" -msgstr "文本:" +msgstr "文本:" #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:8 msgctxt "insertsectiondialog|InsertSectionDialog" @@ -10412,7 +10412,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:128 msgctxt "insertsectiondialog|columns" msgid "Columns" -msgstr "列" +msgstr "分栏" #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:151 msgctxt "insertsectiondialog|indents" @@ -10442,17 +10442,17 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:148 msgctxt "inserttable|label3" msgid "_Name:" -msgstr "表格名称:(_N)" +msgstr "名称(_N):" #: sw/uiconfig/swriter/ui/inserttable.ui:162 msgctxt "inserttable|3" msgid "_Columns:" -msgstr "列数:(_C)" +msgstr "列数(_C):" #: sw/uiconfig/swriter/ui/inserttable.ui:192 msgctxt "inserttable|4" msgid "_Rows:" -msgstr "行数:(_R)" +msgstr "行数(_R):" #: sw/uiconfig/swriter/ui/inserttable.ui:226 msgctxt "inserttable|label1" @@ -10462,22 +10462,22 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:264 msgctxt "inserttable|headercb" msgid "Hea_ding" -msgstr "表头 (_D)" +msgstr "表头(_D)" #: sw/uiconfig/swriter/ui/inserttable.ui:279 msgctxt "inserttable|repeatcb" msgid "Repeat heading rows on new _pages" -msgstr "在新页面上重复表头行 (_P)" +msgstr "在新页重复表头行(_P)" #: sw/uiconfig/swriter/ui/inserttable.ui:297 msgctxt "inserttable|dontsplitcb" msgid "Don’t _split table over pages" -msgstr "表格不要跨页 (_S)" +msgstr "表格不要跨页(_S)" #: sw/uiconfig/swriter/ui/inserttable.ui:337 msgctxt "inserttable|repeatheaderafter" msgid "Heading ro_ws:" -msgstr "表头行:(_W)" +msgstr "表头行数(_W):" #: sw/uiconfig/swriter/ui/inserttable.ui:360 msgctxt "inserttable|label2" @@ -10487,7 +10487,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:454 msgctxt "inserttable|lbTableStyle" msgid "Styles" -msgstr "" +msgstr "样式" #: sw/uiconfig/swriter/ui/labeldialog.ui:8 msgctxt "labeldialog|LabelDialog" @@ -10497,7 +10497,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:25 msgctxt "labeldialog|ok" msgid "_New Document" -msgstr "新建文档(_)" +msgstr "新建文档(_N)" #: sw/uiconfig/swriter/ui/labeldialog.ui:133 msgctxt "labeldialog|medium" @@ -10532,32 +10532,32 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:35 msgctxt "labelformatpage|label1" msgid "Hori_zontal pitch:" -msgstr "水平间距(_Z):" +msgstr "水平间距(_Z):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:49 msgctxt "labelformatpage|label2" msgid "_Vertical pitch:" -msgstr "垂直间距(_V):" +msgstr "垂直间距(_V):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:63 msgctxt "labelformatpage|label3" msgid "_Width:" -msgstr "宽度(_W):" +msgstr "宽度(_W):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:77 msgctxt "labelformatpage|label4" msgid "_Height:" -msgstr "高度(_H):" +msgstr "高度(_H):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:91 msgctxt "labelformatpage|label5" msgid "_Left margin:" -msgstr "左边距(_L):" +msgstr "左边距(_L):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:105 msgctxt "labelformatpage|label6" msgid "_Top margin:" -msgstr "顶边距(_T):" +msgstr "顶边距(_T):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:119 msgctxt "labelformatpage|label7" @@ -10567,17 +10567,17 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:133 msgctxt "labelformatpage|label8" msgid "R_ows:" -msgstr "行(_O):" +msgstr "行(_O):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:147 msgctxt "labelformatpage|label9" msgid "P_age width:" -msgstr "页面宽度(_A):" +msgstr "页面宽度(_A):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:161 msgctxt "labelformatpage|label10" msgid "Pa_ge height:" -msgstr "页面高度(_G):" +msgstr "页面高度(_G):" #: sw/uiconfig/swriter/ui/labelformatpage.ui:173 msgctxt "labelformatpage|save" @@ -10642,27 +10642,27 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:145 msgctxt "linenumbering|characterstyle" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: sw/uiconfig/swriter/ui/linenumbering.ui:159 msgctxt "linenumbering|format" msgid "Format:" -msgstr "格式:" +msgstr "格式:" #: sw/uiconfig/swriter/ui/linenumbering.ui:171 msgctxt "linenumbering|position" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: sw/uiconfig/swriter/ui/linenumbering.ui:185 msgctxt "linenumbering|spacing" msgid "Spacing:" -msgstr "间距:" +msgstr "间距:" #: sw/uiconfig/swriter/ui/linenumbering.ui:199 msgctxt "linenumbering|interval" msgid "Interval:" -msgstr "间隔:" +msgstr "间隔:" #: sw/uiconfig/swriter/ui/linenumbering.ui:239 msgctxt "linenumbering|positionstore" @@ -10697,12 +10697,12 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:350 msgctxt "linenumbering|text" msgid "Text:" -msgstr "文本:" +msgstr "文本:" #: sw/uiconfig/swriter/ui/linenumbering.ui:364 msgctxt "linenumbering|every" msgid "Every:" -msgstr "每:" +msgstr "每:" #: sw/uiconfig/swriter/ui/linenumbering.ui:391 msgctxt "linenumbering|lines" @@ -10742,12 +10742,12 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:82 msgctxt "mailconfigpage|displayname_label" msgid "_Your name:" -msgstr "您的名字(_Y):" +msgstr "您的名字(_Y):" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:96 msgctxt "mailconfigpage|address_label" msgid "_E-mail address:" -msgstr "_E-mail 地址:" +msgstr "_E-mail 地址:" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:107 msgctxt "mailconfigpage|replytocb" @@ -10757,7 +10757,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:126 msgctxt "mailconfigpage|replyto_label" msgid "_Reply address:" -msgstr "回复地址(_R):" +msgstr "回复地址(_R):" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:143 msgctxt "mailconfigpage|label1" @@ -10772,17 +10772,17 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:218 msgctxt "mailconfigpage|server_label" msgid "_Server name:" -msgstr "服务器名称(_S):" +msgstr "服务器名称(_S):" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:232 msgctxt "mailconfigpage|port_label" msgid "_Port:" -msgstr "端口(_P):" +msgstr "端口(_P):" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:269 msgctxt "mailconfigpage|serverauthentication" msgid "Ser_ver Authentication…" -msgstr "服务器认证 (_V)..." +msgstr "服务器认证(_V)…" #: sw/uiconfig/swriter/ui/mailconfigpage.ui:295 msgctxt "mailconfigpage|label2" @@ -10812,12 +10812,12 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:172 msgctxt "mailmerge|rbfrom" msgid "_From:" -msgstr "发件人(_F):" +msgstr "发件人(_F):" #: sw/uiconfig/swriter/ui/mailmerge.ui:205 msgctxt "mailmerge|label3" msgid "_To:" -msgstr "收件人(_T):" +msgstr "收件人(_T):" #: sw/uiconfig/swriter/ui/mailmerge.ui:243 msgctxt "mailmerge|recordslabel" @@ -10852,32 +10852,32 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:414 msgctxt "mailmerge|fieldlabel" msgid "Field:" -msgstr "字段:" +msgstr "字段:" #: sw/uiconfig/swriter/ui/mailmerge.ui:427 msgctxt "mailmerge|pathlabel" msgid "_Path:" -msgstr "路径(_P):" +msgstr "路径(_P):" #: sw/uiconfig/swriter/ui/mailmerge.ui:442 msgctxt "mailmerge|fileformatlabel" msgid "F_ile format:" -msgstr "文件格式(_I):" +msgstr "文件格式(_I):" #: sw/uiconfig/swriter/ui/mailmerge.ui:504 msgctxt "mailmerge|subjectlabel" msgid "_Subject:" -msgstr "主题(_S):" +msgstr "主题(_S):" #: sw/uiconfig/swriter/ui/mailmerge.ui:531 msgctxt "mailmerge|attachmentslabel" msgid "Attachments:" -msgstr "附件:" +msgstr "附件:" #: sw/uiconfig/swriter/ui/mailmerge.ui:572 msgctxt "mailmerge|mailformatlabel" msgid "Mail format:" -msgstr "邮件格式:" +msgstr "邮件格式:" #: sw/uiconfig/swriter/ui/mailmerge.ui:592 msgctxt "mailmerge|html" @@ -11132,12 +11132,12 @@ #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:52 msgctxt "mmcreatingdialog|label1" msgid "Status:" -msgstr "状态:" +msgstr "状态:" #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:66 msgctxt "mmcreatingdialog|label2" msgid "Progress:" -msgstr "进度:" +msgstr "进度:" #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:80 msgctxt "mmcreatingdialog|label3" @@ -11622,7 +11622,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:201 msgctxt "mmsendmails|errorstatus" msgid "E-mails not sent: %1" -msgstr "未发送的邮件:%1" +msgstr "未发送的邮件: %1" #: sw/uiconfig/swriter/ui/mmsendmails.ui:229 msgctxt "mmsendmails|label5" @@ -11682,7 +11682,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:171 msgctxt "navigatorpanel|reminder|tooltip_text" msgid "Set Reminder" -msgstr "设置标记" +msgstr "设置提醒" #: sw/uiconfig/swriter/ui/navigatorpanel.ui:194 msgctxt "navigatorpanel|header|tooltip_text" @@ -11697,7 +11697,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:220 msgctxt "navigatorpanel|anchor|tooltip_text" msgid "Anchor<->Text" -msgstr "锚定<->正文" +msgstr "锚点<->正文" #: sw/uiconfig/swriter/ui/navigatorpanel.ui:243 msgctxt "navigatorpanel|headings|tooltip_text" @@ -11777,22 +11777,22 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:631 msgctxt "notebookbar|Help" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar.ui:1761 msgctxt "notebookbar|Tools" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar.ui:2031 msgctxt "notebookbar|FileMenuButton" msgid "_File" -msgstr "" +msgstr "文件(_F)" #: sw/uiconfig/swriter/ui/notebookbar.ui:2050 msgctxt "notebookbar|HelpMenuButton" msgid "_Help" -msgstr "" +msgstr "帮助(_H)" #: sw/uiconfig/swriter/ui/notebookbar.ui:2838 msgctxt "notebookbar|FileLabel" @@ -11802,17 +11802,17 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:2997 msgctxt "notebookbar|HomeMenuButton" msgid "_Home" -msgstr "" +msgstr "主页(_H)" #: sw/uiconfig/swriter/ui/notebookbar.ui:4383 msgctxt "notebookbar|HomeLabel" msgid "Home" -msgstr "开始" +msgstr "主页" #: sw/uiconfig/swriter/ui/notebookbar.ui:5453 msgctxt "notebookbar|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "插入(_I)" #: sw/uiconfig/swriter/ui/notebookbar.ui:5538 msgctxt "notebookbar|InsertLabel" @@ -11822,17 +11822,17 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:5568 msgctxt "notebookbar|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "布局" #: sw/uiconfig/swriter/ui/notebookbar.ui:6487 msgctxt "notebookbar|LayoutLabel" msgid "Layout" -msgstr "" +msgstr "布局" #: sw/uiconfig/swriter/ui/notebookbar.ui:6515 msgctxt "notebookbar|ReferencesMenuButton" msgid "Reference_s" -msgstr "" +msgstr "引用(_S)" #: sw/uiconfig/swriter/ui/notebookbar.ui:7094 msgctxt "notebookbar|ReferencesLabel" @@ -11842,7 +11842,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:7766 msgctxt "notebookbar|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "审阅(_R)" #: sw/uiconfig/swriter/ui/notebookbar.ui:7851 msgctxt "notebookbar|ReviewLabel" @@ -11852,7 +11852,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:8465 msgctxt "notebookbar|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "查看(_V)" #: sw/uiconfig/swriter/ui/notebookbar.ui:8550 msgctxt "notebookbar|ViewLabel" @@ -11862,7 +11862,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:9631 msgctxt "notebookbar|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "表格(_A)" #: sw/uiconfig/swriter/ui/notebookbar.ui:9715 msgctxt "notebookbar|TableLabel" @@ -11872,7 +11872,7 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:10766 msgctxt "notebookbar|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "图像" #: sw/uiconfig/swriter/ui/notebookbar.ui:10865 msgctxt "notebookbar|ImageLabel" @@ -11882,62 +11882,62 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:12215 msgctxt "notebookbar|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "绘制(_R)" #: sw/uiconfig/swriter/ui/notebookbar.ui:12327 msgctxt "notebookbar|DrawLabel" msgid "Draw" -msgstr "" +msgstr "绘图" #: sw/uiconfig/swriter/ui/notebookbar.ui:12681 msgctxt "notebookbar|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "打印(_P)" #: sw/uiconfig/swriter/ui/notebookbar.ui:12768 msgctxt "notebookbar|PrintLabel" msgid "Print" -msgstr "" +msgstr "打印" #: sw/uiconfig/swriter/ui/notebookbar.ui:13206 msgctxt "notebookbar|MediaMenuButton" msgid "_Media" -msgstr "" +msgstr "媒体(_M)" #: sw/uiconfig/swriter/ui/notebookbar.ui:13304 msgctxt "notebookbar|MediaLabel" msgid "Media" -msgstr "" +msgstr "媒体" #: sw/uiconfig/swriter/ui/notebookbar.ui:14157 msgctxt "notebookbar|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "对象" #: sw/uiconfig/swriter/ui/notebookbar.ui:14246 msgctxt "notebookbar|ObjectLabel" msgid "Object" -msgstr "" +msgstr "对象" #: sw/uiconfig/swriter/ui/notebookbar.ui:14277 msgctxt "notebookbar|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "工具(_T)" #: sw/uiconfig/swriter/ui/notebookbar.ui:15231 msgctxt "notebookbar|ToolsLabel" msgid "Tools" -msgstr "" +msgstr "工具" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1877 msgctxt "notebookbar_compact|Update" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2187 msgctxt "notebookbar_compact|FileMenuButton" msgid "_File" -msgstr "" +msgstr "文件(_F)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2901 msgctxt "notebookbar_compact|FileLabel" @@ -11947,7 +11947,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2950 msgctxt "notebookbar_compact|HomeMenuButton" msgid "_Menu" -msgstr "" +msgstr "菜单(_M)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4009 msgctxt "notebookbar_compact|HomeLabel" @@ -11957,7 +11957,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4062 msgctxt "notebookbar_compact|InsertMenuButton" msgid "_Insert" -msgstr "" +msgstr "插入(_I)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4681 msgctxt "notebookbar_compact|InsertLabel" @@ -11967,22 +11967,22 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5252 msgctxt "notebookbar_compact|WrapButton" msgid "Wrap" -msgstr "" +msgstr "换行" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5401 msgctxt "notebookbar_compact|LayoutMenuButton" msgid "Layout" -msgstr "" +msgstr "布局" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5453 msgctxt "notebookbar_compact|LayoutLabel" msgid "Layout" -msgstr "" +msgstr "布局" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5500 msgctxt "notebookbar_compact|ReferencesMenuButton" msgid "Reference_s" -msgstr "" +msgstr "引用(_S)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5888 msgctxt "notebookbar_compact|ReferencesLabel" @@ -11992,7 +11992,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6384 msgctxt "notebookbar_compact|ReviewMenuButton" msgid "_Review" -msgstr "" +msgstr "审阅(_R)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6417 msgctxt "notebookbar_compact|ReviewLabel" @@ -12002,7 +12002,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6886 msgctxt "notebookbar_compact|ViewMenuButton" msgid "_View" -msgstr "" +msgstr "查看(_V)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6938 msgctxt "notebookbar_compact|ViewLabel" @@ -12012,7 +12012,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6986 msgctxt "notebookbar_compact|TableMenuButton" msgid "T_able" -msgstr "" +msgstr "表格(_A)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7720 msgctxt "notebookbar_compact|TableLabel" @@ -12024,19 +12024,19 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9579 msgctxt "notebookbar_compact|WrapMenuButton" msgid "Wrap" -msgstr "" +msgstr "环绕" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8189 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9022 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9693 msgctxt "notebookbar_compact|AlignMenuButton" msgid "A_lign" -msgstr "" +msgstr "对齐(_L)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8471 msgctxt "notebookbar_compact|ImageMenuButton" msgid "Image" -msgstr "" +msgstr "图像" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8504 msgctxt "notebookbar_compact|ImageLabel" @@ -12046,7 +12046,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9250 msgctxt "notebookbar_compact|DrawMenuButton" msgid "D_raw" -msgstr "" +msgstr "绘制(_R)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9305 msgctxt "notebookbar_compact|ShapeLabel" @@ -12056,7 +12056,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9831 msgctxt "notebookbar_compact|ObjectMenuButton" msgid "Object" -msgstr "" +msgstr "对象" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9887 msgctxt "notebookbar_compact|FrameLabel" @@ -12066,27 +12066,27 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10349 msgctxt "notebookbar_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "媒体(_M)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10403 msgctxt "notebookbar_compact|MediaLabel" msgid "Media" -msgstr "" +msgstr "媒体" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10845 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" -msgstr "" +msgstr "打印" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10900 msgctxt "notebookbar_compact|PrintPreviewLabel" msgid "Print" -msgstr "" +msgstr "打印" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10949 msgctxt "notebookbar_compact|ToolsMenuButton" msgid "_Tools" -msgstr "" +msgstr "工具(_T)" #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11792 msgctxt "notebookbar_compact|DevLabel" @@ -12096,77 +12096,77 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2551 msgctxt "notebookbar_groupedbar_compact|MenubarAction" msgid "Menubar" -msgstr "" +msgstr "菜单栏" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2606 msgctxt "notebookbar_groupedbar_compact|MenuAction" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2741 msgctxt "notebookbar_groupedbar_compact|QuotationAction" msgid "Quotation" -msgstr "" +msgstr "引文" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3035 msgctxt "notebookbar_groupedbar_compact|ToolsButton" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3361 msgctxt "notebookbar_groupedbar_compact|MenuButton" msgid "_Menu" -msgstr "" +msgstr "菜单(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3417 msgctxt "notebookbar_groupedbar_compact|ToolsButton" msgid "_Tools" -msgstr "" +msgstr "工具(_T)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3506 msgctxt "notebookbar_groupedbar_compact|FileButton" msgid "_File" -msgstr "" +msgstr "文件(_F)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3661 msgctxt "notebookbar_groupedbar_compact|EditButton" msgid "_Edit" -msgstr "" +msgstr "编辑(_E)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3800 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9220 msgctxt "notebookbar_groupedbar_compact|StyleButton" msgid "St_yles" -msgstr "" +msgstr "样式(_Y)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3978 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8691 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9399 msgctxt "notebookbar_groupedbar_compact|FormatButton" msgid "F_ormat" -msgstr "" +msgstr "格式化(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4228 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8953 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9615 msgctxt "notebookbar_groupedbar_compact|ParagraphButton" msgid "_Paragraph" -msgstr "" +msgstr "段落(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4400 msgctxt "notebookbar_groupedbar_compact|InsertButton" msgid "_Insert" -msgstr "" +msgstr "插入(_I)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4548 msgctxt "notebookbar_groupedbar_compact|ReferenceButton" msgid "Reference_s" -msgstr "" +msgstr "引用(_S)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4655 msgctxt "notebookbar_groupedbar_compact|ReviewButton" msgid "_Review" -msgstr "" +msgstr "审阅(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4769 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6780 @@ -12174,214 +12174,214 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9116 msgctxt "notebookbar_groupedbar_compact|ViewButton" msgid "_View" -msgstr "" +msgstr "查看(_V)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4885 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "打印(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5036 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "Slide Layout" -msgstr "" +msgstr "幻灯片布局" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5172 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "Navigate" -msgstr "" +msgstr "导航" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5297 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "Zoom" -msgstr "" +msgstr "缩放" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5435 msgctxt "notebookbar_groupedbar_compact|ImageButton" msgid "Image" -msgstr "" +msgstr "图像" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5551 msgctxt "notebookbar_groupedbar_compact|ColorButton" msgid "C_olor" -msgstr "" +msgstr "颜色(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5886 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7416 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8176 msgctxt "notebookbar_groupedbar_compact|ArrangeButton" msgid "_Arrange" -msgstr "" +msgstr "整理(_A)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6183 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7556 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8289 msgctxt "notebookbar_groupedbar_compact|GridButton" msgid "_Grid" -msgstr "" +msgstr "网格(_G)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6307 msgctxt "notebookbar_groupedbar_compact|LanguageButton" msgid "_Language" -msgstr "" +msgstr "语言(_L)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6437 msgctxt "notebookbar_groupedbar_compact|reviewButton" msgid "_Review" -msgstr "" +msgstr "审阅(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6575 msgctxt "notebookbar_groupedbar_compact|CommentsButton" msgid "_Comments" -msgstr "" +msgstr "批注(_C)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6676 msgctxt "notebookbar_groupedbar_compact|CompareButton" msgid "Com_pare" -msgstr "" +msgstr "比较(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6968 msgctxt "notebookbar_groupedbar_compact|DrawEditButton" msgid "St_yles" -msgstr "" +msgstr "样式(_Y)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7185 msgctxt "notebookbar_groupedbar_compact|DrawButton" msgid "D_raw" -msgstr "" +msgstr "绘制(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7669 msgctxt "notebookbar_groupedbar_compact|GroupButton" msgid "Grou_p" -msgstr "" +msgstr "分组(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7781 msgctxt "notebookbar_groupedbar_compact|3DButton" msgid "3_D" -msgstr "" +msgstr "3_D" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7968 msgctxt "notebookbar_groupedbar_compact|FrameButton" msgid "F_rame" -msgstr "" +msgstr "框架(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8512 msgctxt "notebookbar_groupedbar_compact|StylesButton" msgid "St_yles" -msgstr "" +msgstr "样式(_Y)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9744 msgctxt "notebookbar_groupedbar_compact|TableButton" msgid "T_able" -msgstr "" +msgstr "表格(_A)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9884 msgctxt "notebookbar_groupedbar_compact|MergeButton" msgid "_Merge" -msgstr "" +msgstr "邮件合并(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10010 msgctxt "notebookbar_groupedbar_compact|RowsColumnsButton" msgid "R_ows" -msgstr "" +msgstr "行(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10139 msgctxt "notebookbar_groupedbar_compact|SelectButton" msgid "Selec_t" -msgstr "" +msgstr "选择(_T)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10254 msgctxt "notebookbar_groupedbar_compact|CalculateButton" msgid "_Calc" -msgstr "" +msgstr "_Calc" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10373 msgctxt "notebookbar_groupedbar_compact|MediaButton" msgid "_Media" -msgstr "" +msgstr "媒体(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1506 msgctxt "notebookbar_groupedbar_full|HelpButton" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2627 msgctxt "notebookbar_groupedbar_full|MenuButton" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2762 msgctxt "notebookbar_groupedbar_full|QuotationButton" msgid "Quotation" -msgstr "" +msgstr "引文" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3056 msgctxt "notebookbar_groupedbar_full|ToolsButton" msgid "_Check for Updates..." -msgstr "" +msgstr "检查更新(_C)…" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3361 msgctxt "notebookbar_groupedbar_full|MenuButton" msgid "_Menu" -msgstr "" +msgstr "菜单(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3414 msgctxt "notebookbar_groupedbar_full|ToolsButton" msgid "_Tools" -msgstr "" +msgstr "工具(_T)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3469 msgctxt "notebookbar_groupedbar_full|HelpButton" msgid "_Help" -msgstr "" +msgstr "帮助(_H)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3577 msgctxt "notebookbar_groupedbar_full|FileButton" msgid "_File" -msgstr "" +msgstr "文件(_F)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3815 msgctxt "notebookbar_groupedbar_full|EditButton" msgid "_Edit" -msgstr "" +msgstr "编辑(_E)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4012 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6776 msgctxt "notebookbar_groupedbar_full|StyleButton" msgid "St_yles" -msgstr "" +msgstr "样式(_Y)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4300 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7064 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11623 msgctxt "notebookbar_groupedbar_full|FormatButton" msgid "F_ormat" -msgstr "" +msgstr "格式化(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4652 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7416 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11890 msgctxt "notebookbar_groupedbar_full|ParagraphButton" msgid "_Paragraph" -msgstr "" +msgstr "段落(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4892 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12221 msgctxt "notebookbar_groupedbar_full|InsertButton" msgid "_Insert" -msgstr "" +msgstr "插入(_I)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5121 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8733 msgctxt "notebookbar_groupedbar_full|ReferenceButton" msgid "Referen_ce" -msgstr "" +msgstr "引用(_C)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5323 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9099 msgctxt "notebookbar_groupedbar_full|ReviewButton" msgid "_Review" -msgstr "" +msgstr "审阅(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5473 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9665 @@ -12389,121 +12389,121 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13655 msgctxt "notebookbar_groupedbar_full|ViewButton" msgid "_View" -msgstr "" +msgstr "查看(_V)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5735 msgctxt "notebookbar_groupedbar_full|GraphicButton" msgid "Image" -msgstr "" +msgstr "图像" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6166 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10761 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13338 msgctxt "notebookbar_groupedbar_full|ArrangeButton" msgid "_Arrange" -msgstr "" +msgstr "整理(_A)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6343 msgctxt "notebookbar_groupedbar_full|ColorButton" msgid "C_olor" -msgstr "" +msgstr "颜色(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6598 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10929 #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13505 msgctxt "notebookbar_groupedbar_full|GridButton" msgid "_Grid" -msgstr "" +msgstr "网格(_G)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7644 msgctxt "notebookbar_groupedbar_full|TableButton" msgid "T_able" -msgstr "" +msgstr "表格(_A)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7843 msgctxt "notebookbar_groupedbar_full|RowsColumnsButton" msgid "R_ows" -msgstr "" +msgstr "行(_O)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8045 msgctxt "notebookbar_groupedbar_full|MergeButton" msgid "_Merge" -msgstr "" +msgstr "邮件合并(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8274 msgctxt "notebookbar_groupedbar_full|SelectButton" msgid "Sele_ct" -msgstr "" +msgstr "选择(_C)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8504 msgctxt "notebookbar_groupedbar_full|CalculateButton" msgid "_Calc" -msgstr "" +msgstr "_Calc" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8870 msgctxt "notebookbar_groupedbar_full|LanguageButton" msgid "_Language" -msgstr "" +msgstr "语言(_L)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9312 msgctxt "notebookbar_groupedbar_full|CommentsButton" msgid "_Comments" -msgstr "" +msgstr "批注(_C)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9515 msgctxt "notebookbar_groupedbar_full|CompareButton" msgid "Com_pare" -msgstr "" +msgstr "比较(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10111 msgctxt "notebookbar_groupedbar_full|DrawButton" msgid "D_raw" -msgstr "" +msgstr "绘制(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10482 msgctxt "notebookbar_groupedbar_full|DrawEditButton" msgid "_Edit" -msgstr "" +msgstr "编辑(_E)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10713 msgctxt "notebookbar_groupedbar_full|WrapButton" msgid "Wrap" -msgstr "" +msgstr "环绕" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10728 msgctxt "notebookbar_groupedbar_full|AlignButton" msgid "Align" -msgstr "" +msgstr "对齐" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11131 msgctxt "notebookbar_groupedbar_full|GroupButton" msgid "Grou_p" -msgstr "" +msgstr "分组(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11311 msgctxt "notebookbar_groupedbar_full|3DButton" msgid "3_D" -msgstr "" +msgstr "3_D" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12669 msgctxt "notebookbar_groupedbar_full|MediaButton" msgid "_Media" -msgstr "" +msgstr "媒体(_M)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12907 msgctxt "notebookbar_groupedbar_full|FrameButton" msgid "F_rame" -msgstr "" +msgstr "框架(_R)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13939 msgctxt "notebookbar_groupedbar_full|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "打印(_P)" #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14171 msgctxt "notebookbar_groupedbar_full|PrintMenuButton" msgid "Slide Layout" -msgstr "" +msgstr "幻灯片布局" #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:34 msgctxt "notebookbar_groups|imagestyledefault" @@ -12903,7 +12903,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:50 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Outline level:" -msgstr "大纲级别" +msgstr "大纲级别:" #: sw/uiconfig/swriter/ui/numparapage.ui:67 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" @@ -12988,7 +12988,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:219 msgctxt "numparapage|checkCB_NUMBER_NEW_START" msgid "S_tart with:" -msgstr "起始(_T):" +msgstr "起始(_T):" #: sw/uiconfig/swriter/ui/numparapage.ui:275 msgctxt "numparapage|label2" @@ -13008,7 +13008,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:364 msgctxt "numparapage|labelFT_RESTART_NO" msgid "_Start with:" -msgstr "起始(_S):" +msgstr "起始(_S):" #: sw/uiconfig/swriter/ui/numparapage.ui:412 msgctxt "numparapage|labelLINE_NUMBERING" @@ -13063,32 +13063,32 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:50 msgctxt "optcaptionpage|label7" msgid "Category:" -msgstr "类别:" +msgstr "类别:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:64 msgctxt "optcaptionpage|numberingft" msgid "_Numbering:" -msgstr "编号(_N):" +msgstr "编号(_N):" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:78 msgctxt "optcaptionpage|numseparatorft" msgid "Numbering separator:" -msgstr "编号分隔符:" +msgstr "编号分隔符:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:92 msgctxt "optcaptionpage|separatorft" msgid "Separator:" -msgstr "分隔符:" +msgstr "分隔符:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:106 msgctxt "optcaptionpage|label18" msgid "Position:" -msgstr "位置:" +msgstr "位置:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:145 msgctxt "optcaptionpage|numseparator" msgid ". " -msgstr "." +msgstr ". " #: sw/uiconfig/swriter/ui/optcaptionpage.ui:190 msgctxt "optcaptionpage|label2" @@ -13098,12 +13098,12 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:228 msgctxt "optcaptionpage|label4" msgid "Level:" -msgstr "级别:" +msgstr "级别:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:242 msgctxt "optcaptionpage|label6" msgid "Separator:" -msgstr "分隔符:" +msgstr "分隔符:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:270 msgctxt "optcaptionpage|level" @@ -13118,7 +13118,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:324 msgctxt "optcaptionpage|label3" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:339 msgctxt "optcaptionpage|charstyle" @@ -13142,7 +13142,7 @@ "when inserting:" msgstr "" "当插入以下内容时\n" -"自动添加题注:" +"自动添加题注:" #: sw/uiconfig/swriter/ui/optcaptionpage.ui:466 msgctxt "optcaptionpage|captionorder" @@ -13222,7 +13222,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:60 msgctxt "optcompatpage|format" msgid "Do not add leading (extra space) between lines of text" -msgstr "不要在两行文本之间添加行间距(leading, 额外的空间)" +msgstr "不要在各行文字之间添加行间距(leading, 额外的空间)" #: sw/uiconfig/swriter/ui/optcompatpage.ui:61 msgctxt "optcompatpage|format" @@ -13262,7 +13262,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:68 msgctxt "optcompatpage|format" msgid "Word-compatible trailing blanks" -msgstr "与 Word 兼容的尾随空格" +msgstr "与 Word 兼容的尾部空白" #: sw/uiconfig/swriter/ui/optcompatpage.ui:69 msgctxt "optcompatpage|format" @@ -13287,7 +13287,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:105 msgctxt "optcompatpage|label11" msgid "Compatibility options for “%DOCNAME”" -msgstr "" +msgstr "「%DOCNAME」的兼容性选项" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:103 msgctxt "optfonttabpage|font_label" @@ -13302,27 +13302,27 @@ #: sw/uiconfig/swriter/ui/optfonttabpage.ui:133 msgctxt "optfonttabpage|default_label" msgid "De_fault:" -msgstr "默认(_F):" +msgstr "默认(_F):" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:149 msgctxt "optfonttabpage|heading_label" msgid "Headin_g:" -msgstr "标题(_G):" +msgstr "标题(_G):" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:165 msgctxt "optfonttabpage|list_label" msgid "_List:" -msgstr "列表(_L):" +msgstr "列表(_L):" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:181 msgctxt "optfonttabpage|caption_label" msgid "C_aption:" -msgstr "题注(_A):" +msgstr "题注(_A):" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:197 msgctxt "optfonttabpage|index_label" msgid "_Index:" -msgstr "索引(_I):" +msgstr "索引(_I):" #: sw/uiconfig/swriter/ui/optfonttabpage.ui:314 msgctxt "optfonttabpage|label1" @@ -13372,12 +13372,12 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:149 msgctxt "optformataidspage|hiddentextfield" msgid "Fields: Hidden te_xt" -msgstr "字段:隐藏的文字(_X)" +msgstr "字段: 隐藏的文字(_X)" #: sw/uiconfig/swriter/ui/optformataidspage.ui:164 msgctxt "optformataidspage|hiddenparafield" msgid "Fields: Hidden p_aragraphs" -msgstr "字段:隐藏的段落(_A)" +msgstr "字段: 隐藏的段落(_A)" #: sw/uiconfig/swriter/ui/optformataidspage.ui:252 msgctxt "optformataidspage|displayfl" @@ -13482,12 +13482,12 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:228 msgctxt "optgeneralpage|label5" msgid "_Measurement unit:" -msgstr "度量单位(_M):" +msgstr "度量单位(_M):" #: sw/uiconfig/swriter/ui/optgeneralpage.ui:253 msgctxt "optgeneralpage|tablabel" msgid "_Tab stops:" -msgstr "制表位(_T):" +msgstr "制表位(_T):" #: sw/uiconfig/swriter/ui/optgeneralpage.ui:290 msgctxt "optgeneralpage|usecharunit" @@ -13507,7 +13507,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:377 msgctxt "optgeneralpage|label7" msgid "_Additional separators:" -msgstr "其它分隔符(_A):" +msgstr "其它分隔符(_A):" #: sw/uiconfig/swriter/ui/optgeneralpage.ui:410 msgctxt "optgeneralpage|standardizedpageshow" @@ -13517,7 +13517,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:438 msgctxt "optgeneralpage|labelstandardpages" msgid "Characters per standardized page:" -msgstr "每标准页面的字符数:" +msgstr "每标准页面的字符数:" #: sw/uiconfig/swriter/ui/optgeneralpage.ui:483 msgctxt "optgeneralpage|label4" @@ -13527,12 +13527,12 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:39 msgctxt "optredlinepage|insert_label" msgid "_Attributes:" -msgstr "属性(_A):" +msgstr "属性(_A):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:53 msgctxt "optredlinepage|insertcolor_label" msgid "Co_lor:" -msgstr "颜色(_L):" +msgstr "颜色(_L):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:69 msgctxt "optredlinepage|insert" @@ -13602,12 +13602,12 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:163 msgctxt "optredlinepage|deleted_label" msgid "Attri_butes:" -msgstr "属性(_B):" +msgstr "属性(_B):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:177 msgctxt "optredlinepage|deletedcolor_label" msgid "Col_or:" -msgstr "颜色(_O):" +msgstr "颜色(_O):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:205 msgctxt "optredlinepage|deletedcolor-atkobject" @@ -13622,12 +13622,12 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:274 msgctxt "optredlinepage|changed_label" msgid "Attrib_utes:" -msgstr "属性(_U):" +msgstr "属性(_U):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:288 msgctxt "optredlinepage|changedcolor_label" msgid "Colo_r:" -msgstr "颜色(_R):" +msgstr "颜色(_R):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:316 msgctxt "optredlinepage|changedcolor-atkobject" @@ -13647,12 +13647,12 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:401 msgctxt "optredlinepage|markpos_label" msgid "Mar_k:" -msgstr "标记(_K):" +msgstr "标记(_K):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:415 msgctxt "optredlinepage|markcolor_label" msgid "_Color:" -msgstr "颜色(_C):" +msgstr "颜色(_C):" #: sw/uiconfig/swriter/ui/optredlinepage.ui:443 msgctxt "optredlinepage|markpos" @@ -13772,22 +13772,22 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:431 msgctxt "opttablepage|label5" msgid "_Row:" -msgstr "行(_R):" +msgstr "行(_R):" #: sw/uiconfig/swriter/ui/opttablepage.ui:446 msgctxt "opttablepage|label6" msgid "_Column:" -msgstr "列(_C):" +msgstr "列(_C):" #: sw/uiconfig/swriter/ui/opttablepage.ui:503 msgctxt "opttablepage|label15" msgid "Ro_w:" -msgstr "行(_W):" +msgstr "行(_W):" #: sw/uiconfig/swriter/ui/opttablepage.ui:518 msgctxt "opttablepage|label16" msgid "Colu_mn:" -msgstr "列(_M):" +msgstr "列(_M):" #: sw/uiconfig/swriter/ui/opttablepage.ui:532 msgctxt "opttablepage|label14" @@ -13877,22 +13877,22 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:123 msgctxt "outlinenumberingpage|label3" msgid "Paragraph style:" -msgstr "段落样式:" +msgstr "段落样式:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:149 msgctxt "outlinenumberingpage|label4" msgid "Number:" -msgstr "编号:" +msgstr "编号:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:163 msgctxt "outlinenumberingpage|label5" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:177 msgctxt "outlinenumberingpage|sublevelsft" msgid "Show sublevels:" -msgstr "显示子级别" +msgstr "显示子级别:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:191 msgctxt "outlinenumberingpage|label7" @@ -13902,17 +13902,17 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:276 msgctxt "outlinenumberingpage|label8" msgid "Before:" -msgstr "之前:" +msgstr "之前:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:297 msgctxt "outlinenumberingpage|label9" msgid "After:" -msgstr "之后:" +msgstr "之后:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:313 msgctxt "outlinenumberingpage|label10" msgid "Start at:" -msgstr "开始于:" +msgstr "开始于:" #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:351 msgctxt "outlinenumberingpage|label2" @@ -13927,7 +13927,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:148 msgctxt "outlinepositionpage|numalign" msgid "Numbering alignment:" -msgstr "编号对齐:" +msgstr "编号对齐:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:163 msgctxt "outlinepositionpage|liststore1" @@ -13951,12 +13951,12 @@ "numbering and text:" msgstr "" "编号与文本之间的\n" -"最小间距:" +"最小间距:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:206 msgctxt "outlinepositionpage|numberingwidth" msgid "Width of numbering:" -msgstr "编号宽度:" +msgstr "编号宽度:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:231 msgctxt "outlinepositionpage|relative" @@ -13966,27 +13966,27 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:249 msgctxt "outlinepositionpage|indent" msgid "Indent:" -msgstr "缩进:" +msgstr "缩进:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:276 msgctxt "outlinepositionpage|indentat" msgid "Indent at:" -msgstr "缩进于:" +msgstr "缩进于:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:303 msgctxt "outlinepositionpage|num2align" msgid "Numbering alignment:" -msgstr "编号对齐:" +msgstr "编号对齐:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:327 msgctxt "outlinepositionpage|alignedat" msgid "Aligned at:" -msgstr "对齐于:" +msgstr "对齐于:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:354 msgctxt "outlinepositionpage|at" msgid "Tab stop at:" -msgstr "制表符位置:" +msgstr "制表符位置:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:382 msgctxt "outlinepositionpage|liststore2" @@ -14006,12 +14006,12 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:385 msgctxt "outlinepositionpage|liststore2" msgid "New Line" -msgstr "" +msgstr "新行" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:398 msgctxt "outlinepositionpage|numfollowedby" msgid "Numbering followed by:" -msgstr "编号后跟随:" +msgstr "编号后跟随:" #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:419 msgctxt "outlinepositionpage|label10" @@ -14096,12 +14096,12 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:33 msgctxt "PageHeaderPanel|footertoggle-atkobject" msgid "Enable footer" -msgstr "" +msgstr "启用页脚" #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:49 msgctxt "pagefooterpanel|margins" msgid "Margins:" -msgstr "边距:" +msgstr "边距:" #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:67 msgctxt "pagefooterpanel|customlabel" @@ -14111,32 +14111,32 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:79 msgctxt "pagefooterpanel|spacing" msgid "Spacing:" -msgstr "间距:" +msgstr "间距:" #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:92 msgctxt "pagefooterpanel|samecontent" msgid "Same Content:" -msgstr "相同内容:" +msgstr "相同内容:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:23 msgctxt "pageformatpanel|size" msgid "Size:" -msgstr "大小:" +msgstr "大小:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:36 msgctxt "pageformatpanel|width" msgid "Width:" -msgstr "宽度:" +msgstr "宽度:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:49 msgctxt "pageformatpanel|height" msgid "Height:" -msgstr "高度:" +msgstr "高度:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:62 msgctxt "pageformatpanel|orientation" msgid "Orientation:" -msgstr "方向:" +msgstr "方向:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:76 msgctxt "pageformatpanel|paperwidth|tooltip_text" @@ -14161,7 +14161,7 @@ #: sw/uiconfig/swriter/ui/pageformatpanel.ui:129 msgctxt "pageformatpanel|margin" msgid "Margins:" -msgstr "边距:" +msgstr "边距:" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:143 msgctxt "pageformatpanel|marginLB" @@ -14181,17 +14181,17 @@ #: sw/uiconfig/swriter/ui/pageformatpanel.ui:146 msgctxt "pageformatpanel|marginLB" msgid "Normal 0.75\"" -msgstr "常规 0.75 英寸" +msgstr "常规 0.75\"" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:147 msgctxt "pageformatpanel|marginLB" msgid "Normal 1\"" -msgstr "常规 1 英寸" +msgstr "常规 1\"" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:148 msgctxt "pageformatpanel|marginLB" msgid "Normal 1.25\"" -msgstr "常规 1.25 英寸" +msgstr "常规 1.25\"" #: sw/uiconfig/swriter/ui/pageformatpanel.ui:149 msgctxt "pageformatpanel|marginLB" @@ -14211,12 +14211,12 @@ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:33 msgctxt "PageHeaderPanel|headertoggle-atkobject" msgid "Enable header" -msgstr "" +msgstr "启用页眉" #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:49 msgctxt "pageheaderpanel|margins" msgid "Margins:" -msgstr "边距:" +msgstr "边距:" #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:67 msgctxt "pageheaderpanel|customlabel" @@ -14226,12 +14226,12 @@ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:79 msgctxt "pageheaderpanel|spacing" msgid "Spacing:" -msgstr "间距:" +msgstr "间距:" #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:92 msgctxt "pageheaderpanel|samecontent" msgid "Same Content:" -msgstr "相同内容:" +msgstr "相同内容:" #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:81 msgctxt "pagemargincontrol|narrow" @@ -14361,37 +14361,37 @@ #: sw/uiconfig/swriter/ui/pagestylespanel.ui:51 msgctxt "pagestylespanel|numberslabel" msgid "Number:" -msgstr "数字:" +msgstr "数字:" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:66 msgctxt "pagestylespanel|backgroundlabel" msgid "Background:" -msgstr "背景:" +msgstr "背景:" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:93 msgctxt "pagestylespanel|layoutlabel" msgid "Layout:" -msgstr "布局:" +msgstr "布局:" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:122 msgctxt "pagestylespanel|columnlabel" msgid "Columns:" -msgstr "列数:" +msgstr "分栏:" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:137 msgctxt "pagestylespanel|columnbox" msgid "1 Column" -msgstr "1栏" +msgstr "1 栏" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:138 msgctxt "pagestylespanel|columnbox" msgid "2 Columns" -msgstr "2栏" +msgstr "2 栏" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:139 msgctxt "pagestylespanel|columnbox" msgid "3 Columns" -msgstr "3栏" +msgstr "3 栏" #: sw/uiconfig/swriter/ui/pagestylespanel.ui:140 msgctxt "pagestylespanel|columnbox" @@ -14426,7 +14426,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:152 msgctxt "paradialog|textflow" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: sw/uiconfig/swriter/ui/paradialog.ui:176 msgctxt "paradialog|labelTP_PARA_ASIAN" @@ -14566,12 +14566,12 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:294 msgctxt "picturepage|FT_ANGLE" msgid "_Angle:" -msgstr "角度(_A):" +msgstr "角度(_A):" #: sw/uiconfig/swriter/ui/picturepage.ui:336 msgctxt "picturepage|FT_ANGLEPRESETS" msgid "Default _settings:" -msgstr "默认设置(_S):" +msgstr "默认设置(_S):" #: sw/uiconfig/swriter/ui/picturepage.ui:350 msgctxt "picturepage|CTL_ANGLE|tooltip_text" @@ -14776,27 +14776,27 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:30 msgctxt "privateuserpage|nameft" msgid "First/last _name/initials:" -msgstr "名字/姓氏/缩写(_N):" +msgstr "名字/姓氏/缩写(_N):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:44 msgctxt "privateuserpage|streetft" msgid "_Street:" -msgstr "街道(_S):" +msgstr "街道(_S):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:58 msgctxt "privateuserpage|countryft" msgid "Co_untry/state:" -msgstr "国家/州(_U):" +msgstr "国家/州(_U):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:72 msgctxt "privateuserpage|titleft" msgid "_Title/profession:" -msgstr "头衔/职业(_T):" +msgstr "头衔/职业(_T):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:86 msgctxt "privateuserpage|phoneft" msgid "Fa_x:" -msgstr "传真(_X):" +msgstr "传真(_X):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:91 msgctxt "privateuserpage|phoneft-atkobject" @@ -14806,7 +14806,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:105 msgctxt "privateuserpage|faxft" msgid "Homepage/e-mail:" -msgstr "网页/e-mail:" +msgstr "网页/e-mail:" #: sw/uiconfig/swriter/ui/privateuserpage.ui:127 msgctxt "privateuserpage|firstname-atkobject" @@ -14851,7 +14851,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:302 msgctxt "privateuserpage|eastnameft" msgid "First/last _name/initials 2:" -msgstr "名字/姓氏/缩写 2 (_N):" +msgstr "名字/姓氏/缩写 2 (_N):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:324 msgctxt "privateuserpage|firstname2-atkobject" @@ -14871,7 +14871,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:378 msgctxt "privateuserpage|icityft" msgid "_Zip/city:" -msgstr "邮编/城市(_Z):" +msgstr "邮编/城市(_Z):" #: sw/uiconfig/swriter/ui/privateuserpage.ui:400 msgctxt "privateuserpage|icity-atkobject" @@ -14886,7 +14886,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:496 msgctxt "privateuserpage|titleft1" msgid "Phone/mobile:" -msgstr "电话/手机:" +msgstr "电话/手机:" #: sw/uiconfig/swriter/ui/privateuserpage.ui:519 msgctxt "privateuserpage|phone-atkobject" @@ -14951,12 +14951,12 @@ #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:7 msgctxt "queryredlinedialog|QueryRedlineDialog" msgid "Delete this theme?" -msgstr "" +msgstr "删除该主题?" #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:13 msgctxt "queryredlinedialog|QueryRedlineDialog" msgid "AutoCorrect completed." -msgstr "" +msgstr "自动更正已完成。" #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:14 msgctxt "queryredlinedialog|QueryRedlineDialog" @@ -14964,6 +14964,8 @@ "You can accept or reject all changes,\n" "or accept or reject particular changes." msgstr "" +"您可以接受或拒绝所有修改,\n" +"也可以接受或拒绝个别修改。" #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26 msgctxt "queryredlinedialog|cancel" @@ -14978,7 +14980,7 @@ #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55 msgctxt "queryredlinedialog|edit" msgid "Edit Changes" -msgstr "" +msgstr "编辑变更" #: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7 msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog" @@ -14988,7 +14990,7 @@ #: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:14 msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog" msgid "This image is rotated. Would you like to rotate it into standard orientation?" -msgstr "该图像已经被旋转。您想要将其旋转到标准方向吗?" +msgstr "该图像已被旋转。是否将其旋转到原来的方向?" #: sw/uiconfig/swriter/ui/querysavelabeldialog.ui:7 msgctxt "querysavelabeldialog|QuerySaveLabelDialog" @@ -15158,7 +15160,7 @@ #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:9 msgctxt "renameobjectdialog|RenameObjectDialog" msgid "Rename object: " -msgstr "重命名对象: " +msgstr "重命名对象: " #: sw/uiconfig/swriter/ui/renameobjectdialog.ui:104 msgctxt "renameobjectdialog|label2" @@ -15223,7 +15225,7 @@ #: sw/uiconfig/swriter/ui/savemonitordialog.ui:8 msgctxt "printmonitordialog|PrintMonitorDialog" msgid "Save monitor" -msgstr "" +msgstr "保存监视器" #: sw/uiconfig/swriter/ui/savemonitordialog.ui:71 msgctxt "printmonitordialog|saving" @@ -15328,7 +15330,7 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:108 msgctxt "selectaddressdialog|label2" msgid "Your recipients are currently selected from:" -msgstr "您当前从以下位置选择了收件人:" +msgstr "您当前从以下位置选择了收件人:" #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:125 msgctxt "selectaddressdialog|add" @@ -15353,7 +15355,7 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:181 msgctxt "selectaddressdialog|changetable" msgid "Change _Table..." -msgstr "更换表(_T).. " +msgstr "更换表格(_T)…" #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:225 msgctxt "selectaddressdialog|name" @@ -15373,7 +15375,7 @@ #: sw/uiconfig/swriter/ui/selectautotextdialog.ui:16 msgctxt "selectautotextdialog|SelectAutoTextDialog" msgid "Select AutoText:" -msgstr "选择自动图文集:" +msgstr "选择自动图文集:" #: sw/uiconfig/swriter/ui/selectautotextdialog.ui:137 msgctxt "selectautotextdialog|label1" @@ -15418,7 +15420,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:203 msgctxt "selectblockdialog|dependent" msgid "Only _include the country/region if it is not:" -msgstr "仅在国家/地区没有包含时包含" +msgstr "仅在不含该国家/地区时包含(I):" #: sw/uiconfig/swriter/ui/selectblockdialog.ui:244 msgctxt "selectblockdialog|label2" @@ -15463,7 +15465,7 @@ #: sw/uiconfig/swriter/ui/sidebarpage.ui:85 msgctxt "sidebarpage|column|tooltip_text" msgid "Columns" -msgstr "列" +msgstr "分栏" #: sw/uiconfig/swriter/ui/sidebarpage.ui:112 msgctxt "sidebarpage|margin|tooltip_text" @@ -15563,7 +15565,7 @@ #: sw/uiconfig/swriter/ui/sidebarwrap.ui:226 msgctxt "sidebarwrap|label1" msgid "Spacing:" -msgstr "间距:" +msgstr "间距:" #: sw/uiconfig/swriter/ui/sidebarwrap.ui:238 msgctxt "sidebarwrap|spacingLB|tooltip_text" @@ -15793,47 +15795,47 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:16 msgctxt "statisticsinfopage|label4" msgid "Pages:" -msgstr "页数:" +msgstr "页数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:30 msgctxt "statisticsinfopage|label5" msgid "Tables:" -msgstr "表格数:" +msgstr "表格数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:44 msgctxt "statisticsinfopage|label6" msgid "Images:" -msgstr "图像数:" +msgstr "图像数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:58 msgctxt "statisticsinfopage|label31" msgid "OLE objects:" -msgstr "OLE 对象数:" +msgstr "OLE 对象数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:72 msgctxt "statisticsinfopage|label32" msgid "Paragraphs:" -msgstr "段落数:" +msgstr "段落数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:86 msgctxt "statisticsinfopage|label33" msgid "Words:" -msgstr "字词数:" +msgstr "字词数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:100 msgctxt "statisticsinfopage|label34" msgid "Characters:" -msgstr "字符数:" +msgstr "字符数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:114 msgctxt "statisticsinfopage|label35" msgid "Characters excluding spaces:" -msgstr "不含空格的字符数:" +msgstr "不含空格的字符数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:128 msgctxt "statisticsinfopage|lineft" msgid "Lines:" -msgstr "行数:" +msgstr "行数:" #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:248 msgctxt "statisticsinfopage|update" @@ -15863,7 +15865,7 @@ #: sw/uiconfig/swriter/ui/subjectdialog.ui:82 msgctxt "subjectdialog|label1" msgid "Subject:" -msgstr "主题:" +msgstr "主题:" #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:66 msgctxt "tablecolumnpage|adaptwidth" @@ -15873,12 +15875,12 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:81 msgctxt "tablecolumnpage|adaptcolumns" msgid "Ad_just columns proportionally" -msgstr "对称地调整列宽(_J)" +msgstr "按比例调整列宽(_J)" #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:103 msgctxt "tablecolumnpage|spaceft" msgid "Remaining space:" -msgstr "剩余空间:" +msgstr "剩余空间:" #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:164 msgctxt "tablecolumnpage|width2-atkobject" @@ -15923,7 +15925,7 @@ #: sw/uiconfig/swriter/ui/tablepreviewdialog.ui:51 msgctxt "tablepreviewdialog|description" msgid "The list below shows the contents of: %1" -msgstr "以下列表显示了 %1 的内容: " +msgstr "以下列表显示了 %1 的内容" #: sw/uiconfig/swriter/ui/tableproperties.ui:8 msgctxt "tableproperties|TablePropertiesDialog" @@ -15938,7 +15940,7 @@ #: sw/uiconfig/swriter/ui/tableproperties.ui:128 msgctxt "tableproperties|textflow" msgid "Text Flow" -msgstr "文本流动" +msgstr "文字流" #: sw/uiconfig/swriter/ui/tableproperties.ui:151 msgctxt "tableproperties|columns" @@ -15998,12 +16000,12 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230 msgctxt "tabletextflowpage|split" msgid "Allow _table to split across pages and columns" -msgstr "允许表格在页面和分栏之间拆分(_T)" +msgstr "允许表格跨页跨栏(_T)" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245 msgctxt "tabletextflowpage|splitrow" msgid "Allow row to break a_cross pages and columns" -msgstr "允许表格行在页面和分栏之间断开(_C)" +msgstr "允许表格行跨页跨栏(_C)" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262 msgctxt "tabletextflowpage|keep" @@ -16013,7 +16015,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284 msgctxt "tabletextflowpage|label40" msgid "Text _orientation" -msgstr "文本方向(_O)" +msgstr "文字方向(_O)" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298 msgctxt "tabletextflowpage|liststore1" @@ -16038,7 +16040,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343 msgctxt "tabletextflowpage|label38" msgid "The first " -msgstr "前" +msgstr "前 " #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356 msgctxt "tabletextflowpage|label39" @@ -16048,7 +16050,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395 msgctxt "tabletextflowpage|label35" msgid "Text Flow" -msgstr "文本流动(_B)" +msgstr "文字流" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428 msgctxt "tabletextflowpage|label41" @@ -16058,7 +16060,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442 msgctxt "tabletextflowpage|liststore2" msgid "Top" -msgstr "顶端对齐" +msgstr "向上对齐" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443 msgctxt "tabletextflowpage|liststore2" @@ -16068,7 +16070,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444 msgctxt "tabletextflowpage|liststore2" msgid "Bottom" -msgstr "底端对齐" +msgstr "向下对齐" #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460 msgctxt "tabletextflowpage|label36" @@ -16188,7 +16190,7 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:301 msgctxt "templatedialog2|textflow" msgid "Text Flow" -msgstr "换行和分页" +msgstr "文字流" #: sw/uiconfig/swriter/ui/templatedialog2.ui:348 msgctxt "templatedialog2|asiantypo" @@ -16303,7 +16305,7 @@ #: sw/uiconfig/swriter/ui/templatedialog4.ui:489 msgctxt "templatedialog4|columns" msgid "Columns" -msgstr "列" +msgstr "分栏" #: sw/uiconfig/swriter/ui/templatedialog4.ui:536 msgctxt "templatedialog4|macros" @@ -16368,7 +16370,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:6 msgctxt "testmailsettings|textbuffer1" msgid "%PRODUCTNAME could not connect to the outgoing mail server. Check your system's settings and the settings in %PRODUCTNAME. Check the server name, the port and the secure connections settings" -msgstr "%PRODUCTNAME 无法连接到发送邮件服务器。请检查您的系统以及 %PRODUCTNAME 中的设置。请检查服务器名称,端口和安全连接设置。" +msgstr "%PRODUCTNAME 无法连接到发送邮件服务器。请检查您的系统设置以及 %PRODUCTNAME 中的设置。请检查服务器名称,端口及安全连接设置" #: sw/uiconfig/swriter/ui/testmailsettings.ui:11 msgctxt "testmailsettings|TestMailSettings" @@ -16433,27 +16435,27 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:200 msgctxt "textgridpage|labelFT_CHARSPERLINE" msgid "Characters per line:" -msgstr "每行的字符数:" +msgstr "每行的字符数:" #: sw/uiconfig/swriter/ui/textgridpage.ui:238 msgctxt "textgridpage|labelFT_LINESPERPAGE" msgid "Lines per page:" -msgstr "每页行数:" +msgstr "每页行数:" #: sw/uiconfig/swriter/ui/textgridpage.ui:303 msgctxt "textgridpage|labelFT_CHARWIDTH" msgid "Character _width:" -msgstr "字符宽度(_W):" +msgstr "字符宽度(_W):" #: sw/uiconfig/swriter/ui/textgridpage.ui:317 msgctxt "textgridpage|labelFT_RUBYSIZE" msgid "Max. Ruby text size:" -msgstr "最大注音标记大小:" +msgstr "最大注音标记大小:" #: sw/uiconfig/swriter/ui/textgridpage.ui:342 msgctxt "textgridpage|labelFT_TEXTSIZE" msgid "Max. base text size:" -msgstr "最大基底文字大小:" +msgstr "最大基底文字大小:" #: sw/uiconfig/swriter/ui/textgridpage.ui:377 msgctxt "textgridpage|checkCB_RUBYBELOW" @@ -16478,7 +16480,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:470 msgctxt "textgridpage|labelFT_COLOR" msgid "Grid color:" -msgstr "网格颜色:" +msgstr "网格颜色:" #: sw/uiconfig/swriter/ui/textgridpage.ui:505 msgctxt "textgridpage|labelFL_DISPLAY" @@ -16498,7 +16500,7 @@ #: sw/uiconfig/swriter/ui/titlepage.ui:147 msgctxt "titlepage|label7" msgid "Place title pages at:" -msgstr "将标题页/扉页放置于:" +msgstr "将标题页/扉页放置于:" #: sw/uiconfig/swriter/ui/titlepage.ui:198 msgctxt "titlepage|RB_USE_EXISTING_PAGES" @@ -16533,7 +16535,7 @@ #: sw/uiconfig/swriter/ui/titlepage.ui:348 msgctxt "titlepage|FT_PAGE_COUNT" msgid "Page number:" -msgstr "页码:" +msgstr "页码:" #: sw/uiconfig/swriter/ui/titlepage.ui:385 msgctxt "titlepage|CB_SET_PAGE_NUMBER" @@ -16543,7 +16545,7 @@ #: sw/uiconfig/swriter/ui/titlepage.ui:413 msgctxt "titlepage|FT_PAGE_PAGES" msgid "Page number:" -msgstr "页码:" +msgstr "页码:" #: sw/uiconfig/swriter/ui/titlepage.ui:456 msgctxt "titlepage|label2" @@ -16568,7 +16570,7 @@ #: sw/uiconfig/swriter/ui/tocdialog.ui:8 msgctxt "tocdialog|TocDialog" msgid "Table of Contents, Index or Bibliography" -msgstr "内容目录,索引及文献目录" +msgstr "目录、索引或参考文献" #: sw/uiconfig/swriter/ui/tocdialog.ui:82 msgctxt "tocdialog|showexample" @@ -16598,7 +16600,7 @@ #: sw/uiconfig/swriter/ui/tocdialog.ui:216 msgctxt "tocdialog|columns" msgid "Columns" -msgstr "列" +msgstr "分栏" #: sw/uiconfig/swriter/ui/tocdialog.ui:239 msgctxt "tocdialog|background" @@ -16608,7 +16610,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:96 msgctxt "tocentriespage|levelft" msgid "_Level" -msgstr "级(_L)" +msgstr "级别(_L)" #: sw/uiconfig/swriter/ui/tocentriespage.ui:112 msgctxt "tocentriespage|typeft" @@ -16618,7 +16620,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:168 msgctxt "tocentriespage|label4" msgid "_Structure:" -msgstr "结构(_S):" +msgstr "结构(_S):" #: sw/uiconfig/swriter/ui/tocentriespage.ui:180 msgctxt "tocentriespage|all" @@ -16628,7 +16630,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:220 msgctxt "tocentriespage|label5" msgid "Character style:" -msgstr "字符样式:" +msgstr "字符样式:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:232 msgctxt "tocentriespage|edit" @@ -16638,12 +16640,12 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:259 msgctxt "tocentriespage|fillcharft" msgid "Fill character:" -msgstr "填充字符:" +msgstr "填充字符:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:291 msgctxt "tocentriespage|tabstopposft" msgid "Tab stop position:" -msgstr "制表符位置:" +msgstr "制表符位置:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:317 msgctxt "tocentriespage|alignright" @@ -16653,7 +16655,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:334 msgctxt "tocentriespage|chapterentryft" msgid "Chapter entry:" -msgstr "章节条目:" +msgstr "章节条目:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:351 msgctxt "tocentriespage|chapterentry" @@ -16673,12 +16675,12 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:365 msgctxt "tocentriespage|entryoutlinelevelft" msgid "Evaluate up to level:" -msgstr "包括的级别:" +msgstr "包括的级别:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:392 msgctxt "tocentriespage|numberformatft" msgid "Format:" -msgstr "格式:" +msgstr "格式:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:409 msgctxt "tocentriespage|numberformat" @@ -16743,17 +16745,17 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:643 msgctxt "tocentriespage|commasep" msgid "Key separated by commas" -msgstr "关键字" +msgstr "关键字用逗号分隔" #: sw/uiconfig/swriter/ui/tocentriespage.ui:659 msgctxt "tocentriespage|alphadelim" msgid "Alphabetical delimiter" -msgstr "字母分隔符" +msgstr "字母顺序分隔符" #: sw/uiconfig/swriter/ui/tocentriespage.ui:677 msgctxt "tocentriespage|mainstyleft" msgid "Character style for main entries:" -msgstr "主条目的字符样式:" +msgstr "主条目的字符样式:" #: sw/uiconfig/swriter/ui/tocentriespage.ui:705 msgctxt "tocentriespage|label3" @@ -16843,7 +16845,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:50 msgctxt "tocindexpage|liststore1" msgid "Table of Contents" -msgstr "内容目录" +msgstr "目录" #: sw/uiconfig/swriter/ui/tocindexpage.ui:54 msgctxt "tocindexpage|liststore1" @@ -16853,7 +16855,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:58 msgctxt "tocindexpage|liststore1" msgid "Table of Figures" -msgstr "" +msgstr "图示总表" #: sw/uiconfig/swriter/ui/tocindexpage.ui:62 msgctxt "tocindexpage|liststore1" @@ -16873,17 +16875,17 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:74 msgctxt "tocindexpage|liststore1" msgid "Bibliography" -msgstr "文献目录" +msgstr "参考文献" #: sw/uiconfig/swriter/ui/tocindexpage.ui:111 msgctxt "tocindexpage|mainstyleft" msgid "_Title:" -msgstr "标题(_T):" +msgstr "标题(_T):" #: sw/uiconfig/swriter/ui/tocindexpage.ui:136 msgctxt "tocindexpage|typeft" msgid "Type:" -msgstr "类型:" +msgstr "类型:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:159 msgctxt "tocindexpage|readonly" @@ -16898,7 +16900,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:225 msgctxt "tocindexpage|mainstyleft2" msgid "For:" -msgstr "用于:" +msgstr "用于:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:239 msgctxt "tocindexpage|scope" @@ -16913,12 +16915,12 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:264 msgctxt "tocindexpage|levelft" msgid "Evaluate up to level:" -msgstr "包括的级别:" +msgstr "包括的级别:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:298 msgctxt "tocindexpage|label1" msgid "Create Index or Table of Contents" -msgstr "创建索引或内容目录" +msgstr "创建索引或目录" #: sw/uiconfig/swriter/ui/tocindexpage.ui:339 msgctxt "tocindexpage|fromheadings" @@ -16983,12 +16985,12 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:586 msgctxt "tocindexpage|categoryft" msgid "Category:" -msgstr "类别:" +msgstr "类别:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:610 msgctxt "tocindexpage|displayft" msgid "Display:" -msgstr "显示:" +msgstr "显示:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:624 msgctxt "tocindexpage|display" @@ -17018,7 +17020,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:737 msgctxt "tocindexpage|mainstyleft9" msgid "_Brackets:" -msgstr "括号(_B):" +msgstr "括号(_B):" #: sw/uiconfig/swriter/ui/tocindexpage.ui:748 msgctxt "tocindexpage|numberentries" @@ -17093,7 +17095,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:938 msgctxt "tocindexpage|file" msgid "_File" -msgstr "文件(_F)" +msgstr "文件(_F)" #: sw/uiconfig/swriter/ui/tocindexpage.ui:959 msgctxt "tocindexpage|label5" @@ -17103,12 +17105,12 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1002 msgctxt "tocindexpage|mainstyleft3" msgid "Language:" -msgstr "语言:" +msgstr "语言:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:1037 msgctxt "tocindexpage|mainstyleft5" msgid "Key type:" -msgstr "关键字类型:" +msgstr "关键字类型:" #: sw/uiconfig/swriter/ui/tocindexpage.ui:1070 msgctxt "tocindexpage|label4" @@ -17178,7 +17180,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:170 msgctxt "viewoptionspage|changestooltip" msgid "_Tooltips on tracked changes" -msgstr "" +msgstr "跟踪到变更时提示(_T)" #: sw/uiconfig/swriter/ui/viewoptionspage.ui:190 msgctxt "viewoptionspage|displaylabel" @@ -17253,7 +17255,7 @@ #: sw/uiconfig/swriter/ui/warnemaildialog.ui:17 msgctxt "warnemaildialog|WarnEmailDialog" msgid "The following error occurred:" -msgstr "出现了以下错误:" +msgstr "出现了以下错误:" #: sw/uiconfig/swriter/ui/watermarkdialog.ui:18 msgctxt "watermarkdialog|WatermarkDialog" @@ -17368,22 +17370,22 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:428 msgctxt "wrappage|label4" msgid "L_eft:" -msgstr "左(_E):" +msgstr "左(_E):" #: sw/uiconfig/swriter/ui/wrappage.ui:442 msgctxt "wrappage|label5" msgid "_Right:" -msgstr "右(_R):" +msgstr "右(_R):" #: sw/uiconfig/swriter/ui/wrappage.ui:456 msgctxt "wrappage|label6" msgid "_Top:" -msgstr "上(_T):" +msgstr "上(_T):" #: sw/uiconfig/swriter/ui/wrappage.ui:470 msgctxt "wrappage|label7" msgid "_Bottom:" -msgstr "下(_B):" +msgstr "下(_B):" #: sw/uiconfig/swriter/ui/wrappage.ui:535 msgctxt "wrappage|label2" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/uui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/uui/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/uui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/uui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-05-22 13:16+0200\n" -"PO-Revision-Date: 2018-11-27 13:12+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2018-12-18 10:31+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1543324350.000000\n" +"X-POOTLE-MTIME: 1545129083.000000\n" #: uui/inc/ids.hrc:27 msgctxt "RID_UUI_ERRHDL" @@ -476,12 +476,12 @@ #: uui/inc/strings.hrc:27 msgctxt "STR_ENTER_SIMPLE_PASSWORD" msgid "Enter password: " -msgstr "输入密码:" +msgstr "输入密码: " #: uui/inc/strings.hrc:28 msgctxt "STR_CONFIRM_SIMPLE_PASSWORD" msgid "Confirm password: " -msgstr "确认密码:" +msgstr "确认密码: " #: uui/inc/strings.hrc:29 msgctxt "STR_TITLE_CREATE_PASSWORD" @@ -531,6 +531,9 @@ "\n" "Close document on other system and retry saving or ignore own file locking and save current document." msgstr "" +"文档「$(ARG1)」已被您自己在其他系统中编辑时锁定,开始于 $(ARG2)\n" +"\n" +"请在其他系统关闭文档,然后重新尝试保存,或者忽略自己的文件锁,强行保存当前文档。" #: uui/inc/strings.hrc:38 msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN" @@ -588,11 +591,18 @@ "\n" "$(ARG3)" msgstr "" +"文档「$(ARG1)」已被该用户锁定编辑:\n" +"\n" +"$(ARG2)\n" +"\n" +"您可以以只读模式打开该文档,也可以打开该文档的副本来编辑。\n" +"\n" +"$(ARG3)" #: uui/inc/strings.hrc:51 msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG" msgid "You may also ignore the file locking and open the document for editing." -msgstr "" +msgstr "您也可以忽略文件锁,强行打开文件来编辑。" #: uui/inc/strings.hrc:52 msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN" @@ -621,6 +631,9 @@ "\n" "Do you want to save anyway?" msgstr "" +"文件自从被 %PRODUCTNAME 打开编辑以来已发生变更。保存您的版本将覆盖其他人作出的变更。\n" +"\n" +"是否仍然保存?" #: uui/inc/strings.hrc:58 msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN" @@ -641,6 +654,11 @@ "\n" "Try again later to save document or save a copy of that document." msgstr "" +"文档「$(ARG1)」已被该用户锁定编辑:\n" +"\n" +"$(ARG2)\n" +"\n" +"请稍后再尝试保存文件,或保存该文件的副本。" #: uui/inc/strings.hrc:62 msgctxt "STR_OVERWRITE_IGNORELOCK_MSG" @@ -651,6 +669,11 @@ "\n" "You may try to ignore the file locking and overwrite the existing document." msgstr "" +"文档「$(ARG1)」已被该用户锁定编辑:\n" +"\n" +"$(ARG2)\n" +"\n" +"您可以尝试忽略文件锁,并覆盖现有文档。" #: uui/inc/strings.hrc:63 msgctxt "STR_TRYLATER_RETRYSAVING_BTN" @@ -823,6 +846,9 @@ "\n" "Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros." msgstr "" +"该文档含有宏。\n" +"\n" +"宏可能会包含病毒。在一个文档中禁用宏永远是安全的。如果您禁用宏,则由该宏提供的相应功能将不可用。" #: uui/uiconfig/ui/macrowarnmedium.ui:28 msgctxt "macrowarnmedium|cancel" @@ -847,7 +873,7 @@ #: uui/uiconfig/ui/macrowarnmedium.ui:129 msgctxt "macrowarnmedium|viewSignsButton" msgid "_View Signatures…" -msgstr "查看签名(_V)..." +msgstr "查看签名(_V)…" #: uui/uiconfig/ui/masterpassworddlg.ui:8 msgctxt "masterpassworddlg|MasterPasswordDialog" @@ -942,4 +968,4 @@ #: uui/uiconfig/ui/unknownauthdialog.ui:113 msgctxt "unknownauthdialog|examine" msgid "Examine Certificate…" -msgstr "检查证书..." +msgstr "检查证书…" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/vcl/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/vcl/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/vcl/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/vcl/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2017-12-25 09:24+0000\n" -"Last-Translator: Voina i Mir \n" +"PO-Revision-Date: 2019-01-18 12:58+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1514193842.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1547816304.000000\n" #. To translators: This is the first entry of a sequence of paper size names #: vcl/inc/print.hrc:28 @@ -566,12 +566,12 @@ #: vcl/inc/strings.hrc:101 msgctxt "STR_FPICKER_IMAGE_TEMPLATE" msgid "Frame Style: " -msgstr "框架样式:" +msgstr "框架样式: " #: vcl/inc/strings.hrc:102 msgctxt "STR_FPICKER_IMAGE_ANCHOR" msgid "A~nchor: " -msgstr "" +msgstr "锚点(~N): " #: vcl/inc/strings.hrc:103 msgctxt "STR_FPICKER_SELECTION" @@ -666,17 +666,17 @@ #: vcl/inc/strings.hrc:125 msgctxt "SV_APP_CPUTHREADS" msgid "CPU threads: " -msgstr "CPU 线程:" +msgstr "CPU 线程: " #: vcl/inc/strings.hrc:126 msgctxt "SV_APP_OSVERSION" msgid "OS: " -msgstr "操作系统:" +msgstr "操作系统: " #: vcl/inc/strings.hrc:127 msgctxt "SV_APP_UIRENDER" msgid "UI render: " -msgstr "UI 渲染:" +msgstr "UI 渲染: " #: vcl/inc/strings.hrc:128 msgctxt "SV_APP_GL" @@ -1239,7 +1239,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1457 msgctxt "printdialog|singleprintjob" msgid "Create separate print jobs for collated output" -msgstr "" +msgstr "为逐份输出分别创建打印任务" #: vcl/uiconfig/ui/printdialog.ui:1472 msgctxt "printdialog|printpaperfromsetup" @@ -1249,7 +1249,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1486 msgctxt "printdialog|papersizefromsetup" msgid "Use only paper size from printer preferences" -msgstr "只使用打印机偏好设置中的纸张来源" +msgstr "只使用打印机偏好设置中的纸张大小" #: vcl/uiconfig/ui/printdialog.ui:1508 msgctxt "printdialog|label21" @@ -1259,7 +1259,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1523 msgctxt "printdialog|optionstab" msgid "Options" -msgstr "" +msgstr "选项" #: vcl/uiconfig/ui/printerdevicepage.ui:34 msgctxt "printerdevicepage|label7" @@ -1349,7 +1349,7 @@ #: vcl/uiconfig/ui/printerpaperpage.ui:32 msgctxt "printerpaperpage|orientft" msgid "_Orientation:" -msgstr "" +msgstr "方向(_O):" #: vcl/uiconfig/ui/printerpaperpage.ui:45 msgctxt "printerpaperpage|duplexft" @@ -1374,7 +1374,7 @@ #: vcl/uiconfig/ui/printerpaperpage.ui:113 msgctxt "printerpaperpage|papersizefromsetup" msgid "Use only paper size from printer preferences" -msgstr "" +msgstr "只使用打印机偏好设置中的纸张大小" #: vcl/uiconfig/ui/printerpropertiesdialog.ui:8 msgctxt "printerpropertiesdialog|PrinterPropertiesDialog" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-CN/wizards/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/wizards/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-CN/wizards/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-CN/wizards/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-02-27 15:07+0100\n" -"PO-Revision-Date: 2018-01-24 02:47+0000\n" -"Last-Translator: 锁琨珑 \n" +"PO-Revision-Date: 2019-01-23 18:10+0000\n" +"Last-Translator: Dian LI \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\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: 1516762068.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1548267019.000000\n" #: wizards/com/sun/star/wizards/common/strings.hrc:32 msgctxt "RID_COMMON_START_0" @@ -915,7 +915,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:230 msgctxt "RID_AGENDAWIZARDDIALOG_START_8" msgid "Please enter general information for the event" -msgstr "请输入事件的一般信息" +msgstr "请输入事件的常规信息" #: wizards/com/sun/star/wizards/common/strings.hrc:231 msgctxt "RID_AGENDAWIZARDDIALOG_START_9" @@ -1120,7 +1120,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:271 msgctxt "RID_AGENDAWIZARDDIALOG_START_51" msgid "General information" -msgstr "一般信息" +msgstr "常规信息" #: wizards/com/sun/star/wizards/common/strings.hrc:272 msgctxt "RID_AGENDAWIZARDDIALOG_START_52" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/cui/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/cui/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/cui/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/cui/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-10-03 13:35+0200\n" -"PO-Revision-Date: 2018-10-25 16:07+0000\n" +"PO-Revision-Date: 2018-12-24 16:45+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1540483624.000000\n" +"X-POOTLE-MTIME: 1545669935.000000\n" #: cui/inc/personalization.hrc:31 msgctxt "RID_SVXSTR_PERSONA_CATEGORIES" @@ -5010,7 +5010,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:627 msgctxt "fmsearchdialog|cbRegular" msgid "_Regular expression" -msgstr "常規表達式(_E)" +msgstr "常規表述式(_E)" #: cui/uiconfig/ui/fmsearchdialog.ui:643 msgctxt "fmsearchdialog|cbUseFormat" @@ -7594,7 +7594,7 @@ #: cui/uiconfig/ui/optctlpage.ui:239 msgctxt "optctlpage|numerals" msgid "Context" -msgstr "上下文" +msgstr "前後文" #: cui/uiconfig/ui/optctlpage.ui:255 msgctxt "optctlpage|label4" @@ -9071,7 +9071,7 @@ #: cui/uiconfig/ui/optviewpage.ui:454 msgctxt "optviewpage|label7" msgid "_Notebookbar icon size:" -msgstr "頁籤式工具列圖示大小(_N):" +msgstr "記事本工具列圖示大小(_N):" #: cui/uiconfig/ui/optviewpage.ui:468 msgctxt "optviewpage|notebookbariconsize" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/forms/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/forms/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/forms/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/forms/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,14 +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: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2018-12-24 16:48+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" +"Language: zh_TW\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-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545670085.000000\n" #: forms/inc/strings.hrc:25 msgctxt "RID_BASELISTBOX_ERROR_FILLLIST" @@ -295,7 +298,7 @@ #: forms/inc/strings.hrc:81 msgctxt "RID_STR_XFORMS_PATTERN_DOESNT_MATCH" msgid "The string '$1' does not match the required regular expression '$2'." -msgstr "字串「$1」與要求的常規表示式「$2」不相符。" +msgstr "字串「$1」與要求的常規表述式「$2」不相符。" #: forms/inc/strings.hrc:82 msgctxt "RID_STR_XFORMS_BINDING_UI_NAME" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/00.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/00.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/00.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-13 14:59+0200\n" -"PO-Revision-Date: 2018-02-05 09:03+0000\n" +"PO-Revision-Date: 2018-12-21 14:43+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1517821398.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545403410.000000\n" #: 00000001.xhp msgctxt "" @@ -2694,7 +2694,7 @@ "par_id3155941\n" "help.text" msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context." -msgstr "物件會根據上下文物理性地從資料條目中刪除或是直接從物件的顯示中移除。" +msgstr "物件會根據前後文實質性地從資料條目中刪除或是直接從物件的顯示中移除。" #: 00000010.xhp msgctxt "" @@ -2814,7 +2814,7 @@ "par_id3156027\n" "help.text" msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics." -msgstr "這些功能表是上下文相關的。這意味著,只有與目前所執行的工作相關的那些功能表項目才可用。如果游標位於文字中,則編輯文字所需的所有功能表項目均可用。如果您已在文件中選取了圖形,則會看到所有可用於編輯圖形的功能表項目。" +msgstr "這些功能表是情境相關的。這意味著,只有與目前所執行的工作相關的那些功能表項目才可用。如果游標位於文字中,則編輯文字所需的所有功能表項目均可用。如果您已在文件中選取了圖形,則會看到所有可用於編輯圖形的功能表項目。" #: 00000020.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-02-05 11:57+0000\n" -"Last-Translator: Richard_Ng \n" +"PO-Revision-Date: 2018-12-21 14:44+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1517831872.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545403493.000000\n" #: 01010000.xhp msgctxt "" @@ -12182,7 +12182,7 @@ "par_id1886654\n" "help.text" msgid "Choose View - Toolbars - Reset to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context." -msgstr "選擇 [檢視] - [工具列] - [重設],將工具列重設為預設與上下文相關的運作方式。此時會根據上下文自動顯示部分工具列。" +msgstr "選擇「檢視 - 工具列 - 重設」,將工具列重設為預設與情境相關的運作方式。此時會根據上下文自動顯示部分工具列。" #: 04050000.xhp msgctxt "" @@ -43534,7 +43534,7 @@ "par_id3994567\n" "help.text" msgid "The possible settings of the Data tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:" -msgstr "控制項的 [資料] 標籤頁上所能進行的設定,視各控制項而定。所能看見的僅限於目前控制項與上下文所適用的選項。可用欄位如下:" +msgstr "控制項的「資料」標籤頁上所能進行的設定,視各控制項而定。所能看見的僅限於目前控制項與情境所適用的選項。可用欄位如下:" #: xformsdatatab.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/optionen.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:06+0200\n" -"PO-Revision-Date: 2018-01-25 15:18+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" +"PO-Revision-Date: 2018-12-20 11:06+0000\n" +"Last-Translator: Franklin \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1516893508.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545303972.000000\n" #: 01000000.xhp msgctxt "" @@ -7470,7 +7470,7 @@ "hd_id5240028\n" "help.text" msgid "Expand word space on lines with manual line breaks in justified paragraphs" -msgstr "在兩端對齊的段落中手動斷行,以拉長每行的單字間距" +msgstr "在兩端對齊的段落中手動斷行時,該行也設定為兩端對齊" #: 01041000.xhp msgctxt "" @@ -7558,7 +7558,7 @@ "par_id4653767\n" "help.text" msgid "Expand word space on lines with manual line breaks in justified paragraphs" -msgstr "在兩端對齊的段落中手動斷行,以拉長每行的單字間距" +msgstr "在兩端對齊的段落中手動斷行時,該行也設定為兩端對齊" #: 01041100.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/helpcontent2/source/text/swriter/01.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-11-27 12:26+0100\n" -"PO-Revision-Date: 2018-02-05 11:40+0000\n" -"Last-Translator: Igli Manaj \n" +"PO-Revision-Date: 2018-12-21 14:47+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1517830833.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545403658.000000\n" #: 01120000.xhp msgctxt "" @@ -19478,7 +19478,7 @@ "par_id3149349\n" "help.text" msgid "$[officename] applies the paragraph properties of conditional styles as follows (the bold terms correspond to the titles of dialog fields): If a paragraph formatted with a conditional style is in a Context that has an Applied Style linked to it, then the Paragraph Style from that condition is used. If no style is linked to the Context, then the attributes defined in the conditional style apply. The following example illustrates this relationship:" -msgstr "指定有條件的樣式的段落屬性時,$[officename] 執行如下 (以粗體加深的概念,符合對話方塊中欄位的標題):若以有條件的樣式格式化的段落位於「上下文」中,且與「使用的樣式」連接,那麼便會使用這個條件中的「段落樣式」。若「上下文」未連接任何樣式,則適用已在有條件的樣式中定義的屬性。下列範例清楚說明其相關性:" +msgstr "指定有條件的樣式的段落屬性時,$[officename] 執行如下 (以粗體加深的概念,符合對話方塊中欄位的標題):若以有條件的樣式格式化的段落位於「前後文」中,且與「使用的樣式」連接,那麼便會使用這個條件中的「段落樣式」。若「前後文」未連接任何樣式,則適用已在有條件的樣式中定義的屬性。下列範例清楚說明其相關性:" #: 05130100.xhp msgctxt "" @@ -19510,7 +19510,7 @@ "par_id3154647\n" "help.text" msgid "In Context, select the header entry and under Paragraph Styles select the style for the header in your business letter; for example, the default Paragraph Style \"Header\". You also can select your own style." -msgstr "現在請在「上下文」下選取「首頁」條目,並在「段落樣式」清單方塊中選取適用於您的商務信函的樣式,例如,預設的段落樣式「首頁」。當然,您也可以在此選取一個自訂的樣式。" +msgstr "現在請在「前後文」下選取「首頁」條目,並在「段落樣式」清單方塊中選取適用於您的商務信函的樣式,例如,預設的段落樣式「首頁」。當然,您也可以在此選取一個自訂的樣式。" #: 05130100.xhp msgctxt "" @@ -19550,7 +19550,7 @@ "par_id3151321\n" "help.text" msgid "The Paragraph Style applied to the context is used when exporting to other formats (RTF, HTML, and so on)." -msgstr "匯出到其他格式 (RTF、HTML、等) 時,會寫入為上下文指定的段落樣式。" +msgstr "匯出到其他格式 (RTF、HTML、等) 時,會寫入為前後文指定的段落樣式。" #: 05130100.xhp msgctxt "" @@ -19574,7 +19574,7 @@ "hd_id3153672\n" "help.text" msgid "Context" -msgstr "上下文" +msgstr "前後文" #: 05130100.xhp msgctxt "" @@ -19582,7 +19582,7 @@ "par_id3147530\n" "help.text" msgid "Here you can see the $[officename] predefined contexts, including outline levels 1 to 10, numbering/bullets levels 1 to 10, table header, table contents, section, border, footnote, header and footer." -msgstr "您可以在此看見 $[officename] 預先定義的上下文,包括大綱層次 1 到 10、編號/項目符號 1 到 10、表格標題、表格內容、區段、邊框、註腳、頁首和首尾。" +msgstr "您可以在此看見 $[officename] 預先定義的前後文,包括大綱層次 1 到 10、編號/項目符號 1 到 10、表格標題、表格內容、區段、邊框、註腳、頁首和首尾。" #: 05130100.xhp msgctxt "" @@ -19598,7 +19598,7 @@ "par_id3149689\n" "help.text" msgid "Here you can see the list of all Paragraph Styles applied to a context." -msgstr "在此會列出一張清單,內含為上下文指定的所有段落樣式。" +msgstr "在此會列出一張清單,內含為前後文指定的所有段落樣式。" #: 05130100.xhp msgctxt "" @@ -19614,7 +19614,7 @@ "par_id3159195\n" "help.text" msgid "A list of all Paragraph Styles which can be assigned to a context is contained in the list box." -msgstr "在清單方塊中將包含可以指定到上下文的所有段落樣式的清單。" +msgstr "在清單方塊中將包含可以指定到前後文的所有段落樣式的清單。" #: 05130100.xhp msgctxt "" @@ -19630,7 +19630,7 @@ "par_id3151335\n" "help.text" msgid "Click here to remove the current context assigned to the selected style." -msgstr "按一下此處移除目前指定給所選樣式的上下文。" +msgstr "按一下此處移除目前指定給所選樣式的前後文。" #: 05130100.xhp msgctxt "" @@ -19646,7 +19646,7 @@ "par_id3154829\n" "help.text" msgid "Click Assign to apply the selected Paragraph Style to the defined context." -msgstr "按一下 [指定]所選段落樣式套用到定義的上下文中。" +msgstr "按一下「指定」將所選段落樣式套用到定義的前後文中。" #: 05140000.xhp msgctxt "" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.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: 2018-09-03 12:27+0200\n" -"PO-Revision-Date: 2018-11-13 16:10+0000\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" +"PO-Revision-Date: 2018-12-21 14:41+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: \n" "Language: zh_TW\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1542125418.000000\n" +"X-Generator: LibreOffice\n" +"X-POOTLE-MTIME: 1545403310.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -21364,7 +21364,7 @@ "Label\n" "value.text" msgid "Current Context" -msgstr "目前的上下文" +msgstr "目前的前後文" #: GenericCommands.xcu msgctxt "" @@ -22907,15 +22907,6 @@ #: GenericCommands.xcu msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "3D 模型..." - -#: GenericCommands.xcu -msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" "Label\n" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/sc/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sc/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/sc/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sc/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-07-19 11:55+0200\n" -"PO-Revision-Date: 2018-10-25 16:09+0000\n" +"PO-Revision-Date: 2018-12-24 16:45+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1540483749.000000\n" +"X-POOTLE-MTIME: 1545669942.000000\n" #: sc/inc/compiler.hrc:27 msgctxt "RID_FUNCTION_CATEGORIES" @@ -19309,7 +19309,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:194 msgctxt "optcalculatepage|formulaliteral" msgid "No wildcards or regular expressions in formulas" -msgstr "公式中沒有萬用字元或常規表達式" +msgstr "公式中沒有萬用字元或常規表述式" #: sc/uiconfig/scalc/ui/optcalculatepage.ui:212 msgctxt "optcalculatepage|lookup" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/sfx2/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sfx2/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/sfx2/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sfx2/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-12-11 13:59+0100\n" -"PO-Revision-Date: 2018-11-29 16:55+0000\n" +"PO-Revision-Date: 2018-12-21 14:47+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: LANGUAGE \n" "Language: zh_TW\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: 1543510550.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545403675.000000\n" #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" @@ -1278,7 +1278,7 @@ #: include/sfx2/strings.hrc:263 msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK" msgid "The certificate could not be validated and the document is only partially signed." -msgstr "" +msgstr "憑證無法通過驗證,文件僅有部分簽署。" #: include/sfx2/strings.hrc:264 msgctxt "STR_SIGNATURE_OK" diff -Nru libreoffice-l10n-6.1.4/translations/source/zh-TW/sw/messages.po libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sw/messages.po --- libreoffice-l10n-6.1.4/translations/source/zh-TW/sw/messages.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zh-TW/sw/messages.po 2019-01-30 17:56:45.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2018-08-22 01:07+0200\n" -"PO-Revision-Date: 2018-09-02 05:19+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" +"PO-Revision-Date: 2018-12-20 11:06+0000\n" +"Last-Translator: Franklin \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: 1535865599.000000\n" +"X-POOTLE-MTIME: 1545303975.000000\n" #: sw/inc/app.hrc:29 msgctxt "RID_PARAGRAPHSTYLEFAMILY" @@ -13252,7 +13252,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:66 msgctxt "optcompatpage|format" msgid "Expand word space on lines with manual line breaks in justified paragraphs" -msgstr "在兩端對齊的段落中手動斷行以拉長每行的單字間距" +msgstr "在兩端對齊的段落中手動斷行時,該行也設定為兩端對齊" #: sw/uiconfig/swriter/ui/optcompatpage.ui:67 msgctxt "optcompatpage|format" diff -Nru libreoffice-l10n-6.1.4/translations/source/zu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-6.1.5~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-6.1.4/translations/source/zu/officecfg/registry/data/org/openoffice/Office/UI.po 2018-12-12 21:59:13.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/translations/source/zu/officecfg/registry/data/org/openoffice/Office/UI.po 2019-01-30 17:56:45.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2018-09-03 12:27+0200\n" +"POT-Creation-Date: 2019-01-07 13:19+0100\n" "PO-Revision-Date: 2016-07-05 12:17+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -23537,15 +23537,6 @@ msgstr "" #: GenericCommands.xcu -msgctxt "" -"GenericCommands.xcu\n" -"..GenericCommands.UserInterface.Popups..uno:Insert3DModel\n" -"Label\n" -"value.text" -msgid "3D Model..." -msgstr "" - -#: GenericCommands.xcu msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Popups..uno:ClassificationApply\n" diff -Nru libreoffice-l10n-6.1.4/vcl/inc/unx/gtk/gtksalmenu.hxx libreoffice-l10n-6.1.5~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx --- libreoffice-l10n-6.1.4/vcl/inc/unx/gtk/gtksalmenu.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -55,6 +55,7 @@ bool mbReturnFocusToDocument; bool mbAddedGrab; GtkWidget* mpMenuBarContainerWidget; + GtkWidget* mpMenuAllowShrinkWidget; GtkWidget* mpMenuBarWidget; GtkWidget* mpCloseButton; VclPtr mpVCLMenu; diff -Nru libreoffice-l10n-6.1.4/vcl/inc/win/saldata.hxx libreoffice-l10n-6.1.5~rc2/vcl/inc/win/saldata.hxx --- libreoffice-l10n-6.1.4/vcl/inc/win/saldata.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/inc/win/saldata.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -270,6 +270,8 @@ #define SAL_MSG_TIMER_CALLBACK (WM_USER+162) // Stop the timer from the main thread; wParam = 0, lParam = 0 #define SAL_MSG_STOPTIMER (WM_USER+163) +// Start a real timer while GUI is blocked by native dialog +#define SAL_MSG_FORCE_REAL_TIMER (WM_USER+164) inline void SetWindowPtr( HWND hWnd, WinSalFrame* pThis ) { diff -Nru libreoffice-l10n-6.1.4/vcl/Library_vcl.mk libreoffice-l10n-6.1.5~rc2/vcl/Library_vcl.mk --- libreoffice-l10n-6.1.4/vcl/Library_vcl.mk 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/Library_vcl.mk 2019-01-30 17:56:45.000000000 +0000 @@ -377,6 +377,7 @@ vcl/source/app/unohelp2 \ vcl/source/app/unohelp \ vcl/source/app/vclevent \ + vcl/source/app/winscheduler \ vcl/source/components/dtranscomp \ vcl/source/components/factory \ vcl/source/components/fontident \ diff -Nru libreoffice-l10n-6.1.4/vcl/osx/a11ywrapper.mm libreoffice-l10n-6.1.5~rc2/vcl/osx/a11ywrapper.mm --- libreoffice-l10n-6.1.4/vcl/osx/a11ywrapper.mm 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/osx/a11ywrapper.mm 2019-01-30 17:56:45.000000000 +0000 @@ -992,7 +992,7 @@ bool bSafeToIterate = true; sal_Int32 nCount = rxAccessibleContext -> getAccessibleChildCount(); - if ( nCount < 0 || nCount > SAL_MAX_UINT16 /* slow enough for anyone */ ) + if (nCount < 0 || nCount > SAL_MAX_UINT16 /* slow enough for anyone */) bSafeToIterate = false; else { // manages descendants is an horror from the a11y standards guys. Reference< XAccessibleStateSet > xStateSet; diff -Nru libreoffice-l10n-6.1.4/vcl/source/app/salvtables.cxx libreoffice-l10n-6.1.5~rc2/vcl/source/app/salvtables.cxx --- libreoffice-l10n-6.1.4/vcl/source/app/salvtables.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/app/salvtables.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1644,6 +1644,7 @@ DECL_LINK(LoseFocusHdl, Control&, void); DECL_LINK(OutputHdl, Edit&, bool); DECL_LINK(InputHdl, sal_Int64*, TriState); + DECL_LINK(ActivateHdl, Edit&, void); public: SalInstanceSpinButton(NumericField* pButton, bool bTakeOwnership) @@ -1655,6 +1656,7 @@ m_xButton->SetLoseFocusHdl(LINK(this, SalInstanceSpinButton, LoseFocusHdl)); m_xButton->SetOutputHdl(LINK(this, SalInstanceSpinButton, OutputHdl)); m_xButton->SetInputHdl(LINK(this, SalInstanceSpinButton, InputHdl)); + m_xButton->GetSubEdit()->SetActivateHdl(LINK(this, SalInstanceSpinButton, ActivateHdl)); } virtual int get_value() const override @@ -1709,6 +1711,8 @@ virtual ~SalInstanceSpinButton() override { + if (Edit* pEdit = m_xButton->GetSubEdit()) + pEdit->SetActivateHdl(Link()); m_xButton->SetInputHdl(Link()); m_xButton->SetOutputHdl(Link()); m_xButton->SetLoseFocusHdl(Link()); @@ -1717,6 +1721,12 @@ } }; +IMPL_LINK_NOARG(SalInstanceSpinButton, ActivateHdl, Edit&, void) +{ + // tdf#122348 return pressed to end dialog + signal_value_changed(); +} + IMPL_LINK_NOARG(SalInstanceSpinButton, UpDownHdl, SpinField&, void) { signal_value_changed(); diff -Nru libreoffice-l10n-6.1.4/vcl/source/app/winscheduler.cxx libreoffice-l10n-6.1.5~rc2/vcl/source/app/winscheduler.cxx --- libreoffice-l10n-6.1.4/vcl/source/app/winscheduler.cxx 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/app/winscheduler.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -0,0 +1,37 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifdef _WIN32 + +#include + +#include +#include +#include + +void WinScheduler::SetForceRealTimer() +{ + BOOL const ret + = PostMessageW(GetSalData()->mpInstance->mhComWnd, SAL_MSG_FORCE_REAL_TIMER, 0, 0); + SAL_WARN_IF(0 == ret, "vcl.schedule", "ERROR: PostMessage() failed!"); +} + +#endif // _WIN32 + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/vcl/source/window/dialog.cxx libreoffice-l10n-6.1.5~rc2/vcl/source/window/dialog.cxx --- libreoffice-l10n-6.1.4/vcl/source/window/dialog.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/window/dialog.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -43,6 +43,7 @@ #include #include #include +#include #include #include #include @@ -1423,6 +1424,43 @@ return nullptr; } +int Dialog::get_default_response() +{ + //copy explicit responses + std::map, short> aResponses(mpDialogImpl->maResponses); + + //add implicit responses + for (vcl::Window* pChild = mpActionArea->GetWindow(GetWindowType::FirstChild); pChild; + pChild = pChild->GetWindow(GetWindowType::Next)) + { + if (aResponses.find(pChild) != aResponses.end()) + continue; + switch (pChild->GetType()) + { + case WindowType::OKBUTTON: + aResponses[pChild] = RET_OK; + break; + case WindowType::CANCELBUTTON: + aResponses[pChild] = RET_CANCEL; + break; + case WindowType::HELPBUTTON: + aResponses[pChild] = RET_HELP; + break; + default: + break; + } + } + + for (auto& a : aResponses) + { + if (a.first->GetStyle() & WB_DEFBUTTON) + { + return a.second; + } + } + return RET_CANCEL; +} + void Dialog::set_default_response(int response) { //copy explicit responses @@ -1495,4 +1533,28 @@ Dialog::Activate(); } +void TopLevelWindowLocker::incBusy(const vcl::Window* pIgnore) +{ + // lock any toplevel windows from being closed until busy is over + std::vector> aTopLevels; + vcl::Window *pTopWin = Application::GetFirstTopLevelWindow(); + while (pTopWin) + { + if (pTopWin != pIgnore) + aTopLevels.push_back(pTopWin); + pTopWin = Application::GetNextTopLevelWindow(pTopWin); + } + for (auto& a : aTopLevels) + a->IncModalCount(); + m_aBusyStack.push(aTopLevels); +} + +void TopLevelWindowLocker::decBusy() +{ + // unlock locked toplevel windows from being closed now busy is over + for (auto& a : m_aBusyStack.top()) + a->DecModalCount(); + m_aBusyStack.pop(); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-6.1.4/vcl/source/window/layout.cxx libreoffice-l10n-6.1.5~rc2/vcl/source/window/layout.cxx --- libreoffice-l10n-6.1.4/vcl/source/window/layout.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/window/layout.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -2231,7 +2231,7 @@ assert(pButtonBox); VclPtr pBtn; - short nDefaultResponse = RET_CANCEL; + short nDefaultResponse = get_default_response(); switch (m_eButtonsType) { case VclButtonsType::NONE: diff -Nru libreoffice-l10n-6.1.4/vcl/source/window/menufloatingwindow.cxx libreoffice-l10n-6.1.5~rc2/vcl/source/window/menufloatingwindow.cxx --- libreoffice-l10n-6.1.4/vcl/source/window/menufloatingwindow.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/window/menufloatingwindow.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -401,6 +401,16 @@ GetParent()->IncModalCount(); } +bool MenuFloatingWindow::MenuInHierarchyHasFocus() const +{ + if (HasChildPathFocus()) + return true; + PopupMenu* pSub = GetActivePopup(); + if (!pSub) + return false; + return pSub->ImplGetFloatingWindow()->HasChildPathFocus(); +} + void MenuFloatingWindow::End() { if (!bInExecute) @@ -412,7 +422,7 @@ // restore focus to previous window if we still have the focus VclPtr xFocusId(xSaveFocusId); xSaveFocusId = nullptr; - if (HasChildPathFocus() && xFocusId != nullptr) + if (xFocusId != nullptr && MenuInHierarchyHasFocus()) { ImplGetSVData()->maWinData.mbNoDeactivate = false; Window::EndSaveFocus(xFocusId); diff -Nru libreoffice-l10n-6.1.4/vcl/source/window/menufloatingwindow.hxx libreoffice-l10n-6.1.5~rc2/vcl/source/window/menufloatingwindow.hxx --- libreoffice-l10n-6.1.4/vcl/source/window/menufloatingwindow.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/source/window/menufloatingwindow.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -121,6 +121,8 @@ void SetPosInParent( sal_uInt16 nPos ) { nPosInParent = nPos; } + bool MenuInHierarchyHasFocus() const; + virtual css::uno::Reference CreateAccessible() override; }; diff -Nru libreoffice-l10n-6.1.4/vcl/unx/generic/printer/ppdparser.cxx libreoffice-l10n-6.1.5~rc2/vcl/unx/generic/printer/ppdparser.cxx --- libreoffice-l10n-6.1.4/vcl/unx/generic/printer/ppdparser.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/unx/generic/printer/ppdparser.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -852,13 +852,22 @@ } // fill in direct values - if( (pKey = getKey( OUString( "ColorDevice" ) )) ) - m_bColorDevice = pKey->getValue( 0 )->m_aValue.startsWithIgnoreAsciiCase( "true" ); + if ((pKey = getKey(OUString("ColorDevice")))) + { + if (const PPDValue* pValue = pKey->getValue(0)) + m_bColorDevice = pValue->m_aValue.startsWithIgnoreAsciiCase("true"); + } - if( (pKey = getKey( OUString( "LanguageLevel" ) )) ) - m_nLanguageLevel = pKey->getValue( 0 )->m_aValue.toInt32(); - if( (pKey = getKey( OUString( "TTRasterizer" ) )) ) - m_bType42Capable = pKey->getValue( 0 )->m_aValue.equalsIgnoreAsciiCase( "Type42" ); + if ((pKey = getKey(OUString("LanguageLevel")))) + { + if (const PPDValue* pValue = pKey->getValue(0)) + m_nLanguageLevel = pValue->m_aValue.toInt32(); + } + if ((pKey = getKey(OUString("TTRasterizer")))) + { + if (const PPDValue* pValue = pKey->getValue(0)) + m_bType42Capable = pValue->m_aValue.equalsIgnoreAsciiCase( "Type42" ); + } } PPDParser::~PPDParser() diff -Nru libreoffice-l10n-6.1.4/vcl/unx/gtk/gtksalframe.cxx libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk/gtksalframe.cxx --- libreoffice-l10n-6.1.4/vcl/unx/gtk/gtksalframe.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk/gtksalframe.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -3666,6 +3666,13 @@ } } + bool bSafeToIterate = true; + sal_Int32 nCount = xContext->getAccessibleChildCount(); + if (nCount < 0 || nCount > SAL_MAX_UINT16 /* slow enough for anyone */) + bSafeToIterate = false; + if (!bSafeToIterate) + return uno::Reference< accessibility::XAccessibleEditableText >(); + for (sal_Int32 i = 0; i < xContext->getAccessibleChildCount(); ++i) { uno::Reference< accessibility::XAccessible > xChild = xContext->getAccessibleChild(i); diff -Nru libreoffice-l10n-6.1.4/vcl/unx/gtk/gtksalmenu.cxx libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk/gtksalmenu.cxx --- libreoffice-l10n-6.1.4/vcl/unx/gtk/gtksalmenu.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk/gtksalmenu.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -226,8 +226,12 @@ if (mbNeedsUpdate) { mbNeedsUpdate = false; - if (mbMenuBar) + if (mbMenuBar && maUpdateMenuBarIdle.IsActive()) + { maUpdateMenuBarIdle.Stop(); + maUpdateMenuBarIdle.Invoke(); + return; + } } Menu* pVCLMenu = mpVCLMenu; @@ -493,6 +497,7 @@ mbReturnFocusToDocument( false ), mbAddedGrab( false ), mpMenuBarContainerWidget( nullptr ), + mpMenuAllowShrinkWidget( nullptr ), mpMenuBarWidget( nullptr ), mpCloseButton( nullptr ), mpVCLMenu( nullptr ), @@ -520,13 +525,17 @@ void GtkSalMenu::SetNeedsUpdate() { GtkSalMenu* pMenu = this; + // start that the menu and its parents are in need of an update + // on the next activation while (pMenu && !pMenu->mbNeedsUpdate) { pMenu->mbNeedsUpdate = true; - if (mbMenuBar) - maUpdateMenuBarIdle.Start(); pMenu = pMenu->mpParentSalMenu; } + // only if a menubar is directly updated do we force in a full + // structure update + if (mbMenuBar && !maUpdateMenuBarIdle.IsActive()) + maUpdateMenuBarIdle.Start(); } void GtkSalMenu::SetMenuModel(GMenuModel* pMenuModel) @@ -777,10 +786,21 @@ gtk_grid_insert_row(pGrid, 0); gtk_grid_attach(pGrid, mpMenuBarContainerWidget, 0, 0, 1, 1); + mpMenuAllowShrinkWidget = gtk_scrolled_window_new(nullptr, nullptr); + gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(mpMenuAllowShrinkWidget), GTK_SHADOW_NONE); + // tdf#116290 external policy on scrolledwindow will not show a scrollbar, + // but still allow scrolled window to not be sized to the child content. + // So the menubar can be shrunk past its nominal smallest width. + // Unlike a hack using GtkFixed/GtkLayout the correct placement of the menubar occurs under RTL + gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(mpMenuAllowShrinkWidget), GTK_POLICY_EXTERNAL, GTK_POLICY_NEVER); + gtk_grid_attach(GTK_GRID(mpMenuBarContainerWidget), mpMenuAllowShrinkWidget, 0, 0, 1, 1); + mpMenuBarWidget = gtk_menu_bar_new_from_model(mpMenuModel); gtk_widget_insert_action_group(mpMenuBarWidget, "win", mpActionGroup); gtk_widget_set_hexpand(GTK_WIDGET(mpMenuBarWidget), true); - gtk_grid_attach(GTK_GRID(mpMenuBarContainerWidget), mpMenuBarWidget, 0, 0, 1, 1); + gtk_widget_set_hexpand(mpMenuAllowShrinkWidget, true); + gtk_container_add(GTK_CONTAINER(mpMenuAllowShrinkWidget), mpMenuBarWidget); + g_signal_connect(G_OBJECT(mpMenuBarWidget), "deactivate", G_CALLBACK(MenuBarReturnFocus), this); g_signal_connect(G_OBJECT(mpMenuBarWidget), "key-press-event", G_CALLBACK(MenuBarSignalKey), this); @@ -788,6 +808,7 @@ ShowCloseButton( static_cast(mpVCLMenu.get())->HasCloseButton() ); #else + (void)mpMenuAllowShrinkWidget; (void)mpMenuBarContainerWidget; #endif } diff -Nru libreoffice-l10n-6.1.4/vcl/unx/gtk3/gtk3gtkframe.cxx libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx --- libreoffice-l10n-6.1.4/vcl/unx/gtk3/gtk3gtkframe.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -4213,6 +4213,13 @@ } } + bool bSafeToIterate = true; + sal_Int32 nCount = xContext->getAccessibleChildCount(); + if (nCount < 0 || nCount > SAL_MAX_UINT16 /* slow enough for anyone */) + bSafeToIterate = false; + if (!bSafeToIterate) + return uno::Reference< accessibility::XAccessibleEditableText >(); + for (sal_Int32 i = 0; i < xContext->getAccessibleChildCount(); ++i) { uno::Reference< accessibility::XAccessible > xChild = xContext->getAccessibleChild(i); diff -Nru libreoffice-l10n-6.1.4/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker.cxx libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker.cxx --- libreoffice-l10n-6.1.4/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/unx/gtk3_kde5/gtk3_kde5_filepicker.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -94,7 +94,11 @@ m_ipc.sendCommand(Commands::SetTitle, title); } -sal_Int16 SAL_CALL Gtk3KDE5FilePicker::execute() { return m_ipc.execute(); } +sal_Int16 SAL_CALL Gtk3KDE5FilePicker::execute() +{ + SolarMutexGuard g; + return m_ipc.execute(); +} void SAL_CALL Gtk3KDE5FilePicker::setMultiSelectionMode(sal_Bool multiSelect) { diff -Nru libreoffice-l10n-6.1.4/vcl/win/app/salinst.cxx libreoffice-l10n-6.1.5~rc2/vcl/win/app/salinst.cxx --- libreoffice-l10n-6.1.4/vcl/win/app/salinst.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/vcl/win/app/salinst.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -668,6 +668,11 @@ nRet = static_cast( pTimer->ImplHandle_WM_TIMER( wParam ) ); break; + case SAL_MSG_FORCE_REAL_TIMER: + assert(pTimer != nullptr); + pTimer->SetForceRealTimer(true); + break; + case SAL_MSG_DUMMY: break; diff -Nru libreoffice-l10n-6.1.4/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-l10n-6.1.5~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-l10n-6.1.4/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -500,6 +500,15 @@ void DomainMapper_Impl::SetSdt(bool bSdt) { m_bSdt = bSdt; + + if (m_bSdt) + { + m_xStdEntryStart = GetTopTextAppend()->getEnd(); + } + else + { + m_xStdEntryStart = uno::Reference< text::XTextRange >(); + } } @@ -3208,6 +3217,15 @@ uno::Reference< beans::XPropertySet > const& xFieldProperties) { OUString command = pContext->GetCommand().trim(); + + // Remove number formatting from \# to end of command + // TODO: handle custom number formatting + sal_Int32 delimPos = command.indexOf("\\#"); + if (delimPos != -1) + { + command = command.replaceAt(delimPos, command.getLength() - delimPos, "").trim(); + } + // command must contains = and at least another char if (command.getLength() < 2) return; @@ -3478,6 +3496,42 @@ return aNewLevel; } +/// Returns title of the TOC placed in paragraph(s) before TOC field inside STD-frame +OUString DomainMapper_Impl::extractTocTitle() +{ + if (!m_xStdEntryStart.is()) + return OUString(); + + uno::Reference< text::XTextAppend > xTextAppend = m_aTextAppendStack.top().xTextAppend; + if(!xTextAppend.is()) + return OUString(); + + // try-catch was added in the same way as inside appendTextSectionAfter() + try + { + uno::Reference< text::XParagraphCursor > xCursor( xTextAppend->createTextCursorByRange( m_xStdEntryStart ), uno::UNO_QUERY_THROW); + if (!xCursor.is()) + return OUString(); + + //the cursor has been moved to the end of the paragraph because of the appendTextPortion() calls + xCursor->gotoStartOfParagraph( false ); + if (m_aTextAppendStack.top().xInsertPosition.is()) + xCursor->gotoRange( m_aTextAppendStack.top().xInsertPosition, true ); + else + xCursor->gotoEnd( true ); + + //the paragraph after this new section is already inserted + xCursor->goLeft(1, true); + + return xCursor->getString(); + } + catch(const uno::Exception&) + { + } + + return OUString(); +} + void DomainMapper_Impl::handleToc (const FieldContextPtr& pContext, const OUString & sTOCServiceName) @@ -3597,16 +3651,57 @@ if( !bFromOutline && !bFromEntries && sTemplate.isEmpty() ) bFromOutline = true; + const OUString aTocTitle = extractTocTitle(); + + if (m_xTextFactory.is() && ! m_aTextAppendStack.empty()) + { + if (aTocTitle.isEmpty() || bTableOfFigures) + { + xTOC.set( + m_xTextFactory->createInstance + ( bTableOfFigures ? + "com.sun.star.text.IllustrationsIndex" + : sTOCServiceName), + uno::UNO_QUERY_THROW); + + OUString const sMarker("Y"); + //insert index + uno::Reference< text::XTextContent > xToInsert( xTOC, uno::UNO_QUERY ); + uno::Reference< text::XTextAppend > xTextAppend = m_aTextAppendStack.top().xTextAppend; + if (xTextAppend.is()) + { + uno::Reference< text::XTextCursor > xCrsr = xTextAppend->getText()->createTextCursor(); + uno::Reference< text::XText > xText = xTextAppend->getText(); + if(xCrsr.is() && xText.is()) + { + xCrsr->gotoEnd(false); + xText->insertString(xCrsr, sMarker, false); + xText->insertTextContent(uno::Reference< text::XTextRange >( xCrsr, uno::UNO_QUERY_THROW ), xToInsert, false); + xTOCMarkerCursor = xCrsr; + } + } + } + else + { + // create TOC section + css::uno::Reference xTextRangeEndOfTocHeader = GetTopTextAppend()->getEnd(); + xTOC = createSectionForRange(m_xStdEntryStart, xTextRangeEndOfTocHeader, sTOCServiceName, false); + + // init [xTOCMarkerCursor] + uno::Reference< text::XTextAppend > xTextAppend = m_aTextAppendStack.top().xTextAppend; + uno::Reference< text::XText > xText = xTextAppend->getText(); + uno::Reference< text::XTextCursor > xCrsr = xText->createTextCursor(); + xTOCMarkerCursor = xCrsr; + + // create header of the TOC with the TOC title inside + const OUString aObjectType("com.sun.star.text.IndexHeaderSection"); + uno::Reference xIfc = createSectionForRange(m_xStdEntryStart, xTextRangeEndOfTocHeader, aObjectType, true); + } + } - if (m_xTextFactory.is()) - xTOC.set( - m_xTextFactory->createInstance - ( bTableOfFigures ? - "com.sun.star.text.IllustrationsIndex" - : sTOCServiceName), - uno::UNO_QUERY_THROW); if (xTOC.is()) - xTOC->setPropertyValue(getPropertyName( PROP_TITLE ), uno::makeAny(OUString())); + xTOC->setPropertyValue(getPropertyName( PROP_TITLE ), uno::makeAny(aTocTitle)); + if (!aBookmarkName.isEmpty()) xTOC->setPropertyValue(getPropertyName(PROP_TOC_BOOKMARK), uno::makeAny(aBookmarkName)); if( !bTableOfFigures && xTOC.is() ) @@ -3696,27 +3791,45 @@ } pContext->SetTOC( xTOC ); m_bParaHadField = false; +} - if (m_aTextAppendStack.empty()) - return; +uno::Reference DomainMapper_Impl::createSectionForRange( + uno::Reference< css::text::XTextRange > xStart, + uno::Reference< css::text::XTextRange > xEnd, + const OUString & sObjectType, + bool stepLeft) +{ + if (!xStart.is()) + return uno::Reference(); + if (!xEnd.is()) + return uno::Reference(); - OUString const sMarker("Y"); - //insert index - uno::Reference< text::XTextContent > xToInsert( xTOC, uno::UNO_QUERY ); + uno::Reference< beans::XPropertySet > xRet; + if (m_aTextAppendStack.empty()) + return xRet; uno::Reference< text::XTextAppend > xTextAppend = m_aTextAppendStack.top().xTextAppend; - if (xTextAppend.is()) + if(xTextAppend.is()) { - uno::Reference< text::XTextCursor > xCrsr = xTextAppend->getText()->createTextCursor(); - - uno::Reference< text::XText > xText = xTextAppend->getText(); - if(xCrsr.is() && xText.is()) + try + { + uno::Reference< text::XParagraphCursor > xCursor( + xTextAppend->createTextCursorByRange( xStart ), uno::UNO_QUERY_THROW); + //the cursor has been moved to the end of the paragraph because of the appendTextPortion() calls + xCursor->gotoStartOfParagraph( false ); + xCursor->gotoRange( xEnd, true ); + //the paragraph after this new section is already inserted + if (stepLeft) + xCursor->goLeft(1, true); + uno::Reference< text::XTextContent > xSection( m_xTextFactory->createInstance(sObjectType), uno::UNO_QUERY_THROW ); + xSection->attach( uno::Reference< text::XTextRange >( xCursor, uno::UNO_QUERY_THROW) ); + xRet.set(xSection, uno::UNO_QUERY ); + } + catch(const uno::Exception&) { - xCrsr->gotoEnd(false); - xText->insertString(xCrsr, sMarker, false); - xText->insertTextContent(uno::Reference< text::XTextRange >( xCrsr, uno::UNO_QUERY_THROW ), xToInsert, false); - xTOCMarkerCursor = xCrsr; } } + + return xRet; } void DomainMapper_Impl::handleBibliography @@ -4803,10 +4916,13 @@ } else { - xTOCMarkerCursor->goLeft(1,true); - xTOCMarkerCursor->setString(OUString()); - xTOCMarkerCursor->goLeft(1,true); - xTOCMarkerCursor->setString(OUString()); + if (!m_xStdEntryStart.is()) + { + xTOCMarkerCursor->goLeft(1,true); + xTOCMarkerCursor->setString(OUString()); + xTOCMarkerCursor->goLeft(1,true); + xTOCMarkerCursor->setString(OUString()); + } } } if (m_bStartedTOC || m_bStartIndex || m_bStartBibliography) diff -Nru libreoffice-l10n-6.1.4/writerfilter/source/dmapper/DomainMapper_Impl.hxx libreoffice-l10n-6.1.5~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx --- libreoffice-l10n-6.1.4/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2019-01-30 17:56:45.000000000 +0000 @@ -541,6 +541,7 @@ SmartTagHandler m_aSmartTagHandler; css::uno::Reference m_xGlossaryEntryStart; + css::uno::Reference m_xStdEntryStart; public: css::uno::Reference m_xInsertTextRange; @@ -788,6 +789,10 @@ /// The end of field is reached (cFieldEnd appeared) - the command might still be open. void PopFieldContext(); + /// Returns title of the TOC placed in paragraph(s) before TOC field inside STD-frame + OUString extractTocTitle(); + css::uno::Reference createSectionForRange(css::uno::Reference< css::text::XTextRange > xStart, css::uno::Reference< css::text::XTextRange > xEnd, const OUString & sObjectType, bool stepLeft); + void SetBookmarkName( const OUString& rBookmarkName ); void StartOrEndBookmark( const OUString& rId ); diff -Nru libreoffice-l10n-6.1.4/xmloff/source/chart/SchXMLExport.cxx libreoffice-l10n-6.1.5~rc2/xmloff/source/chart/SchXMLExport.cxx --- libreoffice-l10n-6.1.4/xmloff/source/chart/SchXMLExport.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/xmloff/source/chart/SchXMLExport.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -1203,7 +1203,7 @@ } Reference xPivotTableDataProvider(xNewDoc->getDataProvider(), uno::UNO_QUERY); - if (xPivotTableDataProvider.is()) + if (xPivotTableDataProvider.is() && nCurrentODFVersion > SvtSaveOptions::ODFVER_012) { OUString sPivotTableName = xPivotTableDataProvider->getPivotTableName(); mrExport.AddAttribute(XML_NAMESPACE_LO_EXT, XML_DATA_PILOT_SOURCE, sPivotTableName); diff -Nru libreoffice-l10n-6.1.4/xmloff/source/draw/shapeexport.cxx libreoffice-l10n-6.1.5~rc2/xmloff/source/draw/shapeexport.cxx --- libreoffice-l10n-6.1.4/xmloff/source/draw/shapeexport.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/xmloff/source/draw/shapeexport.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -4599,6 +4599,11 @@ { case EAS_SubViewSize: { + // export draw:sub-view-size (do not export in ODF 1.2 or older) + if (rExport.getDefaultVersion() <= SvtSaveOptions::ODFVER_012) + { + continue; + } uno::Sequence< awt::Size > aSubViewSizes; rProp.Value >>= aSubViewSizes; diff -Nru libreoffice-l10n-6.1.4/xmlsecurity/source/xmlsec/xmlstreamio.cxx libreoffice-l10n-6.1.5~rc2/xmlsecurity/source/xmlsec/xmlstreamio.cxx --- libreoffice-l10n-6.1.4/xmlsecurity/source/xmlsec/xmlstreamio.cxx 2018-12-12 21:59:14.000000000 +0000 +++ libreoffice-l10n-6.1.5~rc2/xmlsecurity/source/xmlsec/xmlstreamio.cxx 2019-01-30 17:56:45.000000000 +0000 @@ -22,8 +22,10 @@ * Implementation of the I/O interfaces based on stream and URI binding */ #include +#include #include #include +#include #include #include @@ -157,6 +159,10 @@ //Notes: all none default callbacks will lose. xmlSecIOCleanupCallbacks() ; + // Make sure that errors are reported via SAL_WARN(). + setErrorRecorder(); + comphelper::ScopeGuard g([] { clearErrorRecorder(); }); + // Newer xmlsec wants the callback order in the opposite direction. if (xmlSecCheckVersionExt(1, 2, 26, xmlSecCheckVersionABICompatible)) {