Skip to content
Snippets Groups Projects
Unverified Commit 6ce2354d authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[I18N] project: make label_tasks translatable

parent 94938168
Branches
Tags
No related merge requests found
......@@ -186,7 +186,8 @@ class Project(models.Model):
string='Members')
is_favorite = fields.Boolean(compute='_compute_is_favorite', inverse='_inverse_is_favorite', string='Show Project on dashboard',
help="Whether this project should be displayed on the dashboard or not")
label_tasks = fields.Char(string='Use Tasks as', default='Tasks', help="Gives label to tasks on project's kanban view.")
label_tasks = fields.Char(string='Use Tasks as', default='Tasks', translate=True,
help="Gives label to tasks on project's kanban view.")
tasks = fields.One2many('project.task', 'project_id', string="Task Activities")
resource_calendar_id = fields.Many2one(
'resource.calendar', string='Working Time',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment