mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
18 lines
430 B
Python
18 lines
430 B
Python
|
#!/usr/bin/env python3
|
||
|
import json
|
||
|
import subprocess
|
||
|
|
||
|
def main():
|
||
|
with open('assets/i18n/en-US.json', 'r') as f:
|
||
|
data = json.load(f)
|
||
|
|
||
|
for k in data.keys():
|
||
|
print(k)
|
||
|
sp = subprocess.run(['sh', '-c', f'grep -r --include="*.dart" "{k}"'])
|
||
|
|
||
|
if sp.returncode != 0:
|
||
|
print("Not found in source code!")
|
||
|
return 1
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|