From 713ac0251b325c91332bcd08d751830dc35bab1f Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 6 May 2017 23:34:50 +0400 Subject: [PATCH] Added donation URL to the list of translatable strings --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 67b5eff2..e1aca92f 100644 --- a/src/main.py +++ b/src/main.py @@ -93,7 +93,7 @@ def setup(): def donation(): dlg = commonMessageDialogs.donation() if dlg == widgetUtils.YES: - webbrowser.open_new_tab("http://twblue.es/?q=donate") + webbrowser.open_new_tab(_("https://twblue.es/donate")) config.app["app-settings"]["donation_dialog_displayed"] = True setup()