mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-31 14:01:51 -06:00
Fix typing
This commit is contained in:
parent
c22281ad9c
commit
179d2c924d
1 changed files with 5 additions and 2 deletions
|
@ -1,8 +1,11 @@
|
|||
import collections
|
||||
from typing import Dict, Optional
|
||||
|
||||
from UM.i18n import i18nCatalog
|
||||
catalog = i18nCatalog("cura")
|
||||
|
||||
intent_translations = collections.OrderedDict() # type: "collections.OrderedDict[str, Dict[str, Optional[str]]]"
|
||||
|
||||
intent_translations = collections.OrderedDict() # type: collections.OrderedDict[str, Dict[str, Optional[str]]]
|
||||
intent_translations["default"] = {
|
||||
"name": catalog.i18nc("@label", "Default")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue