Created
August 13, 2018 16:13
-
-
Save kanazux/e39aa865da9093e2fe30bc3d80b4e797 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Convert data in format [month day, year] | |
# to BR format [dia de [mes] de [ano]]. | |
# Probably useless to any people if not me | |
# | |
# Author: Kanazuchi <contato at kanazcuhi.com> | |
# Yeah, i have nerve to put my name in this. | |
# | |
import re | |
import sys | |
months = { | |
'April': 'Abril', | |
'August': 'Agosto', | |
'December': 'Dezembro', | |
'February': 'Fevereiro', | |
'January': 'Janeiro', | |
'July': 'Julho', | |
'June': 'Junho', | |
'March': 'Março', | |
'May': 'Maio', | |
'November': 'Novembro', | |
'October': 'Outubro', | |
'September': 'Setembro'} | |
pofile = open(sys.argv[1], 'r').read().split("\n") | |
pattern = r"(.*)(?=({}))(.*)(\b[0-9]+,)(.*)([1|2][9|0][0-9][0-9])(.*)" | |
data = re.compile(pattern.format("|".join(list(months.keys()))), re.I) | |
for i, x in enumerate(pofile): | |
if bool(data.match(x)): | |
month = re.findall(r'({})'.format("|".join(months)), x)[0] | |
pofile[i+1] = 'msgstr "{}"'.format( | |
re.sub(r'{}'.format("|".join(list(months.keys()))), | |
months[month], | |
data.subn(r'\4\3de \6', x)[0].replace(',', ' de '))) | |
with open('newpo.po', 'w') as np: | |
np.write("\n".join(pofile)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment