Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristie Lenneville <clenneville@gitlab.com>2019-07-04 18:45:54 +0300
committerPhil Hughes <me@iamphill.com>2019-07-04 18:45:54 +0300
commitc433082f89f65f944262040454e53ca460ec08be (patch)
tree7807419278d46e3224f9177a51c8c35810fd6235 /app/assets/javascripts/pages/dashboard
parent54ced8d531cf14e8f15de3f0d446262129412786 (diff)
Change 'Todo' to 'To Do'
Currently, we label items to be done as "Todo." This is grammatically incorrect and (therefore) confusing—especially to our Spanish-speaking users for whom "todo" has a specific and unrelated meaning. We should use "To Do" and always use it as singular (not "To Dos"). Updates to wording in a few places per MR (ee) discussion Updating locale/gitlab.pot Updates to wording in a few places per MR (ee) discussion Updating locale/gitlab.pot
Diffstat (limited to 'app/assets/javascripts/pages/dashboard')
-rw-r--r--app/assets/javascripts/pages/dashboard/todos/index/todos.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/pages/dashboard/todos/index/todos.js b/app/assets/javascripts/pages/dashboard/todos/index/todos.js
index 1b56b97f751..d51d411f3c6 100644
--- a/app/assets/javascripts/pages/dashboard/todos/index/todos.js
+++ b/app/assets/javascripts/pages/dashboard/todos/index/todos.js
@@ -82,7 +82,7 @@ export default class Todos {
})
.catch(() => {
this.updateRowState(target, true);
- return flash(__('Error updating todo status.'));
+ return flash(__('Error updating status of to-do item.'));
});
}
@@ -124,7 +124,7 @@ export default class Todos {
this.updateAllState(target, data);
this.updateBadges(data);
})
- .catch(() => flash(__('Error updating status for all todos.')));
+ .catch(() => flash(__('Error updating status for all to-do items.')));
}
updateAllState(target, data) {