b1f6c1c4
5 years ago
No known key found for this signature in database
GPG Key ID: 7534B21ACA726708
2 changed files with
3 additions and
3 deletions
-
tools/addword.py
|
|
@ -18,7 +18,7 @@ def main(): |
|
|
|
prons = get_pronunciation_files(word) |
|
|
|
phones = get_phonetic_transcriptions(word) |
|
|
|
britsh_eng = '[🔊]('+prons[0]+')' + ' ' + phones[0] |
|
|
|
american_eng = '[🔊]('+prons[1]+')' + phones[1] |
|
|
|
american_eng = '[🔊]('+prons[1]+')' + ' ' + phones[1] |
|
|
|
line = '| ' + word + ' | ' + britsh_eng + ' | ' + american_eng + ' | ' + ' ' + '|' |
|
|
|
print(line) |
|
|
|
|
|
|
|