Commit 19be07c072286840f3873d40ac6c5d9ec5608e10
1 parent
5d64374a
Exists in
master
and in
8 other branches
Changed error msg in model validation about try approve/reprove without categories
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/proposals_discussion_plugin/proposal_task.rb
... | ... | @@ -293,7 +293,7 @@ class ProposalsDiscussionPlugin::ProposalTask < Task |
293 | 293 | |
294 | 294 | def require_category |
295 | 295 | if categories.count == 0 && flagged? |
296 | - errors.add :categories, _('Please, select at least one') | |
296 | + errors.add :categories, _('Select at least one category') | |
297 | 297 | end |
298 | 298 | end |
299 | 299 | end | ... | ... |