Chromium Code Reviews| Index: chrome/app/PRESUBMIT.py |
| diff --git a/chrome/app/PRESUBMIT.py b/chrome/app/PRESUBMIT.py |
| index 519eac77cb195366afca403dcc2e2ad200b7361b..d52ddeb3f39caf4474b2a72e7defb0a9a8d5d633 100644 |
| --- a/chrome/app/PRESUBMIT.py |
| +++ b/chrome/app/PRESUBMIT.py |
| @@ -34,10 +34,36 @@ def _CheckNoProductNameInGeneratedResources(input_api, output_api): |
| items=problems)] |
| return [] |
| +def _CheckFlagsMessageNotTranslated(input_api, output_api): |
| + """Check that no about:flags are marked as not requiring translation. |
|
agrieve
2017/03/20 14:09:44
nit: Check that *all* about:flags ...
vabr (Chromium)
2017/03/20 19:03:27
Thanks!
I also inserted the work "messages" after
|
| + |
| + This assumes that such messages are only added to generated_resources.grd and |
| + that all such messages have names starting with IDS_FLAGS_. The expected mark |
| + for not requiring translation is 'translateable="false"'. |
| + """ |
| + |
| + problems = [] |
| + filename_filter = lambda x: x.LocalPath().endswith("generated_resources.grd") |
| + |
| + for f, line_num, line in input_api.RightHandSideLines(filename_filter): |
| + if "name=\"IDS_FLAGS_" in line and not "translateable=\"false\"" in line: |
| + problems.append("Missing translateable=\"false\" in %s:%d" |
| + % (f.LocalPath(), line_num)) |
| + problems.append(line) |
| + |
| + if problems: |
| + return [output_api.PresubmitError( |
| + "If you define a flag name, description or value, mark it as not " |
| + "requiring translation by adding the 'translateable' attribute with " |
| + "value \"false\". See https://crbug.com/587272 for more context.", |
| + items=problems)] |
| + return [] |
| + |
| def _CommonChecks(input_api, output_api): |
| """Checks common to both upload and commit.""" |
| results = [] |
| results.extend(_CheckNoProductNameInGeneratedResources(input_api, output_api)) |
| + results.extend(_CheckFlagsMessageNotTranslated(input_api, output_api)) |
| return results |
| def CheckChangeOnUpload(input_api, output_api): |