Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging
This commit is contained in:
@@ -82,23 +82,6 @@ module.exports = {
|
|||||||
*/
|
*/
|
||||||
websocketPath: '/cryptpad_websocket',
|
websocketPath: '/cryptpad_websocket',
|
||||||
|
|
||||||
/* it is assumed that your websocket will bind to the same port as http
|
|
||||||
* you can override this behaviour by supplying a number via websocketPort
|
|
||||||
*/
|
|
||||||
//websocketPort: 3000,
|
|
||||||
|
|
||||||
/* if you want to run a different version of CryptPad but using the same websocket
|
|
||||||
* server, you should use the other server port as websocketPort and disable
|
|
||||||
* the websockets on that server
|
|
||||||
*/
|
|
||||||
//useExternalWebsocket: false,
|
|
||||||
|
|
||||||
/* If CryptPad is proxied without using https, the server needs to know.
|
|
||||||
* Specify 'useSecureWebsockets: true' so that it can send
|
|
||||||
* Content Security Policy Headers that prevent http and https from mixing
|
|
||||||
*/
|
|
||||||
useSecureWebsockets: false,
|
|
||||||
|
|
||||||
/* CryptPad can log activity to stdout
|
/* CryptPad can log activity to stdout
|
||||||
* This may be useful for debugging
|
* This may be useful for debugging
|
||||||
*/
|
*/
|
||||||
@@ -238,14 +221,6 @@ module.exports = {
|
|||||||
*/
|
*/
|
||||||
suppressRPCErrors: false,
|
suppressRPCErrors: false,
|
||||||
|
|
||||||
|
|
||||||
/* WARNING: EXPERIMENTAL
|
|
||||||
*
|
|
||||||
* CryptPad features experimental support for encrypted file upload.
|
|
||||||
* Our encryption format is still liable to change. As such, we do not
|
|
||||||
* guarantee that files uploaded now will be supported in the future
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Setting this value to anything other than true will cause file upload
|
/* Setting this value to anything other than true will cause file upload
|
||||||
* attempts to be rejected outright.
|
* attempts to be rejected outright.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -46,7 +46,9 @@ define([
|
|||||||
h('div.container', [
|
h('div.container', [
|
||||||
h('div.row', [
|
h('div.row', [
|
||||||
footerCol(null, [
|
footerCol(null, [
|
||||||
setHTML(h('div.cp-bio-foot'), '<p>With CryptPad, you can make quick collaborative documents for taking notes and writing down ideas together.</p>'),
|
h('div.cp-bio-foot', [
|
||||||
|
h('p', Msg.main_footerText)
|
||||||
|
])
|
||||||
], ''),
|
], ''),
|
||||||
/* footerCol(null, [
|
/* footerCol(null, [
|
||||||
footLink('/about.html', 'about'),
|
footLink('/about.html', 'about'),
|
||||||
|
|||||||
@@ -265,8 +265,8 @@ define(function () {
|
|||||||
out.profile_fieldSaved = 'Nouvelle valeur enregistrée: {0}';
|
out.profile_fieldSaved = 'Nouvelle valeur enregistrée: {0}';
|
||||||
|
|
||||||
out.profile_inviteButton = "Inviter";
|
out.profile_inviteButton = "Inviter";
|
||||||
out.profile_inviteButtonTitle = 'Creer un lien pour inviter cet utilisateur à se connecter avec vous.';
|
out.profile_inviteButtonTitle = 'Créer un lien pour inviter cet utilisateur à se connecter avec vous.';
|
||||||
out.profile_inviteExplanation = "Cliquer sur <strong>OK</strong> créera un lien vers un session de messagerie sécurisée <em>uniquement accessible par {0}.</em><br><br>Le lien peut être copié et partagé de manièé de manière publique.";
|
out.profile_inviteExplanation = "Cliquer sur <strong>OK</strong> créera un lien vers une session de messagerie sécurisée <em>uniquement accessible par {0}.</em><br><br>Le lien peut être copié et partagé de manière publique.";
|
||||||
out.profile_viewMyProfile = "Voir mon profil";
|
out.profile_viewMyProfile = "Voir mon profil";
|
||||||
|
|
||||||
// contacts/userlist
|
// contacts/userlist
|
||||||
@@ -413,7 +413,7 @@ define(function () {
|
|||||||
"<li>Vous pouvez importer les pads récents de ce navigateur pour les avoir dans votre compte utilisateur.</li>",
|
"<li>Vous pouvez importer les pads récents de ce navigateur pour les avoir dans votre compte utilisateur.</li>",
|
||||||
"<li>Si vous utilisez un ordinateur partagé, vous devez vous déconnecter avant de partir, fermer l'onglet n'est pas suffisant.</li>",
|
"<li>Si vous utilisez un ordinateur partagé, vous devez vous déconnecter avant de partir, fermer l'onglet n'est pas suffisant.</li>",
|
||||||
"</ul>"
|
"</ul>"
|
||||||
];
|
].join('');
|
||||||
|
|
||||||
// Settings
|
// Settings
|
||||||
out.settings_cat_account = "Compte";
|
out.settings_cat_account = "Compte";
|
||||||
@@ -487,8 +487,8 @@ define(function () {
|
|||||||
out.todo_title = "CryptTodo";
|
out.todo_title = "CryptTodo";
|
||||||
out.todo_newTodoNamePlaceholder = "Décrivez votre tâche...";
|
out.todo_newTodoNamePlaceholder = "Décrivez votre tâche...";
|
||||||
out.todo_newTodoNameTitle = "Ajouter cette tâche à votre liste";
|
out.todo_newTodoNameTitle = "Ajouter cette tâche à votre liste";
|
||||||
out.todo_markAsCompleteTitle = "Marquer tâche comme terminée";
|
out.todo_markAsCompleteTitle = "Marquer cette tâche comme terminée";
|
||||||
out.todo_markAsIncompleteTitle = "Marquer tâche comme non incomplète";
|
out.todo_markAsIncompleteTitle = "Marquer cette tâche comme incomplète";
|
||||||
out.todo_removeTaskTitle = "Enlever cette tâche de votre liste";
|
out.todo_removeTaskTitle = "Enlever cette tâche de votre liste";
|
||||||
|
|
||||||
// pad
|
// pad
|
||||||
@@ -506,7 +506,7 @@ define(function () {
|
|||||||
//contact.html
|
//contact.html
|
||||||
out.main_about_p2 = 'Si vous avez des questions ou commentaires, vous pouvez <a href="https://twitter.com/cryptpad"><i class="fa fa-twitter"></i>nous tweeter</a>, ouvrir une issue sur <a href="https://github.com/xwiki-labs/cryptpad/issues/" title="our issue tracker"><i class="fa fa-github"></i>GitHub</a>, venir dire bonjour sur <a href="https://riot.im/app/#/room/#cryptpad:matrix.org" title="Matrix">notre <i class="fa fa-comment"></i>salle Matrix</a> ou IRC (#cryptpad sur irc.freenode.net), ou bien encore <a href="mailto:research@xwiki.com"><i class="fa fa-envelope"></i>nous envoyer un email</a>.';
|
out.main_about_p2 = 'Si vous avez des questions ou commentaires, vous pouvez <a href="https://twitter.com/cryptpad"><i class="fa fa-twitter"></i>nous tweeter</a>, ouvrir une issue sur <a href="https://github.com/xwiki-labs/cryptpad/issues/" title="our issue tracker"><i class="fa fa-github"></i>GitHub</a>, venir dire bonjour sur <a href="https://riot.im/app/#/room/#cryptpad:matrix.org" title="Matrix">notre <i class="fa fa-comment"></i>salle Matrix</a> ou IRC (#cryptpad sur irc.freenode.net), ou bien encore <a href="mailto:research@xwiki.com"><i class="fa fa-envelope"></i>nous envoyer un email</a>.';
|
||||||
|
|
||||||
out.main_info = "<h2>Collaborez avec confiance</h2><br>Développez vos idées en groupe avec des document partagés; la technologie <strong>Zero Knowledge</strong> sécurise vos données.";
|
out.main_info = "<h2>Collaborez avec confiance</h2><br>Développez vos idées en groupe avec des documents partagés; la technologie <strong>Zero Knowledge</strong> sécurise vos données.";
|
||||||
out.main_catch_phrase = "Le Cloud Zero Knowledge";
|
out.main_catch_phrase = "Le Cloud Zero Knowledge";
|
||||||
|
|
||||||
out.main_howitworks = 'Comment ça fonctionne';
|
out.main_howitworks = 'Comment ça fonctionne';
|
||||||
@@ -589,7 +589,7 @@ define(function () {
|
|||||||
out.header_support = '<a href="http://ng.open-paas.org/" title="OpenPaaS::ng" target="_blank" rel="noopener noreferrer"> <img src="/customize/openpaasng.png" alt="OpenPaaS-ng" class="bottom-bar-openpaas" /></a>';
|
out.header_support = '<a href="http://ng.open-paas.org/" title="OpenPaaS::ng" target="_blank" rel="noopener noreferrer"> <img src="/customize/openpaasng.png" alt="OpenPaaS-ng" class="bottom-bar-openpaas" /></a>';
|
||||||
out.updated_0_header_logoTitle = 'Retourner vers votre CryptDrive';
|
out.updated_0_header_logoTitle = 'Retourner vers votre CryptDrive';
|
||||||
out.header_logoTitle = out.updated_0_header_logoTitle;
|
out.header_logoTitle = out.updated_0_header_logoTitle;
|
||||||
out.header_homeTitle = "Aller sur la page d'acceuil";
|
out.header_homeTitle = "Aller sur la page d'accueil";
|
||||||
|
|
||||||
// Initial states
|
// Initial states
|
||||||
|
|
||||||
|
|||||||
@@ -545,6 +545,7 @@ define(function () {
|
|||||||
out.main_whiteboardPad = 'Whiteboard';
|
out.main_whiteboardPad = 'Whiteboard';
|
||||||
out.main_localPads = 'Local Pads';
|
out.main_localPads = 'Local Pads';
|
||||||
out.main_yourCryptDrive = 'Your CryptDrive';
|
out.main_yourCryptDrive = 'Your CryptDrive';
|
||||||
|
out.main_footerText = "With CryptPad, you can make quick collaborative documents for taking notes and writing down ideas together.";
|
||||||
|
|
||||||
out.footer_applications = "Applications";
|
out.footer_applications = "Applications";
|
||||||
out.footer_contact = "Contact";
|
out.footer_contact = "Contact";
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "cryptpad",
|
"name": "cryptpad",
|
||||||
"description": "realtime collaborative visual editor with zero knowlege server",
|
"description": "realtime collaborative visual editor with zero knowlege server",
|
||||||
"version": "1.12.0",
|
"version": "1.13.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chainpad-server": "^1.0.1",
|
"chainpad-server": "^1.0.1",
|
||||||
"express": "~4.10.1",
|
"express": "~4.10.1",
|
||||||
|
|||||||
Reference in New Issue
Block a user