mirror of https://github.com/xwiki-labs/cryptpad
Add the spreadsheet app to the home page
This commit is contained in:
parent
6e153dc858
commit
e78fc2abcb
|
@ -29,6 +29,7 @@ define([
|
||||||
[ 'pad', Msg.main_richTextPad],
|
[ 'pad', Msg.main_richTextPad],
|
||||||
[ 'code', Msg.main_codePad],
|
[ 'code', Msg.main_codePad],
|
||||||
[ 'slide', Msg.main_slidePad],
|
[ 'slide', Msg.main_slidePad],
|
||||||
|
[ 'sheet', Msg.main_sheetPad],
|
||||||
[ 'poll', Msg.main_pollPad],
|
[ 'poll', Msg.main_pollPad],
|
||||||
[ 'kanban', Msg.main_kanbanPad],
|
[ 'kanban', Msg.main_kanbanPad],
|
||||||
[ 'whiteboard', Msg.main_whiteboardPad],
|
[ 'whiteboard', Msg.main_whiteboardPad],
|
||||||
|
|
|
@ -167,6 +167,7 @@
|
||||||
.cp-callout-kanban .cptools { background-color: @colortheme_kanban-bg; }
|
.cp-callout-kanban .cptools { background-color: @colortheme_kanban-bg; }
|
||||||
.cp-callout-whiteboard .cptools { background-color: @colortheme_whiteboard-bg; }
|
.cp-callout-whiteboard .cptools { background-color: @colortheme_whiteboard-bg; }
|
||||||
.cp-callout-drive .fa { background-color: @colortheme_drive-bg; }
|
.cp-callout-drive .fa { background-color: @colortheme_drive-bg; }
|
||||||
|
.cp-callout-sheet .fa { background-color: @colortheme_oocell-bg; }
|
||||||
.cp-hidden { display: none !important; }
|
.cp-hidden { display: none !important; }
|
||||||
.cp-callout-more {
|
.cp-callout-more {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -799,10 +799,10 @@ define([
|
||||||
|
|
||||||
var $rightside = toolbar.$rightside;
|
var $rightside = toolbar.$rightside;
|
||||||
|
|
||||||
var $save = common.createButton('save', true, {}, function () {
|
/*var $save = common.createButton('save', true, {}, function () {
|
||||||
saveToServer();
|
saveToServer();
|
||||||
});
|
});
|
||||||
$save.appendTo($rightside);
|
$save.appendTo($rightside);*/
|
||||||
|
|
||||||
if (common.isLoggedIn()) {
|
if (common.isLoggedIn()) {
|
||||||
common.createButton('hashtag', true).appendTo($rightside);
|
common.createButton('hashtag', true).appendTo($rightside);
|
||||||
|
|
|
@ -780,6 +780,7 @@ define(function () {
|
||||||
|
|
||||||
out.main_richTextPad = 'Éditeur de texte';
|
out.main_richTextPad = 'Éditeur de texte';
|
||||||
out.main_codePad = 'Éditeur de code';
|
out.main_codePad = 'Éditeur de code';
|
||||||
|
out.main_sheetPad = 'Tableur (Beta)';
|
||||||
out.main_slidePad = 'Éditeur de Présentations';
|
out.main_slidePad = 'Éditeur de Présentations';
|
||||||
out.main_pollPad = 'Sondage ou Planning';
|
out.main_pollPad = 'Sondage ou Planning';
|
||||||
out.main_whiteboardPad = 'Tableau blanc';
|
out.main_whiteboardPad = 'Tableau blanc';
|
||||||
|
|
|
@ -787,6 +787,7 @@ define(function () {
|
||||||
|
|
||||||
out.main_richTextPad = 'Rich Text Pad';
|
out.main_richTextPad = 'Rich Text Pad';
|
||||||
out.main_codePad = 'Markdown/Code Pad';
|
out.main_codePad = 'Markdown/Code Pad';
|
||||||
|
out.main_sheetPad = 'Spreadsheets (Beta)';
|
||||||
out.main_slidePad = 'Markdown Presentation';
|
out.main_slidePad = 'Markdown Presentation';
|
||||||
out.main_pollPad = 'Poll or Schedule';
|
out.main_pollPad = 'Poll or Schedule';
|
||||||
out.main_whiteboardPad = 'Whiteboard';
|
out.main_whiteboardPad = 'Whiteboard';
|
||||||
|
|
Loading…
Reference in New Issue