From 9535885318406c9a63b0de46a469b5bdccb90338 Mon Sep 17 00:00:00 2001 From: aznd <80119822+aznd@users.noreply.github.com> Date: Mon, 20 Jun 2022 16:12:47 +0200 Subject: [PATCH] Change "Available space" text in pop up for uniformity --- rare/components/tabs/games/game_info/game_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rare/components/tabs/games/game_info/game_info.py b/rare/components/tabs/games/game_info/game_info.py index 60ecd506..138f1901 100644 --- a/rare/components/tabs/games/game_info/game_info.py +++ b/rare/components/tabs/games/game_info/game_info.py @@ -449,7 +449,7 @@ class MoveGamePopUp(QWidget): # Calculate from bytes to gigabytes free_space_dest_drive = round(free_space / 1000**3, 2) source_size = round(source_size / 1000**3, 2) - self.aval_space_label.setText(self.tr("Available space on disk: {}GB".format(free_space_dest_drive))) + self.aval_space_label.setText(self.tr("Available space: {}GB".format(free_space_dest_drive))) self.req_space_label.setText(self.tr("Required space: {}GB").format(source_size)) if not os.access(dir_selected, os.W_OK) or not os.access(self.install_path, os.W_OK):