1
0
Fork 0
mirror of synced 2024-06-03 11:14:42 +12:00

Rename filter "All" to "All games"

This commit is contained in:
Dummerle 2022-03-15 21:25:54 +01:00
parent 3c148d8093
commit 49c68917a7
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@ import webbrowser
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QMessageBox, QLabel, QPushButton
from rare.shared import LegendaryCoreSingleton, GlobalSignalsSingleton
from rare.utils.utils import icon
class MiniWidget(QWidget):
@ -18,7 +19,7 @@ class MiniWidget(QWidget):
self.layout.addWidget(QLabel(self.tr("Logged in as {}").format(username)))
self.open_browser = QPushButton(self.tr("Account settings"))
self.open_browser = QPushButton(icon("fa.external-link"), self.tr("Account settings"))
self.open_browser.clicked.connect(
lambda: webbrowser.open(
"https://www.epicgames.com/account/personal?productName=epicgames"

View file

@ -28,7 +28,7 @@ class GameListHeadBar(QWidget):
self.filter = QComboBox()
self.filter.addItems(
[
self.tr("All"),
self.tr("All games"),
self.tr("Installed only"),
self.tr("Offline Games"),
])