i8n for statusbar tooltips

This commit is contained in:
Marcos Pinto 2008-07-02 04:01:32 +00:00
parent f9c2fc0720
commit 9ceac125c8
1 changed files with 3 additions and 3 deletions

View File

@ -143,17 +143,17 @@ class StatusBar(component.Component):
self.connections_item = self.add_item( self.connections_item = self.add_item(
stock=gtk.STOCK_NETWORK, stock=gtk.STOCK_NETWORK,
callback=self._on_connection_item_clicked, callback=self._on_connection_item_clicked,
tooltip="Connections") tooltip=_("Connections"))
self.download_item = self.add_item( self.download_item = self.add_item(
image=deluge.common.get_pixmap("downloading16.png"), image=deluge.common.get_pixmap("downloading16.png"),
callback=self._on_download_item_clicked, callback=self._on_download_item_clicked,
tooltip="Download Speed") tooltip=_("Download Speed"))
self.upload_item = self.add_item( self.upload_item = self.add_item(
image=deluge.common.get_pixmap("seeding16.png"), image=deluge.common.get_pixmap("seeding16.png"),
callback=self._on_upload_item_clicked, callback=self._on_upload_item_clicked,
tooltip="Upload Speed") tooltip=_("Upload Speed"))
self.dht_item = StatusBarItem( self.dht_item = StatusBarItem(
image=deluge.common.get_pixmap("dht16.png")) image=deluge.common.get_pixmap("dht16.png"))