diff options
author | Christie Lenneville <clenneville@gitlab.com> | 2019-07-04 15:45:54 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2019-07-04 15:45:54 +0000 |
commit | c433082f89f65f944262040454e53ca460ec08be (patch) | |
tree | 7807419278d46e3224f9177a51c8c35810fd6235 /lib | |
parent | 54ced8d531cf14e8f15de3f0d446262129412786 (diff) | |
download | gitlab-ce-c433082f89f65f944262040454e53ca460ec08be.tar.gz |
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 'lib')
-rw-r--r-- | lib/gitlab/quick_actions/issuable_actions.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/quick_actions/issuable_actions.rb b/lib/gitlab/quick_actions/issuable_actions.rb index 572c55efcc2..f7f89d4e897 100644 --- a/lib/gitlab/quick_actions/issuable_actions.rb +++ b/lib/gitlab/quick_actions/issuable_actions.rb @@ -146,8 +146,8 @@ module Gitlab @updates[:todo_event] = 'add' end - desc _('Mark todo as done') - explanation _('Marks todo as done.') + desc _('Mark to do as done') + explanation _('Marks to do as done.') types Issuable condition do quick_action_target.persisted? && |