You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
669 B

# coding: utf-8
from PySide6.QtCore import QObject
class Translator(QObject):
def __init__(self, parent=None):
super().__init__(parent=parent)
self.text = self.tr('Text')
self.view = self.tr('View')
self.menus = self.tr('Menus')
self.icons = self.tr('Icons')
self.layout = self.tr('Layout')
self.dialogs = self.tr('Dialogs')
self.scroll = self.tr('Scrolling')
self.material = self.tr('Material')
self.dateTime = self.tr('Date & time')
self.navigation = self.tr('Navigation')
self.basicInput = self.tr('Basic input')
self.statusInfo = self.tr('Status & info')