You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

  1. define(function () {
  2. var out = {};
  3. out.errorBox_errorType_disconnected = 'Connection Lost';
  4. out.errorBox_errorExplanation_disconnected = [
  5. 'Lost connection to server, you may reconnect by reloading the page or review your work ',
  6. 'by clicking outside of this box.'
  7. ].join('');
  8. out.editingAlone = 'Editing alone';
  9. out.editingWithOneOtherPerson = 'Editing with one other person';
  10. out.editingWith = 'Editing with';
  11. out.otherPeople = 'other people';
  12. out.disconnected = 'Disconnected';
  13. out.synchronizing = 'Synchronizing';
  14. out.reconnecting = 'Reconnecting...';
  15. out.lag = 'Lag';
  16. out.initialState = [
  17. '<p>',
  18. 'This is <strong>CryptPad</strong>, the zero knowledge realtime collaborative editor.',
  19. '<br>',
  20. 'What you type here is encrypted so only people who have the link can access it.',
  21. '<br>',
  22. 'Even the server cannot see what you type.',
  23. '</p>',
  24. '<p>',
  25. '<small>',
  26. '<i>What you see here, what you hear here, when you leave here, let it stay here</i>',
  27. '</small>',
  28. '</p>',
  29. ].join('');
  30. return out;
  31. });