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.
14 lines
441 B
14 lines
441 B
# coding: utf-8
|
|
from PySide6.QtCore import QTranslator, QLocale
|
|
|
|
|
|
class FluentTranslator(QTranslator):
|
|
""" Translator of fluent widgets """
|
|
|
|
def __init__(self, locale: QLocale = None, parent=None):
|
|
super().__init__(parent=parent)
|
|
self.load(locale or QLocale())
|
|
|
|
def load(self, locale: QLocale):
|
|
""" load translation file """
|
|
super().load(f":/qfluentwidgets/i18n/qfluentwidgets.{locale.name()}.qm") |