[Libreoffice-commits] online.git: Branch 'distro/collabora/co-4-2' - loleaflet/src
Andras Timar (via logerrit)
logerrit at kemper.freedesktop.org
Tue Aug 4 21:29:03 UTC 2020
loleaflet/src/control/Control.SheetsBar.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 0b37aa3f7f2f5b86b37af28ea10bbd962d1df8fb
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 23:28:43 2020 +0200
Related tdf#95138 loleaflet: change tooltips for sheet navigation buttons
Change-Id: I2bc363058cb67a3d32851b3d90b9db39d5f45a03
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/100060
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
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