You cannot 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
JavaScript
35 lines
1.1 KiB
JavaScript
define(function () {
|
|
var out = {};
|
|
|
|
out.errorBox_errorType_disconnected = 'Connection Lost';
|
|
out.errorBox_errorExplanation_disconnected = [
|
|
'Lost connection to server, you may reconnect by reloading the page or review your work ',
|
|
'by clicking outside of this box.'
|
|
].join('');
|
|
|
|
out.editingAlone = 'Editing alone';
|
|
out.editingWithOneOtherPerson = 'Editing with one other person';
|
|
out.editingWith = 'Editing with';
|
|
out.otherPeople = 'other people';
|
|
out.disconnected = 'Disconnected';
|
|
out.synchronizing = 'Synchronizing';
|
|
out.lag = 'Lag';
|
|
|
|
out.initialState = [
|
|
'<p>',
|
|
'This is <strong>CryptPad</strong>, the zero knowledge realtime collaborative editor.',
|
|
'<br>',
|
|
'What you type here is encrypted so only people who have the link can access it.',
|
|
'<br>',
|
|
'Even the server cannot see what you type.',
|
|
'</p>',
|
|
'<p>',
|
|
'<small>',
|
|
'<i>What you see here, what you hear here, when you leave here, let it stay here</i>',
|
|
'</small>',
|
|
'</p>',
|
|
].join('');
|
|
|
|
return out;
|
|
});
|