mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
fix french translation
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -339,7 +339,7 @@ lblFullScreen=Plein écran
|
|||||||
lblExitFullScreen=Quitter le plein écran
|
lblExitFullScreen=Quitter le plein écran
|
||||||
#HelpMenu.java
|
#HelpMenu.java
|
||||||
lblHelp=Aide
|
lblHelp=Aide
|
||||||
lblAboutForge=À propos de Forge
|
lblAboutForge=À propos de Forge
|
||||||
lblTroubleshooting=Dépannage
|
lblTroubleshooting=Dépannage
|
||||||
lblArticles=Articles
|
lblArticles=Articles
|
||||||
lblGettingStarted=Mise en route
|
lblGettingStarted=Mise en route
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
__author__ = 'add-le'
|
__author__ = 'add-le'
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
import shutil
|
||||||
import signal
|
import signal
|
||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
@@ -30,6 +31,34 @@ SUCCESS_STATUS = 200
|
|||||||
# Generate by the method mapAlphabet()
|
# Generate by the method mapAlphabet()
|
||||||
utils = {'A': 0, 'B': 1396, 'C': 2795, 'D': 4515, 'E': 5927, 'F': 6804, 'G': 7869, 'H': 9184, 'I': 10029, 'J': 10639, 'K': 10914, 'L': 11584, 'M': 12336, 'N': 13765, 'O': 14349, 'P': 14849, 'Q': 15970, 'R': 16063, 'S': 17391, 'T': 20691, 'U': 22167, 'V': 22485, 'W': 23145, 'X': 23978, 'Y': 23999, 'Z': 24099}
|
utils = {'A': 0, 'B': 1396, 'C': 2795, 'D': 4515, 'E': 5927, 'F': 6804, 'G': 7869, 'H': 9184, 'I': 10029, 'J': 10639, 'K': 10914, 'L': 11584, 'M': 12336, 'N': 13765, 'O': 14349, 'P': 14849, 'Q': 15970, 'R': 16063, 'S': 17391, 'T': 20691, 'U': 22167, 'V': 22485, 'W': 23145, 'X': 23978, 'Y': 23999, 'Z': 24099}
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
|
" Get missing image art from scryfall. Download fullborder
|
||||||
|
" and art crop images.
|
||||||
|
"""
|
||||||
|
def getImageArt():
|
||||||
|
bulkfile = open('./scryfallcards.json', 'r', encoding='utf-8')
|
||||||
|
bulk = json.load(bulkfile)
|
||||||
|
bulkfile.close()
|
||||||
|
|
||||||
|
missingcardsfile = open('./missing-cards.txt', 'r', encoding='utf-8')
|
||||||
|
missingcards = missingcardsfile.readlines()
|
||||||
|
missingcardsfile.close()
|
||||||
|
|
||||||
|
for card in missingcards:
|
||||||
|
name = card.split('.')[0]
|
||||||
|
for bulkdata in bulk:
|
||||||
|
if bulkdata['name'] == name:
|
||||||
|
res = requests.get(bulkdata['image_uris']['png'], stream = True)
|
||||||
|
if res.status_code == 200:
|
||||||
|
with open('images/' + name + '.fullborder.png','wb') as f:
|
||||||
|
shutil.copyfileobj(res.raw, f)
|
||||||
|
res = requests.get(bulkdata['image_uris']['art_crop'], stream = True)
|
||||||
|
if res.status_code == 200:
|
||||||
|
with open('images/' + name + '.artcrop.jpg','wb') as f:
|
||||||
|
shutil.copyfileobj(res.raw, f)
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
" Function to get all missing cards in the french translation
|
" Function to get all missing cards in the french translation
|
||||||
" thanks to the scryfall bulk data.
|
" thanks to the scryfall bulk data.
|
||||||
@@ -210,6 +239,9 @@ if __name__ == "__main__":
|
|||||||
if sys.argv[1] == '-g' or sys.argv[1] == '--get':
|
if sys.argv[1] == '-g' or sys.argv[1] == '--get':
|
||||||
getMissingCards()
|
getMissingCards()
|
||||||
|
|
||||||
|
if sys.argv[1] == '-i' or sys.argv[1] == '--image':
|
||||||
|
getImageArt()
|
||||||
|
|
||||||
if sys.argv[1] == '-u' or sys.argv[1] == '--url':
|
if sys.argv[1] == '-u' or sys.argv[1] == '--url':
|
||||||
if len(sys.argv) <= 2:
|
if len(sys.argv) <= 2:
|
||||||
print('Missing second arg : url to scrap')
|
print('Missing second arg : url to scrap')
|
||||||
|
|||||||
Reference in New Issue
Block a user