Allow non words to be appended for consistency

This commit is contained in:
dazedanon 2025-12-02 01:13:19 -06:00
parent a2151bde18
commit b96f4b3524

View file

@ -1819,11 +1819,6 @@ def searchCodes(page, pbar, jobList, filename):
j = i
jaString = codeList[i]["parameters"][0]
# Check if there is text to translate
if not re.search(r"\w+", jaString):
i += 1
continue
# Validate Japanese Text
if not re.search(LANGREGEX, jaString) and IGNORETLTEXT:
i += 1