loleaflet/src/control/Control.DocumentRepair.js | 2 +- loolwsd/ChildSession.cpp | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-)
New commits: commit 1fbceb9f683957a42984d408d859da306a634c32 Author: Pranav Kant <[email protected]> Date: Mon Sep 19 14:45:15 2016 +0530 loolwsd: Forward REDLINE_TABLE_ENTRY_MODIFIED messages Change-Id: Ib666c1ebf9165c795fcefb56a2ea3919d60c8ac4 diff --git a/loolwsd/ChildSession.cpp b/loolwsd/ChildSession.cpp index a5a7778..17cf397 100644 --- a/loolwsd/ChildSession.cpp +++ b/loolwsd/ChildSession.cpp @@ -1070,6 +1070,9 @@ void ChildSession::loKitCallback(const int nType, const std::string& rPayload) case LOK_CALLBACK_REDLINE_TABLE_SIZE_CHANGED: sendTextFrame("redlinetablechanged: " + rPayload); break; + case LOK_CALLBACK_REDLINE_TABLE_ENTRY_MODIFIED: + sendTextFrame("redlinetablemodified: " + rPayload); + break; default: Log::error("Unknown callback event (" + std::to_string(nType) + "): " + rPayload); } commit f5a9e8e33d7c921575b0354070bbcb4cea02a3fc Author: Pranav Kant <[email protected]> Date: Sun Sep 18 22:22:38 2016 +0530 loleaflet: l10n: Repair Document Change-Id: I3b320547a25094fbfa2d1538b4fa1e91b2cf41ad diff --git a/loleaflet/src/control/Control.DocumentRepair.js b/loleaflet/src/control/Control.DocumentRepair.js index 36fbc53..365d21d 100644 --- a/loleaflet/src/control/Control.DocumentRepair.js +++ b/loleaflet/src/control/Control.DocumentRepair.js @@ -29,7 +29,7 @@ L.Control.DocumentRepair = L.Control.extend({ var wrapper = L.DomUtil.create('div', 'leaflet-popup-content-wrapper', this._container); var content = L.DomUtil.create('div', 'leaflet-popup-content', wrapper); var labelTitle = document.createElement('span'); - labelTitle.innerHTML = '<b>Repair Document</b>'; + labelTitle.innerHTML = '<b>' + _('Repair Document') + '</b>'; content.appendChild(labelTitle); content.appendChild(document.createElement('br')); content.appendChild(document.createElement('br')); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
