TodoApp - Style and translations
This commit is contained in:
@@ -4,7 +4,7 @@ define(function() {
|
||||
/* Select the buttons displayed on the main page to create new collaborative sessions
|
||||
* Existing types : pad, code, poll, slide
|
||||
*/
|
||||
config.availablePadTypes = ['drive', 'pad', 'code', 'slide', 'poll', 'whiteboard', 'file', 'contacts'];
|
||||
config.availablePadTypes = ['drive', 'pad', 'code', 'slide', 'poll', 'whiteboard', 'file', 'todo', 'contacts'];
|
||||
config.registeredOnlyTypes = ['file', 'contacts'];
|
||||
|
||||
/* Cryptpad apps use a common API to display notifications to users
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
.settingsColor { color: @toolbar-settings-bg; }
|
||||
.profileColor { color: @toolbar-settings-bg; }
|
||||
.defaultColor { color: @toolbar-default-bg; }
|
||||
.todoColor { color:@toolbar-todo-bg; }
|
||||
|
||||
.toolbar-container {
|
||||
display: flex;
|
||||
@@ -284,6 +285,11 @@ body {
|
||||
@color: @toolbar-profile-color;
|
||||
.addToolbarColors(@color, @bgcolor);
|
||||
}
|
||||
&.app-todo {
|
||||
@bgcolor: @toolbar-todo-bg;
|
||||
@color: @toolbar-todo-color;
|
||||
.addToolbarColors(@color, @bgcolor);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -107,7 +107,8 @@
|
||||
@toolbar-settings-color: #fff;
|
||||
@toolbar-profile-bg: #0087ff;
|
||||
@toolbar-profile-color: #fff;
|
||||
|
||||
@toolbar-todo-bg: #7bccd1;
|
||||
@toolbar-todo-color: #000;
|
||||
|
||||
@topbar-back: #fff;
|
||||
@topbar-color: #000;
|
||||
|
||||
@@ -13,6 +13,7 @@ define(function () {
|
||||
out.type.whiteboard = "Tableau Blanc";
|
||||
out.type.file = "Fichier";
|
||||
out.type.media = "Média";
|
||||
out.type.todo = "Todo";
|
||||
out.type.contacts = "Contacts";
|
||||
|
||||
out.button_newpad = 'Nouveau document texte';
|
||||
@@ -469,6 +470,8 @@ define(function () {
|
||||
out.download_button = "Déchiffrer et télécharger";
|
||||
out.download_mt_button = "Télécharger";
|
||||
|
||||
out.todo_title = "CryptTodo";
|
||||
|
||||
// general warnings
|
||||
out.warn_notPinned = "Ce pad n'est stocké dans aucun CryptDrive. Il va expirer après 3 mois d'inactivité. <a href='/about.html#pinning'>En savoir plus...</a>";
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ define(function () {
|
||||
out.type.whiteboard = 'Whiteboard';
|
||||
out.type.file = 'File';
|
||||
out.type.media = 'Media';
|
||||
out.type.todo = "Todo";
|
||||
out.type.contacts = 'Contacts';
|
||||
|
||||
out.button_newpad = 'New Rich Text pad';
|
||||
@@ -476,6 +477,8 @@ define(function () {
|
||||
out.download_button = "Decrypt & Download";
|
||||
out.download_mt_button = "Download";
|
||||
|
||||
out.todo_title = "CryptTodo";
|
||||
|
||||
// general warnings
|
||||
out.warn_notPinned = "This pad is not in anyone's CryptDrive. It will expire after 3 months. <a href='/about.html#pinning'>Learn more...</a>";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user