diff options
author | Oliver Herrmann | 2017-10-30 11:25:44 +1100 |
---|---|---|
committer | GitHub | 2017-10-30 11:25:44 +1100 |
commit | 7d0ef1276cbbd8a7735c3b65de19491ba4b12089 (patch) | |
tree | 23cb7015b25c158b62ab7f7fadfb7538df3bde2b /public | |
parent | f1475535a24d7cf61620656378da6bec718dd788 (diff) |
Corrected some grammatical issues
Obviously caught up in a bad translation and didn't particularly make sense for native english speakers.
Diffstat (limited to '')
-rw-r--r-- | public/js/lib/editor/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/js/lib/editor/index.js b/public/js/lib/editor/index.js index 33c1e0d4..003b32b7 100644 --- a/public/js/lib/editor/index.js +++ b/public/js/lib/editor/index.js @@ -171,13 +171,13 @@ export default class Editor { this.statusLength.text('Length ' + docLength) if (docLength > (config.docmaxlength * 0.95)) { this.statusLength.css('color', 'red') - this.statusLength.attr('title', 'Your almost reach note max length limit.') + this.statusLength.attr('title', 'You have almost reached the limit for this document.') } else if (docLength > (config.docmaxlength * 0.8)) { this.statusLength.css('color', 'orange') - this.statusLength.attr('title', 'You nearly fill the note, consider to make more pieces.') + this.statusLength.attr('title', 'This document is nearly full, consider splitting it or creating a new one.') } else { this.statusLength.css('color', 'white') - this.statusLength.attr('title', 'You could write up to ' + config.docmaxlength + ' characters in this note.') + this.statusLength.attr('title', 'You can write up to ' + config.docmaxlength + ' characters in this document.') } } |