summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2014-07-09 19:09:46 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2014-07-09 19:09:46 +0100
commitade26794ec8248b773b530c513f8f418b3ee7fbb (patch)
tree8fc9be67a1f5cab34496a87def0d8145228e227c
parent8c4a08bb87a665c2039029ff0b2efdfe696d0f17 (diff)
downloaddeluge-ade26794ec8248b773b530c513f8f418b3ee7fbb.tar.gz
deluge-ade26794ec8248b773b530c513f8f418b3ee7fbb.tar.bz2
deluge-ade26794ec8248b773b530c513f8f418b3ee7fbb.zip
[GTKUI] Fix text typo and mark for translation
-rw-r--r--deluge/ui/gtkui/mainwindow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/deluge/ui/gtkui/mainwindow.py b/deluge/ui/gtkui/mainwindow.py
index 420ddb889..60b92bfd0 100644
--- a/deluge/ui/gtkui/mainwindow.py
+++ b/deluge/ui/gtkui/mainwindow.py
@@ -152,7 +152,7 @@ class MainWindow(component.Component):
self.load_window_state()
if self.config["lock_tray"] and not self.visible():
- dialog = PasswordDialog("Enter your pasword to open Deluge.")
+ dialog = PasswordDialog(_("Enter your password to show Deluge..."))
def on_dialog_response(response_id):
if response_id == gtk.RESPONSE_OK:
if self.config["tray_password"] == sha(dialog.get_password()).hexdigest():
@@ -207,7 +207,7 @@ class MainWindow(component.Component):
d.addBoth(stop_reactor)
if self.config["lock_tray"] and not self.visible():
- dialog = PasswordDialog("Enter your pasword to Quit Deluge...")
+ dialog = PasswordDialog(_("Enter your password to Quit Deluge..."))
def on_dialog_response(response_id):
if response_id == gtk.RESPONSE_OK:
if self.config["tray_password"] == sha(dialog.get_password()).hexdigest():