From 8d040873a1fa8cbc6b6a104972a0db8dc628c81f Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Wed, 9 Aug 2017 13:58:59 -0700 Subject: [PATCH] fix(columns): task heading grammer (#8932) --- website/client/components/tasks/column.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/components/tasks/column.vue b/website/client/components/tasks/column.vue index 4c05c495bc..9347226c6a 100644 --- a/website/client/components/tasks/column.vue +++ b/website/client/components/tasks/column.vue @@ -24,7 +24,7 @@ ref="columnBackground", ) .svg-icon(v-html="icons[type]", :class="`icon-${type}`", v-once) - h3(v-once) {{$t('theseAreYourTasks', {taskType: `${type}s`})}} + h3(v-once) {{$t('theseAreYourTasks', {taskType: $t(types[type].label)})}} .small-text {{$t(`${type}sDesc`)}}