[Libreoffice-commits] online.git: loleaflet/src

Andras Timar andras.timar at collabora.com
Wed Mar 30 19:39:09 UTC 2016


 loleaflet/src/admin/AdminSocketOverview.js |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 905ce5744bc64a10bd98bcd2662004f4ce74a225
Author: Andras Timar <andras.timar at collabora.com>
Date:   Wed Mar 30 21:38:38 2016 +0200

    loleaflet: s/kill child/terminate session/

diff --git a/loleaflet/src/admin/AdminSocketOverview.js b/loleaflet/src/admin/AdminSocketOverview.js
index 28b83fb..afced98 100644
--- a/loleaflet/src/admin/AdminSocketOverview.js
+++ b/loleaflet/src/admin/AdminSocketOverview.js
@@ -27,7 +27,7 @@ var AdminSocketOverview = AdminSocketBase.extend({
 			return socketOverview._getBasicStats();
 		}, 5000);
 
-		// Allow table rows to have a context menu for killing children
+		// Allow table rows to have a context menu for terminating sessions
 		$('body').on('contextmenu', 'table tr', function(ev) {
 			$('#rowContextMenu').css({
 				display: 'block',
@@ -44,7 +44,7 @@ var AdminSocketOverview = AdminSocketBase.extend({
 
 		$('#rowContextMenu').on('click', 'a', function() {
 			vex.dialog.confirm({
-				message: 'Are you sure you want to kill this child ?',
+				message: 'Are you sure you want to terminate this session?',
 				callback: function(value) {
 					if (value) {
 						var killPid = ($('#rowContextMenu').data('rowToKill')).substring('doc'.length);


More information about the Libreoffice-commits mailing list