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

Andras Timar (via logerrit) logerrit at kemper.freedesktop.org
Tue Aug 4 13:55:16 UTC 2020


 loleaflet/src/control/Control.SheetsBar.js |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 2f2061b5543ae240b4f61535a9d1b29d8b8181b0
Author:     Andras Timar <andras.timar at collabora.com>
AuthorDate: Tue Aug 4 15:38:27 2020 +0200
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Tue Aug 4 15:51:48 2020 +0200

    Related tdf#95138 loleaflet: change tooltips for sheet navigation buttons
    
    Change-Id: I2bc363058cb67a3d32851b3d90b9db39d5f45a03
    Reviewed-on: https://gerrit.libreoffice.org/c/online/+/100098
    Tested-by: Jenkins
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/loleaflet/src/control/Control.SheetsBar.js b/loleaflet/src/control/Control.SheetsBar.js
index 1a9696a09..eeddb0538 100644
--- a/loleaflet/src/control/Control.SheetsBar.js
+++ b/loleaflet/src/control/Control.SheetsBar.js
@@ -25,10 +25,10 @@ L.Control.SheetsBar = L.Control.extend({
 			tooltip: 'bottom',
 			hidden: true,
 			items: [
-				{type: 'button',  hidden: !this.options.shownavigation, id: 'firstrecord',  img: 'firstrecord', hint: _('First sheet')},
-				{type: 'button',  hidden: !this.options.shownavigation, id: 'prevrecord',  img: 'prevrecord', hint: _('Previous sheet')},
-				{type: 'button',  hidden: !this.options.shownavigation, id: 'nextrecord',  img: 'nextrecord', hint: _('Next sheet')},
-				{type: 'button',  hidden: !this.options.shownavigation, id: 'lastrecord',  img: 'lastrecord', hint: _('Last sheet')},
+				{type: 'button',  hidden: !this.options.shownavigation, id: 'firstrecord',  img: 'firstrecord', hint: _('Scroll to the first sheet')},
+				{type: 'button',  hidden: !this.options.shownavigation, id: 'prevrecord',  img: 'prevrecord', hint: _('Scroll left')},
+				{type: 'button',  hidden: !this.options.shownavigation, id: 'nextrecord',  img: 'nextrecord', hint: _('Scroll right')},
+				{type: 'button',  hidden: !this.options.shownavigation, id: 'lastrecord',  img: 'lastrecord', hint: _('Scroll to the last sheet')},
 				{type: 'button',  id: 'insertsheet', img: 'insertsheet', hint: _('Insert sheet')}
 			],
 			onClick: function (e) {


More information about the Libreoffice-commits mailing list