py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2017-07-03 08:02:10 +02:00
|
|
|
import argparse
|
2017-06-30 07:07:49 +02:00
|
|
|
import json
|
|
|
|
import os
|
2017-07-03 07:39:07 +02:00
|
|
|
import subprocess
|
2020-06-11 00:54:34 +02:00
|
|
|
import sys
|
2017-06-30 07:07:49 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
|
2021-07-03 08:22:44 +02:00
|
|
|
|
|
|
|
# check for the venv
|
|
|
|
from tools.lib import sanity_check
|
|
|
|
|
|
|
|
sanity_check.check_venv(__file__)
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
from scripts.lib.zulip_tools import ENDC, FAIL, WARNING
|
|
|
|
|
2017-06-30 07:07:49 +02:00
|
|
|
|
2024-07-12 02:30:17 +02:00
|
|
|
def find_handlebars(translatable_strings: list[str]) -> list[str]:
|
2023-07-31 22:52:35 +02:00
|
|
|
return [string for string in translatable_strings if "{{" in string]
|
2017-06-30 07:07:49 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if __name__ == "__main__":
|
2017-07-03 08:02:10 +02:00
|
|
|
parser = argparse.ArgumentParser()
|
2021-02-12 08:19:30 +01:00
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--no-generate", action="store_true", help="Don't run makemessages command."
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2017-07-03 08:02:10 +02:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if not args.no_generate:
|
2023-08-18 00:50:19 +02:00
|
|
|
subprocess.check_call(
|
|
|
|
["./manage.py", "makemessages", "--locale", "en"], stderr=subprocess.STDOUT
|
|
|
|
)
|
2017-07-03 07:39:07 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
with open("locale/en/translations.json") as f:
|
2017-06-30 07:07:49 +02:00
|
|
|
data = json.load(f)
|
|
|
|
|
|
|
|
found = find_handlebars(list(data.keys()))
|
2017-11-16 19:54:24 +01:00
|
|
|
if not found:
|
2017-06-30 07:07:49 +02:00
|
|
|
sys.exit(0)
|
2017-11-16 19:54:24 +01:00
|
|
|
|
2022-06-27 22:35:01 +02:00
|
|
|
print(WARNING + "Translation strings contain Handlebars:" + ENDC)
|
2021-02-12 08:20:45 +01:00
|
|
|
print("\n".join(found))
|
2017-11-16 19:54:24 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
print(
|
|
|
|
WARNING
|
2024-04-03 22:13:16 +02:00
|
|
|
+ "See https://zulip.readthedocs.io/en/latest/translating/internationalization.html#frontend-translations "
|
2021-02-12 08:19:30 +01:00
|
|
|
"on how you can insert variables in the frontend translatable "
|
|
|
|
"strings." + ENDC
|
|
|
|
)
|
2017-11-16 19:54:24 +01:00
|
|
|
print(FAIL + "Failed!" + ENDC)
|
|
|
|
sys.exit(1)
|