mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
Removed regex formatting (problems with UTF-8...)
Add an additional step of manual patching of language files
This commit is contained in:
0
forge-gui/tools/cardnames-de-DE-patch.txt
Normal file
0
forge-gui/tools/cardnames-de-DE-patch.txt
Normal file
6
forge-gui/tools/cardnames-es-ES-patch.txt
Normal file
6
forge-gui/tools/cardnames-es-ES-patch.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Forest|Isla|Tierra básica - Bosque|({T}: Agrega {G}.)
|
||||||
|
Island|Isla|Tierra básica - Isla|({T}: Agrega {U}.)
|
||||||
|
Mountain|Montaña|Tierra básica - Montaña|({T}: Agrega {R}.)
|
||||||
|
Plains|Llanura|Tierra básica - Llanura|({T}: Agrega {W}.)
|
||||||
|
Swamp|Pantano|Tierra básica - Pantano|({T}: Agrega {B}.)
|
||||||
|
|
||||||
@@ -9,15 +9,10 @@ languages = ['es', 'de']
|
|||||||
|
|
||||||
urllib.request.urlretrieve(scryfalldburl, database)
|
urllib.request.urlretrieve(scryfalldburl, database)
|
||||||
|
|
||||||
def oracleformat(oracle):
|
|
||||||
oracle = re.sub(r"[)]([A-Z,{,•,-])", ")\n\1", oracle)
|
|
||||||
oracle = re.sub(r"(.)[\.]([A-Z,{,•,-])", "\1.\n\2", oracle)
|
|
||||||
return oracle
|
|
||||||
|
|
||||||
# Sort file and remove duplicates
|
# Sort file and remove duplicates
|
||||||
def cleanfile(filename):
|
def cleanfile(filename):
|
||||||
names_seen = set()
|
names_seen = set()
|
||||||
outfile = open(filename + ".txt", "w", encoding='utf8')
|
outfile = open(filename + ".tmp2", "w", encoding='utf8')
|
||||||
with open(filename + ".tmp", "r", encoding='utf8') as r:
|
with open(filename + ".tmp", "r", encoding='utf8') as r:
|
||||||
for line in sorted(r):
|
for line in sorted(r):
|
||||||
name = line.split('|')[0]
|
name = line.split('|')[0]
|
||||||
@@ -27,6 +22,26 @@ def cleanfile(filename):
|
|||||||
outfile.close()
|
outfile.close()
|
||||||
os.remove(filename + ".tmp")
|
os.remove(filename + ".tmp")
|
||||||
|
|
||||||
|
# Manual patch of file translations
|
||||||
|
def patchtranslations(filename):
|
||||||
|
ffinal = open(filename + '.txt', 'w', encoding='utf8')
|
||||||
|
fpatch = open(filename + '-patch.txt', 'r', encoding='utf8')
|
||||||
|
patchline = fpatch.readline()
|
||||||
|
|
||||||
|
with open(filename + '.tmp2', 'r', encoding='utf8') as temp:
|
||||||
|
for templine in temp:
|
||||||
|
tempname = templine.split('|')[0]
|
||||||
|
patchname = patchline.split('|')[0]
|
||||||
|
if patchname == tempname:
|
||||||
|
ffinal.write(patchline)
|
||||||
|
patchline = fpatch.readline()
|
||||||
|
else:
|
||||||
|
ffinal.write(templine)
|
||||||
|
|
||||||
|
ffinal.close()
|
||||||
|
fpatch.close()
|
||||||
|
os.remove(filename + '.tmp2')
|
||||||
|
|
||||||
with open(database, mode='r', encoding='utf8') as json_file:
|
with open(database, mode='r', encoding='utf8') as json_file:
|
||||||
data = json.load(json_file)
|
data = json.load(json_file)
|
||||||
|
|
||||||
@@ -60,18 +75,14 @@ with open(database, mode='r', encoding='utf8') as json_file:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
output = name + '|' + tname + '|' + ttype
|
output = name + '|' + tname + '|' + ttype
|
||||||
|
|
||||||
# Format oracle
|
|
||||||
if toracle != "":
|
|
||||||
toracle = oracleformat(toracle)
|
|
||||||
|
|
||||||
output = output + '|' + toracle
|
output = output + '|' + toracle
|
||||||
output = output.replace('\n', '\\n')
|
output = output.replace('\n', '\\n')
|
||||||
|
output = output + '\n'
|
||||||
|
|
||||||
if card['lang'] == 'es':
|
if card['lang'] == 'es':
|
||||||
feses.write(output + '\n')
|
feses.write(output)
|
||||||
if card['lang'] == 'de':
|
if card['lang'] == 'de':
|
||||||
fdede.write(output + '\n')
|
fdede.write(output)
|
||||||
|
|
||||||
# Parse double card
|
# Parse double card
|
||||||
else:
|
else:
|
||||||
@@ -122,11 +133,6 @@ with open(database, mode='r', encoding='utf8') as json_file:
|
|||||||
# Output Card0
|
# Output Card0
|
||||||
|
|
||||||
output0 = name0 + '|' + tname0 + '|' + ttype0
|
output0 = name0 + '|' + tname0 + '|' + ttype0
|
||||||
|
|
||||||
# Format oracle for card0
|
|
||||||
if toracle0 != "":
|
|
||||||
toracle0 = oracleformat(toracle0)
|
|
||||||
|
|
||||||
output0 = output0 + '|' + toracle0
|
output0 = output0 + '|' + toracle0
|
||||||
output0 = output0.replace('\n', '\\n')
|
output0 = output0.replace('\n', '\\n')
|
||||||
|
|
||||||
@@ -138,11 +144,6 @@ with open(database, mode='r', encoding='utf8') as json_file:
|
|||||||
# Output Card1
|
# Output Card1
|
||||||
|
|
||||||
output1 = name1 + '|' + tname1 + '|' + ttype1
|
output1 = name1 + '|' + tname1 + '|' + ttype1
|
||||||
|
|
||||||
# Format oracle for card0
|
|
||||||
if toracle1 != "":
|
|
||||||
toracle1 = oracleformat(toracle1)
|
|
||||||
|
|
||||||
output1 = output1 + '|' + toracle1
|
output1 = output1 + '|' + toracle1
|
||||||
output1 = output1.replace('\n', '\\n')
|
output1 = output1.replace('\n', '\\n')
|
||||||
|
|
||||||
@@ -156,4 +157,8 @@ with open(database, mode='r', encoding='utf8') as json_file:
|
|||||||
|
|
||||||
# Sort file and remove duplicates
|
# Sort file and remove duplicates
|
||||||
cleanfile("cardnames-es-ES")
|
cleanfile("cardnames-es-ES")
|
||||||
cleanfile("cardnames-de-DE")
|
cleanfile("cardnames-de-DE")
|
||||||
|
|
||||||
|
# Patch language files
|
||||||
|
patchtranslations("cardnames-es-ES")
|
||||||
|
patchtranslations("cardnames-de-DE")
|
||||||
Reference in New Issue
Block a user