blob: 47bf96b654f4d6b6cc0f95719cf43968a021f01e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env python3
#
# Copyright (c) 2023-present The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or https://opensource.org/license/mit/.
#
# Check for leading whitespaces in the translatable strings.
import subprocess
import sys
def main():
tr_strings = subprocess.run(['git', 'grep', '-e', 'tr("[[:space:]]', '--', 'src/qt'], stdout=subprocess.PIPE, text=True).stdout
if tr_strings.strip():
print("Avoid leading whitespaces in:")
print(tr_strings)
sys.exit(1)
if __name__ == "__main__":
main()
|