Fixed base class of translation service
This commit is contained in:
parent
7498fe3255
commit
cbf669d3bd
@ -15,7 +15,7 @@ __title__ = 'cpl_translation'
|
||||
__author__ = 'Sven Heidemann'
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright (c) 2022 sh-edraft.de'
|
||||
__version__ = '2022.7.0.post1'
|
||||
__version__ = '2022.7.0.post2'
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
@ -51,4 +51,4 @@ init()
|
||||
# build-ignore-end
|
||||
|
||||
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
||||
version_info = VersionInfo(major='2022', minor='7', micro='0.post1')
|
||||
version_info = VersionInfo(major='2022', minor='7', micro='0.post2')
|
||||
|
@ -4,7 +4,7 @@
|
||||
"Version": {
|
||||
"Major": "2022",
|
||||
"Minor": "7",
|
||||
"Micro": "0.post1"
|
||||
"Micro": "0.post2"
|
||||
},
|
||||
"Author": "Sven Heidemann",
|
||||
"AuthorEmail": "sven.heidemann@sh-edraft.de",
|
||||
|
@ -1,5 +1,7 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
from cpl_translation import TranslationSettings
|
||||
|
||||
|
||||
class TranslationServiceABC(ABC):
|
||||
|
||||
@ -16,7 +18,7 @@ class TranslationServiceABC(ABC):
|
||||
def load(self, lang: str): pass
|
||||
|
||||
@abstractmethod
|
||||
def load_by_settings(self): pass
|
||||
def load_by_settings(self, settings: TranslationSettings): pass
|
||||
|
||||
@abstractmethod
|
||||
def translate(self, key: str) -> str: pass
|
||||
|
Loading…
Reference in New Issue
Block a user