summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--i18n/en.i18n.json3
-rw-r--r--models/boards.js2
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: {