POT Beispiel korrigiert. Octal Nummerierung eingebaut
This commit is contained in:
@@ -344,7 +344,7 @@ def enumerate_symbols(symbols, attributes):
|
||||
# Ersetze @-Zeichen durch Zahlen
|
||||
# Zähle wie viele @ im Template sind
|
||||
at_count = name_template.count('@')
|
||||
number_str = str(counter).zfill(at_count)
|
||||
number_str = oct(counter)[2:].zfill(at_count)
|
||||
|
||||
# Aktualisiere Attribute im Symbol
|
||||
for attrib in symbol['entity'].attribs:
|
||||
|
||||
Reference in New Issue
Block a user