1
0
Fork 0
mirror of synced 2024-06-30 12:11:19 +12:00

Update translations

This commit is contained in:
Dummerle 2021-10-24 02:19:16 +02:00
parent 8ebec3751b
commit 1eac418195
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1
5 changed files with 952 additions and 1484 deletions

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
# Form implementation generated from reading ui file 'rare/ui/components/tabs/store/shop_game_info.ui' # Form implementation generated from reading ui file 'rare/ui/components/tabs/store/shop_game_info.ui'
# #
# Created by: PyQt5 UI code generator 5.15.4 # Created by: PyQt5 UI code generator 5.15.5
# #
# WARNING: Any manual changes made to this file will be lost when pyuic5 is # WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing. # run again. Do not edit this file unless you know what you are doing.
@ -44,6 +44,7 @@ class Ui_shop_info(object):
font = QtGui.QFont() font = QtGui.QFont()
font.setPointSize(14) font.setPointSize(14)
self.dev.setFont(font) self.dev.setFont(font)
self.dev.setText("TextLabel")
self.dev.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse|QtCore.Qt.TextSelectableByMouse) self.dev.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse|QtCore.Qt.TextSelectableByMouse)
self.dev.setObjectName("dev") self.dev.setObjectName("dev")
self.verticalLayout_2.addWidget(self.dev) self.verticalLayout_2.addWidget(self.dev)
@ -106,7 +107,6 @@ class Ui_shop_info(object):
_translate = QtCore.QCoreApplication.translate _translate = QtCore.QCoreApplication.translate
self.back_button.setText(_translate("shop_info", "Back")) self.back_button.setText(_translate("shop_info", "Back"))
self.title.setText(_translate("shop_info", "Error")) self.title.setText(_translate("shop_info", "Error"))
self.dev.setText(_translate("shop_info", "TextLabel"))
self.owned_label.setText(_translate("shop_info", "You already own this game")) self.owned_label.setText(_translate("shop_info", "You already own this game"))
self.open_store_button.setText(_translate("shop_info", "Buy Game in Epic Games Store")) self.open_store_button.setText(_translate("shop_info", "Buy Game in Epic Games Store"))
self.wishlist_button.setText(_translate("shop_info", "Add to wishlist")) self.wishlist_button.setText(_translate("shop_info", "Add to wishlist"))

View file

@ -61,7 +61,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true">TextLabel</string>
</property> </property>
<property name="textInteractionFlags"> <property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set>

View file

@ -2,7 +2,7 @@
# Form implementation generated from reading ui file 'rare/ui/components/tabs/store/wishlist_widget.ui' # Form implementation generated from reading ui file 'rare/ui/components/tabs/store/wishlist_widget.ui'
# #
# Created by: PyQt5 UI code generator 5.15.4 # Created by: PyQt5 UI code generator 5.15.5
# #
# WARNING: Any manual changes made to this file will be lost when pyuic5 is # WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing. # run again. Do not edit this file unless you know what you are doing.
@ -31,6 +31,7 @@ class Ui_WishlistWidget(object):
font = QtGui.QFont() font = QtGui.QFont()
font.setPointSize(16) font.setPointSize(16)
self.title_label.setFont(font) self.title_label.setFont(font)
self.title_label.setText("TextLabel")
self.title_label.setWordWrap(True) self.title_label.setWordWrap(True)
self.title_label.setObjectName("title_label") self.title_label.setObjectName("title_label")
self.verticalLayout_2.addWidget(self.title_label) self.verticalLayout_2.addWidget(self.title_label)
@ -38,6 +39,7 @@ class Ui_WishlistWidget(object):
font = QtGui.QFont() font = QtGui.QFont()
font.setPointSize(12) font.setPointSize(12)
self.developer.setFont(font) self.developer.setFont(font)
self.developer.setText("TextLabel")
self.developer.setObjectName("developer") self.developer.setObjectName("developer")
self.verticalLayout_2.addWidget(self.developer) self.verticalLayout_2.addWidget(self.developer)
self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
@ -48,9 +50,11 @@ class Ui_WishlistWidget(object):
sizePolicy.setVerticalStretch(0) sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.discount_price.sizePolicy().hasHeightForWidth()) sizePolicy.setHeightForWidth(self.discount_price.sizePolicy().hasHeightForWidth())
self.discount_price.setSizePolicy(sizePolicy) self.discount_price.setSizePolicy(sizePolicy)
self.discount_price.setText("TextLabel")
self.discount_price.setObjectName("discount_price") self.discount_price.setObjectName("discount_price")
self.horizontalLayout_2.addWidget(self.discount_price) self.horizontalLayout_2.addWidget(self.discount_price)
self.price = QtWidgets.QLabel(self.widget) self.price = QtWidgets.QLabel(self.widget)
self.price.setText("TextLabel")
self.price.setObjectName("price") self.price.setObjectName("price")
self.horizontalLayout_2.addWidget(self.price) self.horizontalLayout_2.addWidget(self.price)
self.verticalLayout_2.addLayout(self.horizontalLayout_2) self.verticalLayout_2.addLayout(self.horizontalLayout_2)
@ -71,11 +75,7 @@ class Ui_WishlistWidget(object):
QtCore.QMetaObject.connectSlotsByName(WishlistWidget) QtCore.QMetaObject.connectSlotsByName(WishlistWidget)
def retranslateUi(self, WishlistWidget): def retranslateUi(self, WishlistWidget):
_translate = QtCore.QCoreApplication.translate pass
self.title_label.setText(_translate("WishlistWidget", "TextLabel"))
self.developer.setText(_translate("WishlistWidget", "TextLabel"))
self.discount_price.setText(_translate("WishlistWidget", "TextLabel"))
self.price.setText(_translate("WishlistWidget", "TextLabel"))
if __name__ == "__main__": if __name__ == "__main__":

View file

@ -31,7 +31,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true">TextLabel</string>
</property> </property>
<property name="wordWrap"> <property name="wordWrap">
<bool>true</bool> <bool>true</bool>
@ -46,7 +46,7 @@
</font> </font>
</property> </property>
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true">TextLabel</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -61,14 +61,14 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true">TextLabel</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QLabel" name="price"> <widget class="QLabel" name="price">
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true">TextLabel</string>
</property> </property>
</widget> </widget>
</item> </item>