diff options
author | Nicu Tofan <nicu.tofan@gmail.com> | 2018-06-24 10:59:48 +0300 |
---|---|---|
committer | Nicu Tofan <nicu.tofan@gmail.com> | 2018-06-26 14:32:50 +0300 |
commit | 50f170b75d9d149bd333091fb5f7ba150c245b15 (patch) | |
tree | fa18dea49668a52ac32f6c9d40061128fc7889ea | |
parent | 989b026b33508feaa6ba806a624b95a93298327c (diff) | |
download | wekan-50f170b75d9d149bd333091fb5f7ba150c245b15.tar.gz wekan-50f170b75d9d149bd333091fb5f7ba150c245b15.tar.bz2 wekan-50f170b75d9d149bd333091fb5f7ba150c245b15.zip |
A better name for incoming subtasks
-rw-r--r-- | i18n/en.i18n.json | 3 | ||||
-rw-r--r-- | models/boards.js | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 3a87179a..5e1a99e8 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -481,5 +481,6 @@ "boardDeletePopup-title": "Delete Board?", "delete-board": "Delete Board", "default-subtasks-board": "Subtasks for __board__ board", - "default": "Default" + "default": "Default", + "queue": "Queue" } diff --git a/models/boards.js b/models/boards.js index 6836a320..6f0f7293 100644 --- a/models/boards.js +++ b/models/boards.js @@ -324,7 +324,7 @@ Boards.helpers({ getDefaultSubtasksListId() { if (this.subtasksDefaultListId === null) { this.subtasksDefaultListId = Lists.insert({ - title: TAPi18n.__('new'), + title: TAPi18n.__('queue'), boardId: this._id, }); Boards.update(this._id, {$set: { |