moulinette/test/reformat_locales.py

60 lines
1.1 KiB
Python
Raw Normal View History

import re
2021-09-03 16:43:55 +02:00
def reformat(lang, transformations):
locale = open(f"locales/{lang}.json").read()
for pattern, replace in transformations.items():
locale = re.compile(pattern).sub(replace, locale)
open(f"locales/{lang}.json", "w").write(locale)
2021-09-03 16:43:55 +02:00
######################################################
2021-09-03 16:43:55 +02:00
godamn_spaces_of_hell = [
"\u00a0",
"\u2000",
"\u2001",
"\u2002",
"\u2003",
"\u2004",
"\u2005",
"\u2006",
"\u2007",
"\u2008",
"\u2009",
"\u200A",
"\u202f",
"\u202F",
"\u3000",
]
transformations = {s: " " for s in godamn_spaces_of_hell}
2021-09-03 16:43:55 +02:00
transformations.update(
{
"": "...",
}
)
reformat("en", transformations)
######################################################
2021-09-03 16:43:55 +02:00
transformations.update(
{
"courriel": "email",
"e-mail": "email",
"Courriel": "Email",
"E-mail": "Email",
"« ": "'",
"«": "'",
" »": "'",
"»": "'",
"": "'",
# r"$(\w{1,2})'|( \w{1,2})'": r"\1\2",
}
)
reformat("fr", transformations)