14 lines
441 B
Python
14 lines
441 B
Python
# 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") |