We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2fe99 commit 2080548Copy full SHA for 2080548
tasks.py
@@ -24,9 +24,9 @@ def _check(file_path):
24
contents = f.read()
25
if contents != "":
26
if p.search(contents) is not None:
27
- TRANSLATION_STATUS.append(f"Y, {file_path}")
+ TRANSLATION_STATUS.append(f"Y, file:{file_path}")
28
else:
29
- TRANSLATION_STATUS.append(f"N, {file_path}")
+ TRANSLATION_STATUS.append(f"N, file:{file_path}")
30
TRANSLATION_STATUS.sort()
31
print("\n".join(TRANSLATION_STATUS))
32
0 commit comments