Commit b69f57fe authored by Philipp Wolfer's avatar Philipp Wolfer

AngularJS: Renamed flag so it doesn't get truncated.

parent 91bcf961
...@@ -41,11 +41,11 @@ class AngularJSInterpolationCheck(TargetCheck): ...@@ -41,11 +41,11 @@ class AngularJSInterpolationCheck(TargetCheck):
''' '''
Check for AngularJS interpolation string Check for AngularJS interpolation string
''' '''
check_id = 'angularjs_interpolate' check_id = 'angularjs_format'
name = _('AngularJS interpolation string') name = _('AngularJS interpolation string')
description = _('AngularJS interpolation strings do not match source') description = _('AngularJS interpolation strings do not match source')
severity = 'danger' severity = 'danger'
flag = 'angularjs-interpolate' flag = 'angularjs-format'
def check_single(self, source, target, unit, cache_slot): def check_single(self, source, target, unit, cache_slot):
# Verify unit is properly flagged # Verify unit is properly flagged
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment