summaryrefslogtreecommitdiff
path: root/onionshare_gui
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-01-19 19:00:41 -0800
committerMicah Lee <micah@micahflee.com>2019-01-19 19:00:41 -0800
commit862a0dc067f38d700ec2339633a0701ac6b271d1 (patch)
tree16ff8449bea8bae33f23e0276533e5499700258f /onionshare_gui
parent3ae1e04c0a4498cd55d0fcbbd809686037beac33 (diff)
downloadonionshare-862a0dc067f38d700ec2339633a0701ac6b271d1.tar.gz
onionshare-862a0dc067f38d700ec2339633a0701ac6b271d1.zip
Rename images to remove upload/download references, and update more strings
Diffstat (limited to 'onionshare_gui')
-rw-r--r--onionshare_gui/mode/history.py60
-rw-r--r--onionshare_gui/mode/receive_mode/__init__.py6
-rw-r--r--onionshare_gui/mode/share_mode/__init__.py6
3 files changed, 42 insertions, 30 deletions
diff --git a/onionshare_gui/mode/history.py b/onionshare_gui/mode/history.py
index 3f689bea..44ee293f 100644
--- a/onionshare_gui/mode/history.py
+++ b/onionshare_gui/mode/history.py
@@ -40,6 +40,30 @@ class HistoryItem(QtWidgets.QWidget):
def cancel(self):
pass
+ def get_finished_label_text(self, started_ts):
+ """
+ When an item finishes, returns a string displaying the start/end datetime range.
+ started is a datetime object.
+ """
+ started = datetime.fromtimestamp(started_ts)
+ ended = datetime.now()
+ if started.year == ended.year and started.month == ended.month and started.day == ended.day:
+ if started.hour == ended.hour and started.minute == ended.minute:
+ text = strings._('gui_all_modes_transfer_finished').format(
+ started.strftime("%b %d, %I:%M%p")
+ )
+ else:
+ text = strings._('gui_all_modes_transfer_finished_range').format(
+ started.strftime("%b %d, %I:%M%p"),
+ ended.strftime("%I:%M%p")
+ )
+ else:
+ text = strings._('gui_all_modes_transfer_finished_range').format(
+ started.strftime("%b %d, %I:%M%p"),
+ ended.strftime("%b %d, %I:%M%p")
+ )
+ return text
+
class ShareHistoryItem(HistoryItem):
"""
@@ -56,7 +80,7 @@ class ShareHistoryItem(HistoryItem):
self.started_dt = datetime.fromtimestamp(self.started)
# Label
- self.label = QtWidgets.QLabel(strings._('gui_share_mode_transfer_started').format(self.started_dt.strftime("%b %d, %I:%M%p")))
+ self.label = QtWidgets.QLabel(strings._('gui_all_modes_transfer_started').format(self.started_dt.strftime("%b %d, %I:%M%p")))
# Progress bar
self.progress_bar = QtWidgets.QProgressBar()
@@ -83,18 +107,22 @@ class ShareHistoryItem(HistoryItem):
self.progress_bar.setValue(downloaded_bytes)
if downloaded_bytes == self.progress_bar.total_bytes:
- pb_fmt = strings._('gui_download_upload_progress_complete').format(
+ pb_fmt = strings._('gui_all_modes_progress_complete').format(
self.common.format_seconds(time.time() - self.started))
+
+ # Change the label
+ self.label.setText(self.get_finished_label_text(self.started))
+
else:
elapsed = time.time() - self.started
if elapsed < 10:
# Wait a couple of seconds for the download rate to stabilize.
# This prevents a "Windows copy dialog"-esque experience at
# the beginning of the download.
- pb_fmt = strings._('gui_download_upload_progress_starting').format(
+ pb_fmt = strings._('gui_all_modes_progress_starting').format(
self.common.human_readable_filesize(downloaded_bytes))
else:
- pb_fmt = strings._('gui_download_upload_progress_eta').format(
+ pb_fmt = strings._('gui_all_modes_progress_eta').format(
self.common.human_readable_filesize(downloaded_bytes),
self.estimated_time_remaining)
@@ -199,7 +227,7 @@ class ReceiveHistoryItem(HistoryItem):
self.started = datetime.now()
# Label
- self.label = QtWidgets.QLabel(strings._('gui_upload_in_progress').format(self.started.strftime("%b %d, %I:%M%p")))
+ self.label = QtWidgets.QLabel(strings._('gui_all_modes_transfer_started').format(self.started.strftime("%b %d, %I:%M%p")))
# Progress bar
self.progress_bar = QtWidgets.QProgressBar()
@@ -244,14 +272,14 @@ class ReceiveHistoryItem(HistoryItem):
elapsed = datetime.now() - self.started
if elapsed.seconds < 10:
- pb_fmt = strings._('gui_download_upload_progress_starting').format(
+ pb_fmt = strings._('gui_all_modes_progress_starting').format(
self.common.human_readable_filesize(total_uploaded_bytes))
else:
estimated_time_remaining = self.common.estimated_time_remaining(
total_uploaded_bytes,
self.content_length,
self.started.timestamp())
- pb_fmt = strings._('gui_download_upload_progress_eta').format(
+ pb_fmt = strings._('gui_all_modes_progress_eta').format(
self.common.human_readable_filesize(total_uploaded_bytes),
estimated_time_remaining)
@@ -277,23 +305,7 @@ class ReceiveHistoryItem(HistoryItem):
self.progress_bar.hide()
# Change the label
- self.ended = self.started = datetime.now()
- if self.started.year == self.ended.year and self.started.month == self.ended.month and self.started.day == self.ended.day:
- if self.started.hour == self.ended.hour and self.started.minute == self.ended.minute:
- text = strings._('gui_receive_mode_transfer_finished').format(
- self.started.strftime("%b %d, %I:%M%p")
- )
- else:
- text = strings._('gui_receive_mode_transfer_finished_range').format(
- self.started.strftime("%b %d, %I:%M%p"),
- self.ended.strftime("%I:%M%p")
- )
- else:
- text = strings._('gui_receive_mode_transfer_finished_range').format(
- self.started.strftime("%b %d, %I:%M%p"),
- self.ended.strftime("%b %d, %I:%M%p")
- )
- self.label.setText(text)
+ self.label.setText(self.get_finished_label_text(self.started))
class HistoryItemList(QtWidgets.QScrollArea):
diff --git a/onionshare_gui/mode/receive_mode/__init__.py b/onionshare_gui/mode/receive_mode/__init__.py
index 0cf33557..2ebf1feb 100644
--- a/onionshare_gui/mode/receive_mode/__init__.py
+++ b/onionshare_gui/mode/receive_mode/__init__.py
@@ -49,7 +49,7 @@ class ReceiveMode(Mode):
# Upload history
self.history = History(
self.common,
- QtGui.QPixmap.fromImage(QtGui.QImage(self.common.get_resource_path('images/uploads_transparent.png'))),
+ QtGui.QPixmap.fromImage(QtGui.QImage(self.common.get_resource_path('images/receive_icon_transparent.png'))),
strings._('gui_receive_mode_no_files'),
strings._('gui_all_modes_history')
)
@@ -58,8 +58,8 @@ class ReceiveMode(Mode):
# Toggle history
self.toggle_history = ToggleHistory(
self.common, self, self.history,
- QtGui.QIcon(self.common.get_resource_path('images/uploads_toggle.png')),
- QtGui.QIcon(self.common.get_resource_path('images/uploads_toggle_selected.png'))
+ QtGui.QIcon(self.common.get_resource_path('images/receive_icon_toggle.png')),
+ QtGui.QIcon(self.common.get_resource_path('images/receive_icon_toggle_selected.png'))
)
# Receive mode warning
diff --git a/onionshare_gui/mode/share_mode/__init__.py b/onionshare_gui/mode/share_mode/__init__.py
index 266aaf06..f7150c1e 100644
--- a/onionshare_gui/mode/share_mode/__init__.py
+++ b/onionshare_gui/mode/share_mode/__init__.py
@@ -74,7 +74,7 @@ class ShareMode(Mode):
# Download history
self.history = History(
self.common,
- QtGui.QPixmap.fromImage(QtGui.QImage(self.common.get_resource_path('images/downloads_transparent.png'))),
+ QtGui.QPixmap.fromImage(QtGui.QImage(self.common.get_resource_path('images/share_icon_transparent.png'))),
strings._('gui_share_mode_no_files'),
strings._('gui_all_modes_history')
)
@@ -87,8 +87,8 @@ class ShareMode(Mode):
# Toggle history
self.toggle_history = ToggleHistory(
self.common, self, self.history,
- QtGui.QIcon(self.common.get_resource_path('images/downloads_toggle.png')),
- QtGui.QIcon(self.common.get_resource_path('images/downloads_toggle_selected.png'))
+ QtGui.QIcon(self.common.get_resource_path('images/share_icon_toggle.png')),
+ QtGui.QIcon(self.common.get_resource_path('images/share_icon_toggle_selected.png'))
)
# Top bar