summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xi18n/en.i18n.json3
-rw-r--r--models/users.js7
2 files changed, 6 insertions, 4 deletions
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index b171bdf9..2047d8e1 100755
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -294,5 +294,8 @@
"watch": "Watch",
"watching": "Watching",
"watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
"what-to-do": "What do you want to do?"
}
diff --git a/models/users.js b/models/users.js
index 629caa4a..a3bdb6f8 100644
--- a/models/users.js
+++ b/models/users.js
@@ -394,7 +394,6 @@ if (Meteor.isServer) {
return fakeUserId.get() || getUserId();
};
- // XXX i18n
Users.after.insert((userId, doc) => {
const fakeUser = {
extendAutoValueContext: {
@@ -405,12 +404,12 @@ if (Meteor.isServer) {
fakeUserId.withValue(doc._id, () => {
// Insert the Welcome Board
Boards.insert({
- title: 'Welcome Board',
+ title: TAPi18n.__('welcome-board'),
permission: 'private',
}, fakeUser, (err, boardId) => {
- ['Basics', 'Advanced'].forEach((title) => {
- Lists.insert({ title, boardId }, fakeUser);
+ ['welcome-list1', 'welcome-list2'].forEach((title) => {
+ Lists.insert({ title: TAPi18n.__(title), boardId }, fakeUser);
});
});