diff options
author | Jan Holesovsky <kendy@collabora.com> | 2017-12-08 17:39:49 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-12-08 20:49:03 +0100 |
commit | be100fe06abbeabed05b0c8a02c4f6067fcfc774 (patch) | |
tree | e2a7457099676549f5454a54c1ed1dbfb014a727 | |
parent | 415bb2a9bf8d22c94b8bfd86daadeb390dbc89b6 (diff) |
l10n: Fix the Table menu in Impress.
Change-Id: I2cb8b98ecc1a18174b26dfaa9c96ad3829ff5989
Reviewed-on: https://gerrit.libreoffice.org/46099
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | loleaflet/src/control/Control.Menubar.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loleaflet/src/control/Control.Menubar.js b/loleaflet/src/control/Control.Menubar.js index 858f74749..c3584c21d 100644 --- a/loleaflet/src/control/Control.Menubar.js +++ b/loleaflet/src/control/Control.Menubar.js @@ -244,14 +244,14 @@ L.Control.Menubar = L.Control.extend({ {name: _UNO('.uno:FormatMenu', 'presentation'), type: 'menu', menu: [ {uno: '.uno:EditStyle'} ]}, - {name: _UNO('.uno:TableMenu', 'presentation'), type: 'menu', menu: [ - {name: _UNO('.uno:TableInsertMenu', 'presentation'), type: 'menu', menu: [ + {name: _UNO('.uno:TableMenu', 'text'/*HACK should be 'presentation', but not in xcu*/), type: 'menu', menu: [ + {name: _UNO('.uno:TableInsertMenu', 'text'/*HACK should be 'presentation', but not in xcu*/), type: 'menu', menu: [ {uno: '.uno:InsertRowsBefore'}, {uno: '.uno:InsertRowsAfter'}, {type: 'separator'}, {uno: '.uno:InsertColumnsBefore'}, {uno: '.uno:InsertColumnsAfter'}]}, - {name: _UNO('.uno:TableDeleteMenu', 'presentation'), type: 'menu', menu: [ + {name: _UNO('.uno:TableDeleteMenu', 'text'/*HACK should be 'presentation', but not in xcu*/), type: 'menu', menu: [ {uno: '.uno:DeleteRows'}, {uno: '.uno:DeleteColumns'}]}, {uno: '.uno:MergeCells'}] |