[Libreoffice-commits] online.git: loleaflet/src
Tamás Zolnai (via logerrit)
logerrit at kemper.freedesktop.org
Thu Oct 17 15:25:45 UTC 2019
loleaflet/src/control/Control.Menubar.js | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 4eb945c388ca7b06830e5d43a617fa5577a633a7
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
AuthorDate: Thu Oct 17 17:23:23 2019 +0200
Commit: Tamás Zolnai <tamas.zolnai at collabora.com>
CommitDate: Thu Oct 17 17:25:21 2019 +0200
mobile-menu: Fix wrong downloadas menu items.
Change-Id: I5d80de9f56ff586cf04e41ca9d9dacae6e87b5e5
diff --git a/loleaflet/src/control/Control.Menubar.js b/loleaflet/src/control/Control.Menubar.js
index 1f7ab55f1..2dec96511 100644
--- a/loleaflet/src/control/Control.Menubar.js
+++ b/loleaflet/src/control/Control.Menubar.js
@@ -503,9 +503,9 @@ L.Control.Menubar = L.Control.extend({
]},
{name: !window.ThisIsAMobileApp ? _('Download as') : _('Export as'), id:'downloadas', type: 'menu', menu: [
{name: _('PDF Document (.pdf)'), id: 'downloadas-pdf', type: 'action'},
- {name: _('ODF spreadsheet (.ods)'), id: 'downloadas-ods', type: 'action'},
- {name: _('Excel 2003 Spreadsheet (.xls)'), id: 'downloadas-xls', type: 'action'},
- {name: _('Excel Spreadsheet (.xlsx)'), id: 'downloadas-xlsx', type: 'action'}
+ {name: _('ODF presentation (.odp)'), id: 'downloadas-odp', type: 'action'},
+ {name: _('PowerPoint 2003 Presentation (.ppt)'), id: 'downloadas-ppt', type: 'action'},
+ {name: _('PowerPoint Presentation (.pptx)'), id: 'downloadas-pptx', type: 'action'},
]},
{name: _UNO('.uno:EditMenu', 'presentation'), type: 'menu', menu: [
{uno: '.uno:Undo'},
@@ -549,9 +549,9 @@ L.Control.Menubar = L.Control.extend({
]},
{name: !window.ThisIsAMobileApp ? _('Download as') : _('Export as'), id:'downloadas', type: 'menu', menu: [
{name: _('PDF Document (.pdf)'), id: 'downloadas-pdf', type: 'action'},
- {name: _('ODF presentation (.odp)'), id: 'downloadas-odp', type: 'action'},
- {name: _('PowerPoint 2003 Presentation (.ppt)'), id: 'downloadas-ppt', type: 'action'},
- {name: _('PowerPoint Presentation (.pptx)'), id: 'downloadas-pptx', type: 'action'},
+ {name: _('ODF spreadsheet (.ods)'), id: 'downloadas-ods', type: 'action'},
+ {name: _('Excel 2003 Spreadsheet (.xls)'), id: 'downloadas-xls', type: 'action'},
+ {name: _('Excel Spreadsheet (.xlsx)'), id: 'downloadas-xlsx', type: 'action'}
]},
{name: _UNO('.uno:EditMenu', 'spreadsheet'), type: 'menu', menu: [
{uno: '.uno:Undo'},
More information about the Libreoffice-commits
mailing list