1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-05-01 19:30:52 +02:00

Removed gettext related functions

This commit is contained in:
2020-05-03 19:00:20 +02:00
parent 35445cb736
commit 212cb56d42
92 changed files with 1505 additions and 1605 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ class TXTMLizer(object):
toc = ['']
if getattr(self.opts, 'inline_toc', None):
self.log.debug('Generating table of contents...')
toc.append('%s\n\n' % _('Table of Contents:'))
toc.append('%s\n\n' % 'Table of Contents:')
for item in self.toc_titles:
toc.append('* %s\n\n' % item)
return ''.join(toc)