You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
519 B
Python
17 lines
519 B
Python
import re
|
|
|
|
|
|
def localization_regex(string):
|
|
e_str = re.escape(string)
|
|
|
|
rex_b = r"i18n\([\r\n]?\s*'{}'|messages.{}|'{}'".format(e_str, e_str, e_str)
|
|
rex_l = r"localizedKey\s*=\s*'{}'".format(e_str)
|
|
res_8n = r"window\.i18n\(\s*'{}'(?:,\s*(?:[^\)]+?))?\s*\)".format(e_str)
|
|
res_comp = r'<I18n\s+[^>]*?token=["\']{}["\'][^>]*?>'.format(e_str)
|
|
res_token = r'token=["\']{}["\']'.format(e_str)
|
|
|
|
return re.compile(
|
|
f"{rex_b}|{rex_l}|{res_8n}|{res_comp}|{res_token}",
|
|
re.DOTALL,
|
|
)
|