460 class Translation: |
460 class Translation: |
461 """ |
461 """ |
462 Class to store the properties of a translation. |
462 Class to store the properties of a translation. |
463 """ |
463 """ |
464 |
464 |
465 def __init__(self): |
465 fileName: str = None |
466 """ |
466 name: str = None |
467 Constructor |
467 translator: QTranslator = None |
468 """ |
|
469 self.fileName = None |
|
470 self.name = None |
|
471 self.translator = None |
|
472 |
468 |
473 |
469 |
474 class TranslationsDict(QObject): |
470 class TranslationsDict(QObject): |
475 """ |
471 """ |
476 Class to store all loaded translations. |
472 Class to store all loaded translations. |