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

utils.js « todo_toggle « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59e72a2ffe34c23e0c80e751307936aff801b2b6 (plain)
1
2
3
4
5
import { __ } from '~/locale';

export const todoLabel = (hasTodo) => {
  return hasTodo ? __('Mark as done') : __('Add a to do');
};