Skip to content

Commit

Permalink
updates for i18n translations
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Aug 1, 2016
1 parent 56356d5 commit 7ee4749
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions app.fil
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
gui/qt/__init__.py
gui/qt/main_window.py
gui/qt/history_widget.py
gui/qt/history_list.py
gui/qt/contact_list.py
gui/qt/invoice_list.py
gui/qt/request_list.py
gui/qt/installwizard.py
gui/qt/network_dialog.py
gui/qt/password_dialog.py
Expand All @@ -14,7 +17,6 @@ gui/qt/qrwindow.py
gui/kivy/main.kv
gui/kivy/main_window.py
gui/kivy/uix/dialogs/__init__.py
gui/kivy/uix/dialogs/create_restore.py
gui/kivy/uix/dialogs/fee_dialog.py
gui/kivy/uix/dialogs/installwizard.py
gui/kivy/uix/dialogs/settings.py
Expand Down
2 changes: 1 addition & 1 deletion gui/kivy/main.kv
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@

<ActionOvrButton@ActionButton>
on_release:
# fixme: the following line was commented out because it does no seem to do what it's intended:
# fixme: the following line was commented out because it does no seem to do what it is intended
# Clock.schedule_once(lambda dt: self.parent.parent.dismiss() if self.parent else None, 0.05)
Clock.schedule_once(lambda dt: app.popup_dialog(self.name), 0.05)

Expand Down
2 changes: 1 addition & 1 deletion gui/qt/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ def create_send_tab(self):

self.fee_slider = QSlider(Qt.Horizontal, self)
self.fee_slider.setRange(0, 4)
self.fee_slider.setToolTip(_(''))
self.fee_slider.setToolTip('')
def slider_moved():
from electrum.util import fee_levels
i = self.fee_slider.sliderPosition()
Expand Down

0 comments on commit 7ee4749

Please sign in to comment.