We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a30a79 commit 7f679cfCopy full SHA for 7f679cf
.migration/rst2po.py
@@ -96,7 +96,7 @@ def get_paragraph(fd):
96
def get_rst_translation_text(rstfilename, english_spanish, text):
97
"""Given an rstfilename an a text returns the corresponding translated text if exists"""
98
for en, es in english_spanish:
99
- if en == text:
+ if en.replace("!", "") == text.replace("!", ""):
100
return es
101
102
0 commit comments