Use term source template, not source type

svn: r22442
This commit is contained in:
Benny Malengier
2013-05-28 10:14:16 +00:00
parent b07717ad86
commit 9b1af034fc
2 changed files with 13 additions and 13 deletions

View File

@@ -149,9 +149,9 @@ with open('srcattrtype_extra.py', 'wb') as srcattrfile:
#
#first an English to internationalized map
code = " #SRCTYPE has some predefined values which map to citation styles\n"
code = " #SRCTEMPLATE has some predefined values which map to citation styles\n"
datamap = " _SRCTYPEVAL_MAP = [\n"
datamap = " _SRCTEMPLATEVAL_MAP = [\n"
allkeys = sorted(TYPE2CITEMAP.keys())
for source_type in allkeys:
code += " " + source_type + ' = %d\n' % TYPE2CITEMAP[source_type]['i']