Skip to content

Commit

Permalink
Merge pull request #2027 from EchterAgo/fix_typo
Browse files Browse the repository at this point in the history
Fix typo in transaction dialog
  • Loading branch information
cculianu committed Oct 24, 2020
2 parents e8630fb + 997b54e commit f590ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electroncash_gui/qt/transaction_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _make_freeze_button_text(cls, op: FreezeOp = FreezeOp.Freeze, num_coins: int
if op == cls.FreezeOp.Freeze:
return ngettext("&Freeze Coin", "&Freeze Coins", num_coins)
elif op == cls.FreezeOp.Unfreeze:
return ngettext("&Unfeeze Coin", "&Unfeeze Coins", num_coins)
return ngettext("&Unfreeze Coin", "&Unfreeze Coins", num_coins)
raise ValueError(f"Invalid op: {op!r}")

def initiate_fetch_input_data(self, force):
Expand Down

0 comments on commit f590ead

Please sign in to comment.