Make the 'pad' initial state translatable

This commit is contained in:
yflory
2017-02-21 18:43:26 +01:00
parent c0989f64fa
commit 2e378564d0
2 changed files with 17 additions and 22 deletions

View File

@@ -340,6 +340,21 @@ define(function () {
// Initial states
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('');
out.codeInitialState = [
'/*\n',
' This is CryptPad, the zero knowledge realtime collaborative editor.\n',