From 975773d76693941ca7eba7fa916d4bc965f7a71b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 11 Nov 2007 16:03:58 +0000 Subject: [PATCH] Updated translations. --- src/libprs500/gui2/jobs.py | 16 +- src/libprs500/gui2/library.py | 28 +- src/libprs500/gui2/status.py | 2 +- src/libprs500/translations/__init__.py | 10 + src/libprs500/translations/data.py | 2 +- src/libprs500/translations/de.po | 388 ++++++++++++++++++++---- src/libprs500/translations/pygettext.py | 2 +- src/libprs500/translations/sl.po | 258 ++++++++++++---- 8 files changed, 559 insertions(+), 147 deletions(-) diff --git a/src/libprs500/gui2/jobs.py b/src/libprs500/gui2/jobs.py index ab21606d30..deead4f03b 100644 --- a/src/libprs500/gui2/jobs.py +++ b/src/libprs500/gui2/jobs.py @@ -239,10 +239,10 @@ class JobManager(QAbstractTableModel): if role != Qt.DisplayRole: return NONE if orientation == Qt.Horizontal: - if section == 0: text = "Job" - elif section == 1: text = "Status" - elif section == 2: text = "Progress" - return QVariant(self.trUtf8(text)) + if section == 0: text = _("Job") + elif section == 1: text = _("Status") + elif section == 2: text = _("Progress") + return QVariant(text) else: return QVariant(section+1) @@ -257,14 +257,14 @@ class JobManager(QAbstractTableModel): if col == 0: return QVariant(job.description) if col == 1: - status = 'Waiting' + status = _('Waiting') if job.isRunning() and not job.is_locked: - status = 'Working' + status = _('Working') if job.isFinished(): - status = 'Done' + status = _('Done') return QVariant(status) if col == 2: - p = str(job.percent_done) + r'%' if job.percent_done > 0 else 'Unavailable' + p = str(job.percent_done) + r'%' if job.percent_done > 0 else _('Unavailable') return QVariant(p) if role == Qt.DecorationRole and col == 0: return self.device_job_icon if isinstance(job, DeviceJob) else self.job_icon diff --git a/src/libprs500/gui2/library.py b/src/libprs500/gui2/library.py index 2aa9693f24..4e45a2c830 100644 --- a/src/libprs500/gui2/library.py +++ b/src/libprs500/gui2/library.py @@ -309,13 +309,13 @@ class BooksModel(QAbstractTableModel): return NONE text = "" if orientation == Qt.Horizontal: - if section == 0: text = "Title" - elif section == 1: text = "Author(s)" - elif section == 2: text = "Size (MB)" - elif section == 3: text = "Date" - elif section == 4: text = "Rating" - elif section == 5: text = "Publisher" - return QVariant(self.trUtf8(text)) + if section == 0: text = _("Title") + elif section == 1: text = _("Author(s)") + elif section == 2: text = _("Size (MB)") + elif section == 3: text = _("Date") + elif section == 4: text = _("Rating") + elif section == 5: text = _("Publisher") + return QVariant(text) else: return QVariant(section+1) @@ -614,12 +614,12 @@ class DeviceBooksModel(BooksModel): return NONE text = "" if orientation == Qt.Horizontal: - if section == 0: text = "Title" - elif section == 1: text = "Author(s)" - elif section == 2: text = "Size (MB)" - elif section == 3: text = "Date" - elif section == 4: text = "Tags" - return QVariant(self.trUtf8(text)) + if section == 0: text = _("Title") + elif section == 1: text = _("Author(s)") + elif section == 2: text = _("Size (MB)") + elif section == 3: text = _("Date") + elif section == 4: text = _("Tags") + return QVariant(text) else: return QVariant(section+1) @@ -653,7 +653,7 @@ class SearchBox(QLineEdit): def __init__(self, parent): QLineEdit.__init__(self, parent) - self.help_text = 'Search by title, author, publisher, tags, series and comments' + self.help_text = _('Search by title, author, publisher, tags, series and comments') self.initial_state = True self.default_palette = QApplication.palette(self) self.gray = QPalette(self.default_palette) diff --git a/src/libprs500/gui2/status.py b/src/libprs500/gui2/status.py index a227ee714c..3a041daa50 100644 --- a/src/libprs500/gui2/status.py +++ b/src/libprs500/gui2/status.py @@ -84,7 +84,7 @@ class MovieButton(QFrame): self.movie_widget.setMovie(movie) self.movie = movie self.layout().addWidget(self.movie_widget) - self.jobs = QLabel('Jobs: 0') + self.jobs = QLabel(''+_('Jobs:')+' 0') self.jobs.setAlignment(Qt.AlignHCenter|Qt.AlignBottom) self.layout().addWidget(self.jobs) self.layout().setAlignment(self.jobs, Qt.AlignHCenter) diff --git a/src/libprs500/translations/__init__.py b/src/libprs500/translations/__init__.py index 7641710235..d8f2e9c099 100644 --- a/src/libprs500/translations/__init__.py +++ b/src/libprs500/translations/__init__.py @@ -40,16 +40,26 @@ def main(args=sys.argv): tdir = os.path.dirname(__file__) files = source_files() buf = cStringIO.StringIO() + print 'Creating translations template' pygettext(buf, ['-p', tdir]+files) src = buf.getvalue() template = tempfile.NamedTemporaryFile(suffix='.pot') template.write(src) + template.flush() translations = {} for tr in TRANSLATIONS: po = os.path.join(tdir, tr+'.po') if not os.path.exists(po): open(po, 'wb').write(src.replace('LANGUAGE', tr)) + else: + print 'Merging', os.path.basename(po) + p = subprocess.Popen('msgmerge -q '+po + ' ' + template.name, shell=True, stdout=subprocess.PIPE) + up = p.stdout.read() + if p.wait(): + raise Exception('msgmerge failed with error code: %d'%(p.wait(),)) + open(po, 'wb').write(up) buf = cStringIO.StringIO() + print 'Compiling translations' msgfmt(buf, [po]) translations[tr] = buf.getvalue() open(os.path.join(tdir, 'data.py'), 'wb').write('translations = '+repr(translations)) diff --git a/src/libprs500/translations/data.py b/src/libprs500/translations/data.py index 2a65e0c142..63b82eca1d 100644 --- a/src/libprs500/translations/data.py +++ b/src/libprs500/translations/data.py @@ -1 +1 @@ -translations = {'de': '\xde\x12\x04\x95\x00\x00\x00\x00\x97\x00\x00\x00\x1c\x00\x00\x00\xd4\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\t\x00\x00\x04\x00\x00\x00\x8d\t\x00\x00\x03\x00\x00\x00\x92\t\x00\x00\x06\x00\x00\x00\x96\t\x00\x00\x0c\x00\x00\x00\x9d\t\x00\x00\x0c\x00\x00\x00\xaa\t\x00\x00\x0f\x00\x00\x00\xb7\t\x00\x00\x1a\x00\x00\x00\xc7\t\x00\x00\x1d\x00\x00\x00\xe2\t\x00\x00\x0f\x00\x00\x00\x00\n\x00\x00\r\x00\x00\x00\x10\n\x00\x00\x17\x00\x00\x00\x1e\n\x00\x00\n\x00\x00\x006\n\x00\x00\x0c\x00\x00\x00A\n\x00\x00\t\x00\x00\x00N\n\x00\x00\x0c\x00\x00\x00X\n\x00\x00\x08\x00\x00\x00e\n\x00\x00\x14\x00\x00\x00n\n\x00\x00\x0e\x00\x00\x00\x83\n\x00\x00\x08\x00\x00\x00\x92\n\x00\x00\x08\x00\x00\x00\x9b\n\x00\x00\x0c\x00\x00\x00\xa4\n\x00\x00\x08\x00\x00\x00\xb1\n\x00\x00\x0c\x00\x00\x00\xba\n\x00\x00\n\x00\x00\x00\xc7\n\x00\x00\x0e\x00\x00\x00\xd2\n\x00\x00\x03\x00\x00\x00\xe1\n\x00\x001\x00\x00\x00\xe5\n\x00\x00\x8a\x02\x00\x00\x17\x0b\x00\x00x\x01\x00\x00\xa2\r\x00\x00\x01\x00\x00\x00\x1b\x0f\x00\x00X\x00\x00\x00\x1d\x0f\x00\x00\x0b\x00\x00\x00v\x0f\x00\x00\x0b\x00\x00\x00\x82\x0f\x00\x004\x00\x00\x00\x8e\x0f\x00\x00.\x00\x00\x00\xc3\x0f\x00\x00\t\x00\x00\x00\xf2\x0f\x00\x00\x0e\x00\x00\x00\xfc\x0f\x00\x00\r\x00\x00\x00\x0b\x10\x00\x00\x11\x00\x00\x00\x19\x10\x00\x00\x04\x00\x00\x00+\x10\x00\x00\x05\x00\x00\x000\x10\x00\x00\n\x00\x00\x006\x10\x00\x00.\x00\x00\x00A\x10\x00\x005\x00\x00\x00p\x10\x00\x00\x08\x00\x00\x00\xa6\x10\x00\x00\x14\x00\x00\x00\xaf\x10\x00\x00R\x00\x00\x00\xc4\x10\x00\x00!\x00\x00\x00\x17\x11\x00\x00\x1d\x00\x00\x009\x11\x00\x00\x11\x00\x00\x00W\x11\x00\x00\r\x00\x00\x00i\x11\x00\x00\x08\x00\x00\x00w\x11\x00\x00\t\x00\x00\x00\x80\x11\x00\x00\x10\x00\x00\x00\x8a\x11\x00\x00\x0f\x00\x00\x00\x9b\x11\x00\x00\x0e\x00\x00\x00\xab\x11\x00\x00\x0b\x00\x00\x00\xba\x11\x00\x00\x03\x00\x00\x00\xc6\x11\x00\x00\x01\x00\x00\x00\xca\x11\x00\x00\x05\x00\x00\x00\xcc\x11\x00\x00\x15\x00\x00\x00\xd2\x11\x00\x00\x15\x00\x00\x00\xe8\x11\x00\x00\x15\x00\x00\x00\xfe\x11\x00\x00\x1f\x00\x00\x00\x14\x12\x00\x00C\x00\x00\x004\x12\x00\x00\x05\x00\x00\x00x\x12\x00\x00\x1d\x00\x00\x00~\x12\x00\x00\x0e\x00\x00\x00\x9c\x12\x00\x00\x1a\x00\x00\x00\xab\x12\x00\x00\n\x00\x00\x00\xc6\x12\x00\x00\x1f\x00\x00\x00\xd1\x12\x00\x00\x1d\x01\x00\x00\xf1\x12\x00\x00J\x00\x00\x00\x0f\x14\x00\x00#\x00\x00\x00Z\x14\x00\x00\x07\x00\x00\x00~\x14\x00\x00\x06\x00\x00\x00\x86\x14\x00\x00\x0c\x00\x00\x00\x8d\x14\x00\x00\t\x00\x00\x00\x9a\x14\x00\x00\x06\x00\x00\x00\xa4\x14\x00\x00\xdc\x01\x00\x00\xab\x14\x00\x00a\x00\x00\x00\x88\x16\x00\x00\x0e\x00\x00\x00\xea\x16\x00\x00\xa8\x00\x00\x00\xf9\x16\x00\x00&\x00\x00\x00\xa2\x17\x00\x00\n\x00\x00\x00\xc9\x17\x00\x00,\x00\x00\x00\xd4\x17\x00\x00-\x00\x00\x00\x01\x18\x00\x00\x0b\x00\x00\x00/\x18\x00\x00\x07\x00\x00\x00;\x18\x00\x00\x10\x00\x00\x00C\x18\x00\x00\x08\x00\x00\x00T\x18\x00\x00\t\x00\x00\x00]\x18\x00\x00\n\x00\x00\x00g\x18\x00\x00\n\x00\x00\x00r\x18\x00\x00\x07\x00\x00\x00}\x18\x00\x008\x00\x00\x00\x85\x18\x00\x00s\x00\x00\x00\xbe\x18\x00\x00\x0f\x00\x00\x002\x19\x00\x00\n\x00\x00\x00B\x19\x00\x00\x10\x00\x00\x00M\x19\x00\x00\x0f\x00\x00\x00^\x19\x00\x001\x00\x00\x00n\x19\x00\x004\x00\x00\x00\xa0\x19\x00\x00H\x00\x00\x00\xd5\x19\x00\x00\r\x00\x00\x00\x1e\x1a\x00\x00\xbc\x00\x00\x00,\x1a\x00\x00\t\x00\x00\x00\xe9\x1a\x00\x00\x1e\x00\x00\x00\xf3\x1a\x00\x00\x0c\x00\x00\x00\x12\x1b\x00\x00<\x00\x00\x00\x1f\x1b\x00\x00\x84\x00\x00\x00\\\x1b\x00\x00\x12\x00\x00\x00\xe1\x1b\x00\x00-\x00\x00\x00\xf4\x1b\x00\x00\x0c\x00\x00\x00"\x1c\x00\x00V\x00\x00\x00/\x1c\x00\x00r\x00\x00\x00\x86\x1c\x00\x00G\x00\x00\x00\xf9\x1c\x00\x00\x0e\x00\x00\x00A\x1d\x00\x00#\x00\x00\x00P\x1d\x00\x00\r\x00\x00\x00t\x1d\x00\x00^\x00\x00\x00\x82\x1d\x00\x00\x10\x00\x00\x00\xe1\x1d\x00\x00\x10\x00\x00\x00\xf2\x1d\x00\x00c\x00\x00\x00\x03\x1e\x00\x007\x00\x00\x00g\x1e\x00\x00!\x00\x00\x00\x9f\x1e\x00\x00d\x00\x00\x00\xc1\x1e\x00\x00\x17\x00\x00\x00&\x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00z\x00\x00\x00U\x1f\x00\x00+\x01\x00\x00\xd0\x1f\x00\x00\x07\x00\x00\x00\xfc \x00\x00\x13\x00\x00\x00\x04!\x00\x00\x85\x00\x00\x00\x18!\x00\x00\t\x00\x00\x00\x9e!\x00\x00\x9d\x00\x00\x00\xa8!\x00\x00&\x00\x00\x00F"\x00\x00v\x00\x00\x00m"\x00\x00\'\x00\x00\x00\xe4"\x00\x00"\x00\x00\x00\x0c#\x00\x00\x15\x00\x00\x00/#\x00\x00+\x00\x00\x00E#\x00\x00\x07\x00\x00\x00q#\x00\x00\x13\x00\x00\x00y#\x00\x00\xb4\x00\x00\x00\x8d#\x00\x002\x00\x00\x00B$\x00\x00\x14\x00\x00\x00u$\x00\x00\x04\x00\x00\x00\x8a$\x00\x00d\x00\x00\x00\x8f$\x00\x00\t\x00\x00\x00\xf4$\x00\x008\x01\x00\x00\xfe$\x00\x00\x05\x00\x00\x007&\x00\x00\x05\x00\x00\x00=&\x00\x00\x06\x00\x00\x00C&\x00\x00\x14\x00\x00\x00J&\x00\x00\x07\x00\x00\x00_&\x00\x00\x0e\x00\x00\x00g&\x00\x00 \x00\x00\x00v&\x00\x00%\x00\x00\x00\x97&\x00\x00\x12\x00\x00\x00\xbd&\x00\x00\r\x00\x00\x00\xd0&\x00\x00\x1b\x00\x00\x00\xde&\x00\x00\n\x00\x00\x00\xfa&\x00\x00\x0f\x00\x00\x00\x05\'\x00\x00\x08\x00\x00\x00\x15\'\x00\x00\r\x00\x00\x00\x1e\'\x00\x00\x0b\x00\x00\x00,\'\x00\x00\x15\x00\x00\x008\'\x00\x00\x0e\x00\x00\x00N\'\x00\x00\x07\x00\x00\x00]\'\x00\x00\x08\x00\x00\x00e\'\x00\x00\x13\x00\x00\x00n\'\x00\x00\x07\x00\x00\x00\x82\'\x00\x00\r\x00\x00\x00\x8a\'\x00\x00\n\x00\x00\x00\x98\'\x00\x00\r\x00\x00\x00\xa3\'\x00\x00\x03\x00\x00\x00\xb1\'\x00\x008\x00\x00\x00\xb5\'\x00\x00\x93\x02\x00\x00\xee\'\x00\x00x\x01\x00\x00\x82*\x00\x00\x01\x00\x00\x00\xfb+\x00\x00a\x00\x00\x00\xfd+\x00\x00\x10\x00\x00\x00_,\x00\x00\x18\x00\x00\x00p,\x00\x00?\x00\x00\x00\x89,\x00\x00;\x00\x00\x00\xc9,\x00\x00\x13\x00\x00\x00\x05-\x00\x00\x17\x00\x00\x00\x19-\x00\x00\x17\x00\x00\x001-\x00\x00\x13\x00\x00\x00I-\x00\x00\x07\x00\x00\x00]-\x00\x00\x04\x00\x00\x00e-\x00\x00\x0c\x00\x00\x00j-\x00\x00>\x00\x00\x00w-\x00\x00 \x00\x00\x00\xb6-\x00\x00\t\x00\x00\x00\xd7-\x00\x00\x16\x00\x00\x00\xe1-\x00\x00R\x00\x00\x00\xf8-\x00\x00!\x00\x00\x00K.\x00\x00\x1b\x00\x00\x00m.\x00\x00\x16\x00\x00\x00\x89.\x00\x00\x0e\x00\x00\x00\xa0.\x00\x00\t\x00\x00\x00\xaf.\x00\x00\r\x00\x00\x00\xb9.\x00\x00\x15\x00\x00\x00\xc7.\x00\x00\x13\x00\x00\x00\xdd.\x00\x00\x13\x00\x00\x00\xf1.\x00\x00\r\x00\x00\x00\x05/\x00\x00\x08\x00\x00\x00\x13/\x00\x00\x01\x00\x00\x00\x1c/\x00\x00\x06\x00\x00\x00\x1e/\x00\x00\x1d\x00\x00\x00%/\x00\x00\x1d\x00\x00\x00C/\x00\x00\x1c\x00\x00\x00a/\x00\x00.\x00\x00\x00~/\x00\x00M\x00\x00\x00\xad/\x00\x00\x07\x00\x00\x00\xfb/\x00\x00\x1f\x00\x00\x00\x030\x00\x00\x12\x00\x00\x00#0\x00\x00\x1d\x00\x00\x0060\x00\x00\x13\x00\x00\x00T0\x00\x00!\x00\x00\x00h0\x00\x00<\x01\x00\x00\x8a0\x00\x00[\x00\x00\x00\xc71\x00\x00&\x00\x00\x00#2\x00\x00\x06\x00\x00\x00J2\x00\x00\t\x00\x00\x00Q2\x00\x00\x1f\x00\x00\x00[2\x00\x00\x18\x00\x00\x00{2\x00\x00\x06\x00\x00\x00\x942\x00\x00:\x02\x00\x00\x9b2\x00\x00\x82\x00\x00\x00\xd64\x00\x00\x14\x00\x00\x00Y5\x00\x00\xcc\x00\x00\x00n5\x00\x00*\x00\x00\x00;6\x00\x00\n\x00\x00\x00f6\x00\x00=\x00\x00\x00q6\x00\x00@\x00\x00\x00\xaf6\x00\x00\x0b\x00\x00\x00\xf06\x00\x00\x07\x00\x00\x00\xfc6\x00\x00\x12\x00\x00\x00\x047\x00\x00\n\x00\x00\x00\x177\x00\x00\x0e\x00\x00\x00"7\x00\x00\x11\x00\x00\x0017\x00\x00\r\x00\x00\x00C7\x00\x00\x15\x00\x00\x00Q7\x00\x00S\x00\x00\x00g7\x00\x00\x92\x00\x00\x00\xbb7\x00\x00\x15\x00\x00\x00N8\x00\x00\x11\x00\x00\x00d8\x00\x00\x14\x00\x00\x00v8\x00\x00\x15\x00\x00\x00\x8b8\x00\x00"\x00\x00\x00\xa18\x00\x00J\x00\x00\x00\xc48\x00\x00Q\x00\x00\x00\x0f9\x00\x00\x0f\x00\x00\x00a9\x00\x00\xc6\x00\x00\x00q9\x00\x00\x0b\x00\x00\x008:\x00\x00#\x00\x00\x00D:\x00\x00\x11\x00\x00\x00h:\x00\x00;\x00\x00\x00z:\x00\x00\x92\x00\x00\x00\xb6:\x00\x00\x15\x00\x00\x00I;\x00\x00>\x00\x00\x00_;\x00\x00\x0e\x00\x00\x00\x9e;\x00\x00z\x00\x00\x00\xad;\x00\x00\x9e\x00\x00\x00(<\x00\x00P\x00\x00\x00\xc7<\x00\x00\x15\x00\x00\x00\x18=\x00\x00%\x00\x00\x00.=\x00\x00\x11\x00\x00\x00T=\x00\x00q\x00\x00\x00f=\x00\x00\x1c\x00\x00\x00\xd8=\x00\x00\x1c\x00\x00\x00\xf5=\x00\x00}\x00\x00\x00\x12>\x00\x00]\x00\x00\x00\x90>\x00\x002\x00\x00\x00\xee>\x00\x00v\x00\x00\x00!?\x00\x00\x15\x00\x00\x00\x98?\x00\x00\x15\x00\x00\x00\xae?\x00\x00v\x00\x00\x00\xc4?\x00\x00\x83\x01\x00\x00;@\x00\x00\x0b\x00\x00\x00\xbfA\x00\x00#\x00\x00\x00\xcbA\x00\x00\xab\x00\x00\x00\xefA\x00\x00\t\x00\x00\x00\x9bB\x00\x00\xb5\x00\x00\x00\xa5B\x00\x00.\x00\x00\x00[C\x00\x00\x99\x00\x00\x00\x8aC\x00\x00\'\x00\x00\x00$D\x00\x00"\x00\x00\x00LD\x00\x00\x1f\x00\x00\x00oD\x00\x00=\x00\x00\x00\x8fD\x00\x00\t\x00\x00\x00\xcdD\x00\x00 \x00\x00\x00\xd7D\x00\x00\xe2\x00\x00\x00\xf8D\x00\x00B\x00\x00\x00\xdbE\x00\x00\x1d\x00\x00\x00\x1eF\x00\x00\x08\x00\x00\x00Changes will only take affect after a restart.\x00\n

For help visit libprs500.kovidgoyal.net

libprs500: %1 by Kovid Goyal
%2

\x00\n

\x00A\x00A regular expression. tags whoose href matches will be ignored. Defaults to %default\x00Active Jobs\x00Add Ta&gs: \x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Author S&ort: \x00Author So&rt:\x00Available Formats\x00Back\x00Book \x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Category\x00Change &cover image:\x00Change the author(s) of this book. Multiple authors should be separated by a comma\x00Change the publisher of this book\x00Change the title of this book\x00Chapter Detection\x00Choose Format\x00Comments\x00Configure\x00Configure Viewer\x00Convert E-books\x00Convert to LRF\x00Created by \x00Del\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetching metadata for %1\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Forward\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00List of known series. You can add new series.\x00Look & Feel\x00Matches\x00Meta information\x00Metadata\x00Next Page\x00Next match\x00Open ebook\x00Options\x00Output file name. Default is derived from input filename\x00Override the CSS. Can be either a path to a CSS stylesheet or a string. If it is a string it is interpreted as CSS.\x00Override
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Publisher\x00Rating of this book. 0-5 stars\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Save to disk\x00Search the list of books by title or author

Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments

Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Separate paragraphs by blank lines.\x00Series index.\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from
ISBNdb.com to get an access key.\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Ta&gs: \x00Tag based detection\x00Tags categorize the book. This is particularly useful while searching.

They can be any words or phrases, separated by commas.\x00TextLabel\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unknown\x00Use &metadata cover\x00Use the element from the OPF file to determine the order in which the HTML files are appended to the LRF. The .opf file must be in the same directory as the base HTML file.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00View\x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00libprs500\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2007-11-08 14:39+PST\nPO-Revision-Date: 2007-11-10 23:39+0100\nLast-Translator: S. Dorscht \nLanguage-Team: de\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00Punkt\x00Pixel\x00Sterne\x00&Zugriffsschl\xc3\xbcssel;\x00&Autor:\x00&Unterer Rand:\x00Kapitel Ermittlung &deaktivieren\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00&Seitenumbruch vor Element:\x00&Password:\x00&Vorbearbeiten:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00Kopfzeile an&zeigen\x00&Titel:\x00&Oberer Rand:\x00&Username:\x00&Wortabstand:\x00...\x00\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00\n

Hilfe finden Sie unter libprs500.kovidgoyal.net

libprs500: %1 von Kovid Goyal
%2

\x00\n

\x00A\x00Ein regul\xc3\xa4rer Ausdruck. tags, deren Verkn\xc3\xbcpfungen ignoriert werden. Voreinstellung %default\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Kopfzeile mit Titel und Autornamen f\xc3\xbcr alle Seiten einf\xc3\xbcgen. \x00Ein neues Format f\xc3\xbcr dieses Buch zur Datenbank hinzuf\xc3\xbcgen\x00B\xc3\xbccher hinzuf\xc3\xbcgen\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Verf\xc3\xbcgbare Formate\x00Zur\xc3\xbcck\x00Buch\x00Umschlagbild\x00Unterer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nach Umschlagbild durchsuchen...\x00Kategorie\x00&Umschlagbild \xc3\xa4ndern:\x00Autor dieses Buches \xc3\xa4ndern. Mehrere Autoren sollten durch Kommata getrennt werden\x00Herausgeber dieses Buches \xc3\xa4ndern\x00Titel dieses Buches \xc3\xa4ndern\x00Ermittlung der Kapitel\x00Format w\xc3\xa4hlen\x00Bemerkung\x00Konfigurieren\x00Viewer konfigurieren \x00In eBooks umwandeln\x00Zu LRF konvertieren\x00Erstellt von \x00L\xc3\xb6schen\x00E\x00FEHLER\x00Meta-Informationen bearbeiten\x00Meta-Informationen bearbeiten\x00Meta-Informationen editieren\x00Automatische &Rotation von Bildern einschalten\x00Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind.\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Meta-Daten abrufen f\xc3\xbcr %1\x00Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das Format dieser Einstellung ist tagname regexp,attribute name,attribute value regexp. Um zum Beispiel alle "heading" Elemente, die das Attribut class="chapter" anzupassen, w\xc3\xbcrden Sie "h\\d,class,chapter" verwenden. Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Weiter\x00Kopfzeile\x00Hilfe f\xc3\xbcr das jeweilige Objekt\x00Mit Trennstrich versehen\x00IS&BN:\x00Wenn html2lrf keine Seitenumbr\xc3\xbcche in der HTML Datei und keine Kapitel-\xc3\x9cberschriften finden kann, f\xc3\xbcgt es automatisch Seitenumbr\xc3\xbcche vor Elementen ein, deren Namen mit diesem regul\xc3\xa4ren Ausdruck entsprechen. Voreinstellung ist %default. Sie k\xc3\xb6nnen dies deaktivieren indem sie den regul\xc3\xa4ren Ausdruck "$" verwenden. Der Zweck dieser Einstellung ist der Versuch sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das Umbl\xc3\xa4ttern der in der LRF Datei verlangsamt. Diese Einstellung wird ignoriert, wenn die aktuelle Seite nur wenige Elemente enth\xc3\xa4lt.\x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00&Tabellen ignorieren\x00Schriftgr\xc3\xb6\xc3\x9fe um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt vergr\xc3\xb6\xc3\x9fern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ angegeben wird, wird die Schriftgr\xc3\xb6\xc3\x9fe verkleinert.\x00&Leerzeilen zwischen Paragraphen einf\xc3\xbcgen\x00LRF Viewer\x00Linker Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Liste der bekannten Serien. Sie k\xc3\xb6nnen neue Serien hinzuf\xc3\xbcgen.\x00Look & Feel\x00Treffer\x00Meta-Informationen\x00Meta-Daten\x00N\xc3\xa4chste Seite\x00N\xc3\xa4chster Treffer\x00eBook \xc3\xb6ffnen\x00Auswahlm\xc3\xb6glichkeiten\x00Ausgabedateiname. Die Voreinstellung leitet sich vom urspr\xc3\xbcnglichen Dateinamen ab.\x00CSS \xc3\xbcberschreiben. Es kann ein Pfad zu einem CSS Stylesheet oder eine Zeichenfolge angegeben werden. Zeichenfolgen werden als CSS interpretiert. \x00CSS
\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort erforderlich\x00Pfad zur Datei des Umschlagbildes \x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Automatisches Einf\xc3\xbcgen von Seitenumbr\xc3\xbcchen vor ermittelten Kapiteln verhindern.\x00Vorherige Seite\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Herausgeber\x00Bewertung dieses Buches: 0-5 Sterne\x00B\xc3\xbccher entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen.\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Auf HD sichern\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen

Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen

Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00An Reader \xc3\xbcbertragen\x00Paragraphen durch Leerzeilen trennen.\x00Index der Serien.\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00W\xc3\xa4hlen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch den Titel ersetzt. Die Voreinstellung ist %default\x00W\xc3\xa4hlen Sie den Abstand in Punkt zwischen einzelnen W\xc3\xb6rtern. Die Voreinstellung ist %default\x00Geben Sie den Titel an. Voreinstellung: Dateiname.\x00Kostenloses Konto anmelden bei
ISBNdb.com um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00&Etiketten:\x00Auf Etiketten basierende Ermittlung\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern.

Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00TextLabel\x00H\xc3\xb6chstzahl der rekursiven Verkn\xc3\xbcpfungen (Hyperlinks). Der Wert 0 bedeutet, dass Verkn\xc3\xbcpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle tags ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00Der regul\xc3\xa4re Ausdruck zur Ermittlung von Kapitel\xc3\xbcberschriften. Es wird nach mit (h1) - (h6) angegebenen \xc3\x9cberschriften gesucht. Voreinstellung %default\x00Serifenlose Schriftartfamilie einbetten\x00Serife Schriftartfamilie einbetten\x00Auf Titel basierende Ermittlung\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Unbekannt\x00Benutze &Meta-Daten Umschlagbild\x00Das Element der OPF Datei benutzen um die Reihenfolge zu bestimmen, in der die HTML Dateien zur LRF Datei hinzugef\xc3\xbcgt werden. Die OPF Datei muss sich im gleichen Verzeichnis wie die urspr\xc3\xbcngliche HTML Datei befinden.\x00Benutzen Sie diese Einstellung bei HTML Dateien von Book Designer.\x00Wei\xc3\x9fen Hintergrund verwenden\x00Vorschau\x00Sie m\xc3\xbcssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml erstellt wurden, verarbeiten wollen, sonst schl\xc3\xa4gt die Konvertierung fehl.\x00libprs500\x00', 'sl': '\xde\x12\x04\x95\x00\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x00\x00\x00(\x01\x00\x00-\x00\x00\x00\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2007-11-08 14:39+PST\nPO-Revision-Date: 2007-11-08 14:39+PST\nLast-Translator: Automatically generated\nLanguage-Team: sl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00'} \ No newline at end of file +translations = {'de': '\xde\x12\x04\x95\x00\x00\x00\x00\x9d\x00\x00\x00\x1c\x00\x00\x00\x04\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\t\x00\x00\x04\x00\x00\x00\xed\t\x00\x00\x03\x00\x00\x00\xf2\t\x00\x00\x06\x00\x00\x00\xf6\t\x00\x00\x0c\x00\x00\x00\xfd\t\x00\x00\x0c\x00\x00\x00\n\n\x00\x00\x0f\x00\x00\x00\x17\n\x00\x00\x1a\x00\x00\x00\'\n\x00\x00\x1d\x00\x00\x00B\n\x00\x00\x0f\x00\x00\x00`\n\x00\x00\r\x00\x00\x00p\n\x00\x00\x17\x00\x00\x00~\n\x00\x00\n\x00\x00\x00\x96\n\x00\x00\x0c\x00\x00\x00\xa1\n\x00\x00\t\x00\x00\x00\xae\n\x00\x00\x0c\x00\x00\x00\xb8\n\x00\x00\x08\x00\x00\x00\xc5\n\x00\x00\x14\x00\x00\x00\xce\n\x00\x00\x0e\x00\x00\x00\xe3\n\x00\x00\x08\x00\x00\x00\xf2\n\x00\x00\x08\x00\x00\x00\xfb\n\x00\x00\x0c\x00\x00\x00\x04\x0b\x00\x00\x08\x00\x00\x00\x11\x0b\x00\x00\x0c\x00\x00\x00\x1a\x0b\x00\x00\n\x00\x00\x00\'\x0b\x00\x00\x0e\x00\x00\x002\x0b\x00\x00\x03\x00\x00\x00A\x0b\x00\x001\x00\x00\x00E\x0b\x00\x00\x8a\x02\x00\x00w\x0b\x00\x00x\x01\x00\x00\x02\x0e\x00\x00\x01\x00\x00\x00{\x0f\x00\x00X\x00\x00\x00}\x0f\x00\x00\x0b\x00\x00\x00\xd6\x0f\x00\x00\x0b\x00\x00\x00\xe2\x0f\x00\x004\x00\x00\x00\xee\x0f\x00\x00.\x00\x00\x00#\x10\x00\x00\t\x00\x00\x00R\x10\x00\x00\x0e\x00\x00\x00\\\x10\x00\x00\r\x00\x00\x00k\x10\x00\x00\t\x00\x00\x00y\x10\x00\x00\x11\x00\x00\x00\x83\x10\x00\x00\x04\x00\x00\x00\x95\x10\x00\x00\x05\x00\x00\x00\x9a\x10\x00\x00\n\x00\x00\x00\xa0\x10\x00\x00.\x00\x00\x00\xab\x10\x00\x005\x00\x00\x00\xda\x10\x00\x00\x08\x00\x00\x00\x10\x11\x00\x00\x14\x00\x00\x00\x19\x11\x00\x00R\x00\x00\x00.\x11\x00\x00!\x00\x00\x00\x81\x11\x00\x00\x1d\x00\x00\x00\xa3\x11\x00\x00\x11\x00\x00\x00\xc1\x11\x00\x00\r\x00\x00\x00\xd3\x11\x00\x00\x08\x00\x00\x00\xe1\x11\x00\x00\t\x00\x00\x00\xea\x11\x00\x00\x10\x00\x00\x00\xf4\x11\x00\x00\x0f\x00\x00\x00\x05\x12\x00\x00\x0e\x00\x00\x00\x15\x12\x00\x00\x0b\x00\x00\x00$\x12\x00\x00\x03\x00\x00\x000\x12\x00\x00\x01\x00\x00\x004\x12\x00\x00\x05\x00\x00\x006\x12\x00\x00\x15\x00\x00\x00<\x12\x00\x00\x15\x00\x00\x00R\x12\x00\x00\x15\x00\x00\x00h\x12\x00\x00\x1f\x00\x00\x00~\x12\x00\x00C\x00\x00\x00\x9e\x12\x00\x00\x05\x00\x00\x00\xe2\x12\x00\x00\x1d\x00\x00\x00\xe8\x12\x00\x00\x0e\x00\x00\x00\x06\x13\x00\x00\x1a\x00\x00\x00\x15\x13\x00\x00\n\x00\x00\x000\x13\x00\x00\x1f\x00\x00\x00;\x13\x00\x00\x1d\x01\x00\x00[\x13\x00\x00J\x00\x00\x00y\x14\x00\x00#\x00\x00\x00\xc4\x14\x00\x00\x07\x00\x00\x00\xe8\x14\x00\x00\x06\x00\x00\x00\xf0\x14\x00\x00\x0c\x00\x00\x00\xf7\x14\x00\x00\t\x00\x00\x00\x04\x15\x00\x00\x06\x00\x00\x00\x0e\x15\x00\x00\xdc\x01\x00\x00\x15\x15\x00\x00a\x00\x00\x00\xf2\x16\x00\x00\x0e\x00\x00\x00T\x17\x00\x00\xa8\x00\x00\x00c\x17\x00\x00&\x00\x00\x00\x0c\x18\x00\x00\n\x00\x00\x003\x18\x00\x00,\x00\x00\x00>\x18\x00\x00-\x00\x00\x00k\x18\x00\x00\x0b\x00\x00\x00\x99\x18\x00\x00\x07\x00\x00\x00\xa5\x18\x00\x00\x10\x00\x00\x00\xad\x18\x00\x00\x08\x00\x00\x00\xbe\x18\x00\x00\t\x00\x00\x00\xc7\x18\x00\x00\n\x00\x00\x00\xd1\x18\x00\x00\n\x00\x00\x00\xdc\x18\x00\x00\x07\x00\x00\x00\xe7\x18\x00\x008\x00\x00\x00\xef\x18\x00\x00s\x00\x00\x00(\x19\x00\x00\x0f\x00\x00\x00\x9c\x19\x00\x00\n\x00\x00\x00\xac\x19\x00\x00\x10\x00\x00\x00\xb7\x19\x00\x00\x0f\x00\x00\x00\xc8\x19\x00\x001\x00\x00\x00\xd8\x19\x00\x004\x00\x00\x00\n\x1a\x00\x00H\x00\x00\x00?\x1a\x00\x00\r\x00\x00\x00\x88\x1a\x00\x00\xbc\x00\x00\x00\x96\x1a\x00\x00\t\x00\x00\x00S\x1b\x00\x00\x06\x00\x00\x00]\x1b\x00\x00\x1e\x00\x00\x00d\x1b\x00\x00\x0c\x00\x00\x00\x83\x1b\x00\x00<\x00\x00\x00\x90\x1b\x00\x00\x84\x00\x00\x00\xcd\x1b\x00\x00\x12\x00\x00\x00R\x1c\x00\x00-\x00\x00\x00e\x1c\x00\x00\x0c\x00\x00\x00\x93\x1c\x00\x00V\x00\x00\x00\xa0\x1c\x00\x00r\x00\x00\x00\xf7\x1c\x00\x00G\x00\x00\x00j\x1d\x00\x00\x0e\x00\x00\x00\xb2\x1d\x00\x00#\x00\x00\x00\xc1\x1d\x00\x00\r\x00\x00\x00\xe5\x1d\x00\x00\x1b\x00\x00\x00\xf3\x1d\x00\x00\x1a\x00\x00\x00\x0f\x1e\x00\x00^\x00\x00\x00*\x1e\x00\x00\x10\x00\x00\x00\x89\x1e\x00\x00\x10\x00\x00\x00\x9a\x1e\x00\x00c\x00\x00\x00\xab\x1e\x00\x007\x00\x00\x00\x0f\x1f\x00\x00!\x00\x00\x00G\x1f\x00\x00d\x00\x00\x00i\x1f\x00\x00\x17\x00\x00\x00\xce\x1f\x00\x00\x16\x00\x00\x00\xe6\x1f\x00\x00z\x00\x00\x00\xfd\x1f\x00\x00+\x01\x00\x00x \x00\x00\x07\x00\x00\x00\xa4!\x00\x00\x13\x00\x00\x00\xac!\x00\x00\x04\x00\x00\x00\xc0!\x00\x00\x85\x00\x00\x00\xc5!\x00\x00\t\x00\x00\x00K"\x00\x00\x9d\x00\x00\x00U"\x00\x00&\x00\x00\x00\xf3"\x00\x00v\x00\x00\x00\x1a#\x00\x00\'\x00\x00\x00\x91#\x00\x00"\x00\x00\x00\xb9#\x00\x00\x05\x00\x00\x00\xdc#\x00\x00\x15\x00\x00\x00\xe2#\x00\x00+\x00\x00\x00\xf8#\x00\x00\x07\x00\x00\x00$$\x00\x00\x13\x00\x00\x00,$\x00\x00\xb4\x00\x00\x00@$\x00\x002\x00\x00\x00\xf5$\x00\x00\x14\x00\x00\x00(%\x00\x00\x04\x00\x00\x00=%\x00\x00d\x00\x00\x00B%\x00\x00\t\x00\x00\x00\xa7%\x00\x008\x01\x00\x00\xb1%\x00\x00\x05\x00\x00\x00\xea&\x00\x00\x05\x00\x00\x00\xf0&\x00\x00\x06\x00\x00\x00\xf6&\x00\x00\x14\x00\x00\x00\xfd&\x00\x00\x07\x00\x00\x00\x12\'\x00\x00\x0e\x00\x00\x00\x1a\'\x00\x00 \x00\x00\x00)\'\x00\x00%\x00\x00\x00J\'\x00\x00\x12\x00\x00\x00p\'\x00\x00\r\x00\x00\x00\x83\'\x00\x00\x1b\x00\x00\x00\x91\'\x00\x00\n\x00\x00\x00\xad\'\x00\x00\x0f\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xc8\'\x00\x00\r\x00\x00\x00\xd1\'\x00\x00\x0b\x00\x00\x00\xdf\'\x00\x00\x15\x00\x00\x00\xeb\'\x00\x00\x0e\x00\x00\x00\x01(\x00\x00\x07\x00\x00\x00\x10(\x00\x00\x08\x00\x00\x00\x18(\x00\x00\x13\x00\x00\x00!(\x00\x00\x07\x00\x00\x005(\x00\x00\r\x00\x00\x00=(\x00\x00\n\x00\x00\x00K(\x00\x00\r\x00\x00\x00V(\x00\x00\x03\x00\x00\x00d(\x00\x008\x00\x00\x00h(\x00\x00\x93\x02\x00\x00\xa1(\x00\x00x\x01\x00\x005+\x00\x00\x01\x00\x00\x00\xae,\x00\x00a\x00\x00\x00\xb0,\x00\x00\x10\x00\x00\x00\x12-\x00\x00\x18\x00\x00\x00#-\x00\x00?\x00\x00\x00<-\x00\x00;\x00\x00\x00|-\x00\x00\x13\x00\x00\x00\xb8-\x00\x00\x17\x00\x00\x00\xcc-\x00\x00\x17\x00\x00\x00\xe4-\x00\x00\x08\x00\x00\x00\xfc-\x00\x00\x13\x00\x00\x00\x05.\x00\x00\x07\x00\x00\x00\x19.\x00\x00\x04\x00\x00\x00!.\x00\x00\x0c\x00\x00\x00&.\x00\x00>\x00\x00\x003.\x00\x00 \x00\x00\x00r.\x00\x00\t\x00\x00\x00\x93.\x00\x00\x16\x00\x00\x00\x9d.\x00\x00R\x00\x00\x00\xb4.\x00\x00!\x00\x00\x00\x07/\x00\x00\x1b\x00\x00\x00)/\x00\x00\x16\x00\x00\x00E/\x00\x00\x0e\x00\x00\x00\\/\x00\x00\t\x00\x00\x00k/\x00\x00\r\x00\x00\x00u/\x00\x00\x15\x00\x00\x00\x83/\x00\x00\x13\x00\x00\x00\x99/\x00\x00\x13\x00\x00\x00\xad/\x00\x00\r\x00\x00\x00\xc1/\x00\x00\x08\x00\x00\x00\xcf/\x00\x00\x01\x00\x00\x00\xd8/\x00\x00\x06\x00\x00\x00\xda/\x00\x00\x1d\x00\x00\x00\xe1/\x00\x00\x1d\x00\x00\x00\xff/\x00\x00\x1c\x00\x00\x00\x1d0\x00\x00.\x00\x00\x00:0\x00\x00M\x00\x00\x00i0\x00\x00\x07\x00\x00\x00\xb70\x00\x00\x1f\x00\x00\x00\xbf0\x00\x00\x12\x00\x00\x00\xdf0\x00\x00\x1d\x00\x00\x00\xf20\x00\x00\x13\x00\x00\x00\x101\x00\x00!\x00\x00\x00$1\x00\x00<\x01\x00\x00F1\x00\x00[\x00\x00\x00\x832\x00\x00&\x00\x00\x00\xdf2\x00\x00\x06\x00\x00\x00\x063\x00\x00\t\x00\x00\x00\r3\x00\x00\x1f\x00\x00\x00\x173\x00\x00\x18\x00\x00\x0073\x00\x00\x06\x00\x00\x00P3\x00\x00:\x02\x00\x00W3\x00\x00\x82\x00\x00\x00\x925\x00\x00\x14\x00\x00\x00\x156\x00\x00\xcc\x00\x00\x00*6\x00\x00*\x00\x00\x00\xf76\x00\x00\n\x00\x00\x00"7\x00\x00=\x00\x00\x00-7\x00\x00@\x00\x00\x00k7\x00\x00\x0b\x00\x00\x00\xac7\x00\x00\x07\x00\x00\x00\xb87\x00\x00\x12\x00\x00\x00\xc07\x00\x00\n\x00\x00\x00\xd37\x00\x00\x0e\x00\x00\x00\xde7\x00\x00\x11\x00\x00\x00\xed7\x00\x00\r\x00\x00\x00\xff7\x00\x00\x15\x00\x00\x00\r8\x00\x00S\x00\x00\x00#8\x00\x00\x92\x00\x00\x00w8\x00\x00\x15\x00\x00\x00\n9\x00\x00\x11\x00\x00\x00 9\x00\x00\x14\x00\x00\x0029\x00\x00\x15\x00\x00\x00G9\x00\x00"\x00\x00\x00]9\x00\x00J\x00\x00\x00\x809\x00\x00Q\x00\x00\x00\xcb9\x00\x00\x0f\x00\x00\x00\x1d:\x00\x00\xc6\x00\x00\x00-:\x00\x00\x0b\x00\x00\x00\xf4:\x00\x00\t\x00\x00\x00\x00;\x00\x00#\x00\x00\x00\n;\x00\x00\x11\x00\x00\x00.;\x00\x00;\x00\x00\x00@;\x00\x00\x92\x00\x00\x00|;\x00\x00\x15\x00\x00\x00\x0f<\x00\x00>\x00\x00\x00%<\x00\x00\x0e\x00\x00\x00d<\x00\x00z\x00\x00\x00s<\x00\x00\x9e\x00\x00\x00\xee<\x00\x00P\x00\x00\x00\x8d=\x00\x00\x15\x00\x00\x00\xde=\x00\x00%\x00\x00\x00\xf4=\x00\x00\x11\x00\x00\x00\x1a>\x00\x00\x15\x00\x00\x00,>\x00\x00\x15\x00\x00\x00B>\x00\x00q\x00\x00\x00X>\x00\x00\x1c\x00\x00\x00\xca>\x00\x00\x1c\x00\x00\x00\xe7>\x00\x00}\x00\x00\x00\x04?\x00\x00]\x00\x00\x00\x82?\x00\x002\x00\x00\x00\xe0?\x00\x00v\x00\x00\x00\x13@\x00\x00\x15\x00\x00\x00\x8a@\x00\x00\x15\x00\x00\x00\xa0@\x00\x00v\x00\x00\x00\xb6@\x00\x00\x83\x01\x00\x00-A\x00\x00\x0b\x00\x00\x00\xb1B\x00\x00#\x00\x00\x00\xbdB\x00\x00\t\x00\x00\x00\xe1B\x00\x00\xab\x00\x00\x00\xebB\x00\x00\t\x00\x00\x00\x97C\x00\x00\xb5\x00\x00\x00\xa1C\x00\x00.\x00\x00\x00WD\x00\x00\x99\x00\x00\x00\x86D\x00\x00\'\x00\x00\x00 E\x00\x00"\x00\x00\x00HE\x00\x00\x05\x00\x00\x00kE\x00\x00\x1f\x00\x00\x00qE\x00\x00=\x00\x00\x00\x91E\x00\x00\t\x00\x00\x00\xcfE\x00\x00 \x00\x00\x00\xd9E\x00\x00\xe2\x00\x00\x00\xfaE\x00\x00B\x00\x00\x00\xddF\x00\x00\x1d\x00\x00\x00 G\x00\x00\x08\x00\x00\x00>G\x00\x00\x92\x00\x00\x00GG\x00\x00\t\x00\x00\x00\xdaG\x00\x00\x00 pts\x00 px\x00 stars\x00&Access Key;\x00&Author(s): \x00&Bottom Margin:\x00&Disable chapter detection\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Show header\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00Changes will only take affect after a restart.\x00\n

For help visit libprs500.kovidgoyal.net

libprs500: %1 by Kovid Goyal
%2

\x00\n

\x00A\x00A regular expression. tags whoose href matches will be ignored. Defaults to %default\x00Active Jobs\x00Add Ta&gs: \x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Available Formats\x00Back\x00Book \x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Category\x00Change &cover image:\x00Change the author(s) of this book. Multiple authors should be separated by a comma\x00Change the publisher of this book\x00Change the title of this book\x00Chapter Detection\x00Choose Format\x00Comments\x00Configure\x00Configure Viewer\x00Convert E-books\x00Convert to LRF\x00Created by \x00Del\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetching metadata for %1\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Forward\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00List of known series. You can add new series.\x00Look & Feel\x00Matches\x00Meta information\x00Metadata\x00Next Page\x00Next match\x00Open ebook\x00Options\x00Output file name. Default is derived from input filename\x00Override the CSS. Can be either a path to a CSS stylesheet or a string. If it is a string it is interpreted as CSS.\x00Override
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Save to disk\x00Search the list of books by title or author

Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments

Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Separate paragraphs by blank lines.\x00Series index.\x00Set sort key for the author\x00Set sort key for the title\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from
ISBNdb.com to get an access key.\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching.

They can be any words or phrases, separated by commas.\x00TextLabel\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unknown\x00Use &metadata cover\x00Use the element from the OPF file to determine the order in which the HTML files are appended to the LRF. The .opf file must be in the same directory as the base HTML file.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00View\x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00libprs500\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2007-11-11 08:02+PST\nPO-Revision-Date: 2007-11-10 23:39+0100\nLast-Translator: S. Dorscht \nLanguage-Team: de\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00Punkt\x00Pixel\x00Sterne\x00&Zugriffsschl\xc3\xbcssel;\x00&Autor:\x00&Unterer Rand:\x00Kapitel Ermittlung &deaktivieren\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00&Seitenumbruch vor Element:\x00&Password:\x00&Vorbearbeiten:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00Kopfzeile an&zeigen\x00&Titel:\x00&Oberer Rand:\x00&Username:\x00&Wortabstand:\x00...\x00\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00\n

Hilfe finden Sie unter libprs500.kovidgoyal.net

libprs500: %1 von Kovid Goyal
%2

\x00\n

\x00A\x00Ein regul\xc3\xa4rer Ausdruck. tags, deren Verkn\xc3\xbcpfungen ignoriert werden. Voreinstellung %default\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Kopfzeile mit Titel und Autornamen f\xc3\xbcr alle Seiten einf\xc3\xbcgen. \x00Ein neues Format f\xc3\xbcr dieses Buch zur Datenbank hinzuf\xc3\xbcgen\x00B\xc3\xbccher hinzuf\xc3\xbcgen\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Autor(s)\x00Verf\xc3\xbcgbare Formate\x00Zur\xc3\xbcck\x00Buch\x00Umschlagbild\x00Unterer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nach Umschlagbild durchsuchen...\x00Kategorie\x00&Umschlagbild \xc3\xa4ndern:\x00Autor dieses Buches \xc3\xa4ndern. Mehrere Autoren sollten durch Kommata getrennt werden\x00Herausgeber dieses Buches \xc3\xa4ndern\x00Titel dieses Buches \xc3\xa4ndern\x00Ermittlung der Kapitel\x00Format w\xc3\xa4hlen\x00Bemerkung\x00Konfigurieren\x00Viewer konfigurieren \x00In eBooks umwandeln\x00Zu LRF konvertieren\x00Erstellt von \x00L\xc3\xb6schen\x00E\x00FEHLER\x00Meta-Informationen bearbeiten\x00Meta-Informationen bearbeiten\x00Meta-Informationen editieren\x00Automatische &Rotation von Bildern einschalten\x00Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind.\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Meta-Daten abrufen f\xc3\xbcr %1\x00Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das Format dieser Einstellung ist tagname regexp,attribute name,attribute value regexp. Um zum Beispiel alle "heading" Elemente, die das Attribut class="chapter" anzupassen, w\xc3\xbcrden Sie "h\\d,class,chapter" verwenden. Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Weiter\x00Kopfzeile\x00Hilfe f\xc3\xbcr das jeweilige Objekt\x00Mit Trennstrich versehen\x00IS&BN:\x00Wenn html2lrf keine Seitenumbr\xc3\xbcche in der HTML Datei und keine Kapitel-\xc3\x9cberschriften finden kann, f\xc3\xbcgt es automatisch Seitenumbr\xc3\xbcche vor Elementen ein, deren Namen mit diesem regul\xc3\xa4ren Ausdruck entsprechen. Voreinstellung ist %default. Sie k\xc3\xb6nnen dies deaktivieren indem sie den regul\xc3\xa4ren Ausdruck "$" verwenden. Der Zweck dieser Einstellung ist der Versuch sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das Umbl\xc3\xa4ttern der in der LRF Datei verlangsamt. Diese Einstellung wird ignoriert, wenn die aktuelle Seite nur wenige Elemente enth\xc3\xa4lt.\x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00&Tabellen ignorieren\x00Schriftgr\xc3\xb6\xc3\x9fe um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt vergr\xc3\xb6\xc3\x9fern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ angegeben wird, wird die Schriftgr\xc3\xb6\xc3\x9fe verkleinert.\x00&Leerzeilen zwischen Paragraphen einf\xc3\xbcgen\x00LRF Viewer\x00Linker Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Liste der bekannten Serien. Sie k\xc3\xb6nnen neue Serien hinzuf\xc3\xbcgen.\x00Look & Feel\x00Treffer\x00Meta-Informationen\x00Meta-Daten\x00N\xc3\xa4chste Seite\x00N\xc3\xa4chster Treffer\x00eBook \xc3\xb6ffnen\x00Auswahlm\xc3\xb6glichkeiten\x00Ausgabedateiname. Die Voreinstellung leitet sich vom urspr\xc3\xbcnglichen Dateinamen ab.\x00CSS \xc3\xbcberschreiben. Es kann ein Pfad zu einem CSS Stylesheet oder eine Zeichenfolge angegeben werden. Zeichenfolgen werden als CSS interpretiert. \x00CSS
\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort erforderlich\x00Pfad zur Datei des Umschlagbildes \x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Automatisches Einf\xc3\xbcgen von Seitenumbr\xc3\xbcchen vor ermittelten Kapiteln verhindern.\x00Vorherige Seite\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00B\xc3\xbccher entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen.\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Auf HD sichern\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen

Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen

Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00An Reader \xc3\xbcbertragen\x00Paragraphen durch Leerzeilen trennen.\x00Index der Serien.\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00W\xc3\xa4hlen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch den Titel ersetzt. Die Voreinstellung ist %default\x00W\xc3\xa4hlen Sie den Abstand in Punkt zwischen einzelnen W\xc3\xb6rtern. Die Voreinstellung ist %default\x00Geben Sie den Titel an. Voreinstellung: Dateiname.\x00Kostenloses Konto anmelden bei
ISBNdb.com um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00&Etiketten:\x00Auf Etiketten basierende Ermittlung\x00Etiketten\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern.

Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00TextLabel\x00H\xc3\xb6chstzahl der rekursiven Verkn\xc3\xbcpfungen (Hyperlinks). Der Wert 0 bedeutet, dass Verkn\xc3\xbcpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle tags ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00Der regul\xc3\xa4re Ausdruck zur Ermittlung von Kapitel\xc3\xbcberschriften. Es wird nach mit (h1) - (h6) angegebenen \xc3\x9cberschriften gesucht. Voreinstellung %default\x00Serifenlose Schriftartfamilie einbetten\x00Serife Schriftartfamilie einbetten\x00Titel\x00Auf Titel basierende Ermittlung\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Unbekannt\x00Benutze &Meta-Daten Umschlagbild\x00Das Element der OPF Datei benutzen um die Reihenfolge zu bestimmen, in der die HTML Dateien zur LRF Datei hinzugef\xc3\xbcgt werden. Die OPF Datei muss sich im gleichen Verzeichnis wie die urspr\xc3\xbcngliche HTML Datei befinden.\x00Benutzen Sie diese Einstellung bei HTML Dateien von Book Designer.\x00Wei\xc3\x9fen Hintergrund verwenden\x00Vorschau\x00Sie m\xc3\xbcssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml erstellt wurden, verarbeiten wollen, sonst schl\xc3\xa4gt die Konvertierung fehl.\x00libprs500\x00', 'sl': '\xde\x12\x04\x95\x00\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x00\x00\x00(\x01\x00\x00-\x00\x00\x00\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2007-11-11 08:02+PST\nPO-Revision-Date: 2007-11-08 14:39+PST\nLast-Translator: Automatically generated\nLanguage-Team: sl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00'} \ No newline at end of file diff --git a/src/libprs500/translations/de.po b/src/libprs500/translations/de.po index c1f7681848..a992a28edf 100644 --- a/src/libprs500/translations/de.po +++ b/src/libprs500/translations/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libprs500 0.4.17\n" -"POT-Creation-Date: 2007-11-08 14:39+PST\n" +"POT-Creation-Date: 2007-11-11 08:02+PST\n" "PO-Revision-Date: 2007-11-10 23:39+0100\n" "Last-Translator: S. Dorscht \n" "Language-Team: de\n" @@ -23,8 +23,12 @@ msgid "Set the title. Default: filename." msgstr "Geben Sie den Titel an. Voreinstellung: Dateiname." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 -msgid "Set the author(s). Multiple authors should be set as a comma separated list. Default: %default" -msgstr "Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default" +msgid "" +"Set the author(s). Multiple authors should be set as a comma separated list. " +"Default: %default" +msgstr "" +"Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt " +"angegeben werden. Voreinstellung: %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:96 msgid "Unknown" @@ -47,6 +51,7 @@ msgid "Sort key for the author" msgstr "Sortierung nach Autor" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:106 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:317 msgid "Publisher" msgstr "Herausgeber" @@ -55,28 +60,47 @@ msgid "Path to file containing image to be used as cover" msgstr "Pfad zur Datei des Umschlagbildes " #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 -msgid "If there is a cover graphic detected in the source file, use that instead of the specified cover." -msgstr "Falls die Quelldatei ein Umschlagbild enthält, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. " +msgid "" +"If there is a cover graphic detected in the source file, use that instead of " +"the specified cover." +msgstr "" +"Falls die Quelldatei ein Umschlagbild enthält, das Umschlagbild der " +"Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. " #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 msgid "Output file name. Default is derived from input filename" -msgstr "Ausgabedateiname. Die Voreinstellung leitet sich vom ursprünglichen Dateinamen ab." +msgstr "" +"Ausgabedateiname. Die Voreinstellung leitet sich vom ursprünglichen " +"Dateinamen ab." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 -msgid "Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables." -msgstr "HTML Tabellen als Textblöcke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr große oder komplexe Tabellen enthält." +msgid "" +"Render HTML tables as blocks of text instead of actual tables. This is " +"neccessary if the HTML contains very large or complex tables." +msgstr "" +"HTML Tabellen als Textblöcke rendern und nicht als Tabellen. Dies ist " +"notwendig, wenn die HTML Datei sehr große oder komplexe Tabellen enthält." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 -msgid "Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased." -msgstr "Schriftgröße um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt vergrößern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ angegeben wird, wird die Schriftgröße verkleinert." +msgid "" +"Increase the font size by 2 * FONT_DELTA pts and the line spacing by " +"FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the " +"font size is decreased." +msgstr "" +"Schriftgröße um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt " +"vergrößern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ " +"angegeben wird, wird die Schriftgröße verkleinert." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:123 msgid "Enable autorotation of images that are wider than the screen width." -msgstr "Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind." +msgstr "" +"Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 msgid "Set the space between words in pts. Default is %default" -msgstr "Wählen Sie den Abstand in Punkt zwischen einzelnen Wörtern. Die Voreinstellung ist %default" +msgstr "" +"Wählen Sie den Abstand in Punkt zwischen einzelnen Wörtern. Die " +"Voreinstellung ist %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 msgid "Separate paragraphs by blank lines." @@ -87,20 +111,40 @@ msgid "Add a header to all the pages with title and author." msgstr "Kopfzeile mit Titel und Autornamen für alle Seiten einfügen. " #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 -msgid "Set the format of the header. %a is replaced by the author and %t by the title. Default is %default" -msgstr "Wählen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch den Titel ersetzt. Die Voreinstellung ist %default" +msgid "" +"Set the format of the header. %a is replaced by the author and %t by the " +"title. Default is %default" +msgstr "" +"Wählen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch " +"den Titel ersetzt. Die Voreinstellung ist %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:134 -msgid "Override the CSS. Can be either a path to a CSS stylesheet or a string. If it is a string it is interpreted as CSS." -msgstr "CSS überschreiben. Es kann ein Pfad zu einem CSS Stylesheet oder eine Zeichenfolge angegeben werden. Zeichenfolgen werden als CSS interpretiert. " +msgid "" +"Override the CSS. Can be either a path to a CSS stylesheet or a string. If " +"it is a string it is interpreted as CSS." +msgstr "" +"CSS überschreiben. Es kann ein Pfad zu einem CSS Stylesheet oder eine " +"Zeichenfolge angegeben werden. Zeichenfolgen werden als CSS interpretiert. " #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:136 -msgid "Use the element from the OPF file to determine the order in which the HTML files are appended to the LRF. The .opf file must be in the same directory as the base HTML file." -msgstr "Das Element der OPF Datei benutzen um die Reihenfolge zu bestimmen, in der die HTML Dateien zur LRF Datei hinzugefügt werden. Die OPF Datei muss sich im gleichen Verzeichnis wie die ursprüngliche HTML Datei befinden." +msgid "" +"Use the element from the OPF file to determine the order in which " +"the HTML files are appended to the LRF. The .opf file must be in the same " +"directory as the base HTML file." +msgstr "" +"Das Element der OPF Datei benutzen um die Reihenfolge zu bestimmen, " +"in der die HTML Dateien zur LRF Datei hinzugefügt werden. Die OPF Datei muss " +"sich im gleichen Verzeichnis wie die ursprüngliche HTML Datei befinden." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:142 -msgid "Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: " -msgstr "Profil des Zielgeräts für das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Auflösung und die Bildschirmgröße des Zielgerätes fest. Voreinstellung: %s Unterstützte Profile:" +msgid "" +"Profile of the target device for which this LRF is being generated. The " +"profile determines things like the resolution and screen size of the target " +"device. Default: %s Supported profiles: " +msgstr "" +"Profil des Zielgeräts für das diese LRF Datei erstellt wird. Das Profil legt " +"unter anderem die Auflösung und die Bildschirmgröße des Zielgerätes fest. " +"Voreinstellung: %s Unterstützte Profile:" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:148 msgid "Left margin of page. Default is %default px." @@ -119,41 +163,90 @@ msgid "Bottom margin of page. Default is %default px." msgstr "Unterer Rand der Seite. Die Voreinstellung ist %default Pixel." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:158 -msgid "The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored." -msgstr "Höchstzahl der rekursiven Verknüpfungen (Hyperlinks). Der Wert 0 bedeutet, dass Verknüpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle tags ignoriert werden. " +msgid "" +"The maximum number of levels to recursively process links. A value of 0 " +"means thats links are not followed. A negative value means that tags are " +"ignored." +msgstr "" +"Höchstzahl der rekursiven Verknüpfungen (Hyperlinks). Der Wert 0 bedeutet, " +"dass Verknüpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle " +" tags ignoriert werden. " # ??? #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:162 -msgid "A regular expression. tags whoose href matches will be ignored. Defaults to %default" -msgstr "Ein regulärer Ausdruck. tags, deren Verknüpfungen ignoriert werden. Voreinstellung %default" +msgid "" +"A regular expression. tags whoose href matches will be ignored. Defaults " +"to %default" +msgstr "" +"Ein regulärer Ausdruck. tags, deren Verknüpfungen ignoriert werden. " +"Voreinstellung %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:167 -msgid "Prevent the automatic insertion of page breaks before detected chapters." -msgstr "Automatisches Einfügen von Seitenumbrüchen vor ermittelten Kapiteln verhindern." +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." +msgstr "" +"Automatisches Einfügen von Seitenumbrüchen vor ermittelten Kapiteln " +"verhindern." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:171 -msgid "The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default" -msgstr "Der reguläre Ausdruck zur Ermittlung von Kapitelüberschriften. Es wird nach mit (h1) - (h6) angegebenen Überschriften gesucht. Voreinstellung %default" +msgid "" +"The regular expression used to detect chapter titles. It is searched for in " +"heading tags (h1-h6). Defaults to %default" +msgstr "" +"Der reguläre Ausdruck zur Ermittlung von Kapitelüberschriften. Es wird nach " +"mit (h1) - (h6) angegebenen Überschriften gesucht. Voreinstellung %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:174 -msgid "If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to \"$\". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements." -msgstr "Wenn html2lrf keine Seitenumbrüche in der HTML Datei und keine Kapitel-Überschriften finden kann, fügt es automatisch Seitenumbrüche vor Elementen ein, deren Namen mit diesem regulären Ausdruck entsprechen. Voreinstellung ist %default. Sie können dies deaktivieren indem sie den regulären Ausdruck \"$\" verwenden. Der Zweck dieser Einstellung ist der Versuch sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das Umblättern der in der LRF Datei verlangsamt. Diese Einstellung wird ignoriert, wenn die aktuelle Seite nur wenige Elemente enthält." +msgid "" +"If html2lrf does not find any page breaks in the html file and cannot detect " +"chapter headings, it will automatically insert page-breaks before the tags " +"whose names match this regular expression. Defaults to %default. You can " +"disable it by setting the regexp to \"$\". The purpose of this option is to " +"try to ensure that there are no really long pages as this degrades the page " +"turn performance of the LRF. Thus this option is ignored if the current page " +"has only a few elements." +msgstr "" +"Wenn html2lrf keine Seitenumbrüche in der HTML Datei und keine Kapitel-" +"Überschriften finden kann, fügt es automatisch Seitenumbrüche vor Elementen " +"ein, deren Namen mit diesem regulären Ausdruck entsprechen. Voreinstellung " +"ist %default. Sie können dies deaktivieren indem sie den regulären Ausdruck " +"\"$\" verwenden. Der Zweck dieser Einstellung ist der Versuch " +"sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das " +"Umblättern der in der LRF Datei verlangsamt. Diese Einstellung wird " +"ignoriert, wenn die aktuelle Seite nur wenige Elemente enthält." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:184 -msgid "Force a page break before tags whoose names match this regular expression." -msgstr "Seitenumbruch erzwingen vor Elementen, deren Namen diesem regulären Ausdruck entsprechen. " +msgid "" +"Force a page break before tags whoose names match this regular expression." +msgstr "" +"Seitenumbruch erzwingen vor Elementen, deren Namen diesem regulären Ausdruck " +"entsprechen. " #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 -msgid "Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class=\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" -msgstr "Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das Format dieser Einstellung ist tagname regexp,attribute name,attribute value regexp. Um zum Beispiel alle \"heading\" Elemente, die das Attribut class=\"chapter\" anzupassen, würden Sie \"h\\d,class,chapter\" verwenden. Voreinstellung ist %default" +msgid "" +"Force a page break before an element having the specified attribute. The " +"format for this option is tagname regexp,attribute name,attribute value " +"regexp. For example to match all heading tags that have the attribute class=" +"\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" +msgstr "" +"Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das " +"Format dieser Einstellung ist tagname regexp,attribute name,attribute value " +"regexp. Um zum Beispiel alle \"heading\" Elemente, die das Attribut class=" +"\"chapter\" anzupassen, würden Sie \"h\\d,class,chapter\" verwenden. " +"Voreinstellung ist %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:189 msgid "Preprocess Baen HTML files to improve generated LRF." -msgstr "Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern." +msgstr "" +"Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 -msgid "You must add this option if processing files generated by pdftohtml, otherwise conversion will fail." -msgstr "Sie müssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml erstellt wurden, verarbeiten wollen, sonst schlägt die Konvertierung fehl." +msgid "" +"You must add this option if processing files generated by pdftohtml, " +"otherwise conversion will fail." +msgstr "" +"Sie müssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml " +"erstellt wurden, verarbeiten wollen, sonst schlägt die Konvertierung fehl." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 msgid "Use this option on html0 files from Book Designer." @@ -161,9 +254,18 @@ msgstr "Benutzen Sie diese Einstellung bei HTML Dateien von Book Designer." #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:196 msgid "" -"Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: \"path to fonts directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" +"Specify trutype font families for serif, sans-serif and monospace fonts. " +"These fonts will be embedded in the LRF file. Note that custom fonts lead to " +"slower page turns. Each family specification is of the form: \"path to fonts " +"directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" " " -msgstr "Geben Sie Truetype Schriftarten für serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umblättern verlangsamen. Jede Schriftartfamilie wird folgendermaßen angegeben: \"Pfad zum Verzeichnis der Schriften, Schriftartfamilie\" Zum Beispiel: --serif-family \"%s, Times New Roman\"\n" +msgstr "" +"Geben Sie Truetype Schriftarten für serife, serifenlose und " +"nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei " +"eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umblättern " +"verlangsamen. Jede Schriftartfamilie wird folgendermaßen angegeben: \"Pfad " +"zum Verzeichnis der Schriften, Schriftartfamilie\" Zum Beispiel: --serif-" +"family \"%s, Times New Roman\"\n" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:205 msgid "The serif family of fonts to embed" @@ -178,6 +280,46 @@ msgstr "Serifenlose Schriftartfamilie einbetten" msgid "The monospace family of fonts to embed" msgstr "Nichtproportionale Schriftartfamilie einbetten" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:591 +msgid "Set the book title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:593 +msgid "Set sort key for the title" +msgstr "Sortierung nach Titel" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:595 +msgid "Set the author" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:597 +msgid "Set sort key for the author" +msgstr "Sortierung nach Autor" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:599 +msgid "The category this book belongs to. E.g.: History" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:602 +msgid "Path to a graphic that will be set as this files' thumbnail" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:605 +msgid "Path to a txt file containing the comment to be stored in the lrf file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:609 +msgid "Extract thumbnail from LRF file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:611 +msgid "Set book ID" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:613 +msgid "Don't know what this is for" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Format wählen" @@ -201,8 +343,12 @@ msgid "Fetching metadata for %1" msgstr "Meta-Daten abrufen für %1" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:81 -msgid "Sign up for a free account from ISBNdb.com to get an access key." -msgstr "Kostenloses Konto anmelden bei ISBNdb.com um einen Zugriffsschlüssel zu erhalten." +msgid "" +"Sign up for a free account from ISBNdb." +"com to get an access key." +msgstr "" +"Kostenloses Konto anmelden bei ISBNdb.com um einen Zugriffsschlüssel zu erhalten." #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:82 msgid "&Access Key;" @@ -218,7 +364,9 @@ msgstr "Treffer" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:85 msgid "Select the book that most closely matches your copy from the list below" -msgstr "Wählen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht" +msgstr "" +"Wählen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe " +"entspricht" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:35 msgid "Active Jobs" @@ -305,8 +453,12 @@ msgstr "&Autor:" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:540 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:121 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:271 -msgid "Change the author(s) of this book. Multiple authors should be separated by a comma" -msgstr "Autor dieses Buches ändern. Mehrere Autoren sollten durch Kommata getrennt werden" +msgid "" +"Change the author(s) of this book. Multiple authors should be separated by a " +"comma" +msgstr "" +"Autor dieses Buches ändern. Mehrere Autoren sollten durch Kommata getrennt " +"werden" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:539 msgid "Author So&rt:" @@ -332,8 +484,13 @@ msgstr "&Etiketten:" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:544 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:131 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:281 -msgid "Tags categorize the book. This is particularly useful while searching.

They can be any words or phrases, separated by commas." -msgstr "Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach Büchern.

Sie können für Etiketten durch Kommata getrennte Wörter oder Sätze verwenden." +msgid "" +"Tags categorize the book. This is particularly useful while searching. " +"

They can be any words or phrases, separated by commas." +msgstr "" +"Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach " +"Büchern.

Sie können für Etiketten durch Kommata getrennte Wörter " +"oder Sätze verwenden." #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:545 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:132 @@ -369,9 +526,8 @@ msgstr "Bemerkung" # ??? #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:552 -#, fuzzy msgid "&Font delta:" -msgstr "&Font delta:" +msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:553 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:555 @@ -475,15 +631,23 @@ msgstr "Hilfe für das jeweilige Objekt" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:581 msgid "" -"\n" -"

" +"\n" +"

" msgstr "" -"\n" -"

" +"\n" +"

" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:118 msgid "Edit Meta information" @@ -501,8 +665,12 @@ msgstr "S&ortierung nach Autor:" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:123 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:273 -msgid "Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles." -msgstr "Geben Sie an, wie der Autor dieses Buches sortiert werden soll. \"Charles Dickens\" zum Beispiel als \"Dickens, Charles\"." +msgid "" +"Specify how the author(s) of this book should be sorted. For example Charles " +"Dickens should be sorted as Dickens, Charles." +msgstr "" +"Geben Sie an, wie der Autor dieses Buches sortiert werden soll. \"Charles " +"Dickens\" zum Beispiel als \"Dickens, Charles\"." #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:124 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:274 @@ -565,6 +733,66 @@ msgstr "&Username:" msgid "&Password:" msgstr "&Password:" +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:242 +msgid "Job" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:243 +msgid "Status" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:244 +msgid "Progress" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:260 +msgid "Waiting" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:262 +msgid "Working" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:264 +msgid "Done" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:267 +msgid "Unavailable" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:312 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:617 +msgid "Title" +msgstr "Titel" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:313 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:618 +msgid "Author(s)" +msgstr "Autor(s)" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:314 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:619 +msgid "Size (MB)" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:315 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:620 +msgid "Date" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:316 +msgid "Rating" +msgstr "Bewertung" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:621 +msgid "Tags" +msgstr "Etiketten" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:656 +msgid "Search by title, author, publisher, tags, series and comments" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "Viewer konfigurieren " @@ -623,27 +851,52 @@ msgstr "libprs500" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:242 msgid "" -"\n" -"

For help visit libprs500.kovidgoyal.net

libprs500: %1 by Kovid Goyal
%2

" +"\n" +"

For help visit libprs500.kovidgoyal.net

libprs500: %1 " +"by Kovid Goyal
%2

" msgstr "" -"\n" -"

Hilfe finden Sie unter libprs500.kovidgoyal.net

libprs500: %1 von Kovid Goyal
%2

" +"\n" +"

Hilfe finden Sie unter libprs500.kovidgoyal.net

libprs500: %1 " +"von Kovid Goyal
%2

" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:246 msgid "&Search:" msgstr "&Suche:" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:247 -msgid "Search the list of books by title or author

Words separated by spaces are ANDed" -msgstr "Liste der Bücher nach Titel oder Autor durchsuchen

Durch Leerzeichen getrennte Wörter werden mit \"AND\" verknüpft" +msgid "" +"Search the list of books by title or author

Words separated by spaces " +"are ANDed" +msgstr "" +"Liste der Bücher nach Titel oder Autor durchsuchen

Durch Leerzeichen " +"getrennte Wörter werden mit \"AND\" verknüpft" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:248 -msgid "Search the list of books by title, author, publisher, tags and comments

Words separated by spaces are ANDed" -msgstr "Liste der Bücher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen

Durch Leerzeichen getrennte Wörter werden mit \"AND\" verknüpft" +msgid "" +"Search the list of books by title, author, publisher, tags and " +"comments

Words separated by spaces are ANDed" +msgstr "" +"Liste der Bücher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen " +"durchsuchen

Durch Leerzeichen getrennte Wörter werden mit \"AND\" " +"verknüpft" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:249 msgid "Reset Quick Search" @@ -694,3 +947,6 @@ msgstr "In eBooks umwandeln" msgid "View" msgstr "Vorschau" +#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +msgid "Jobs:" +msgstr "" diff --git a/src/libprs500/translations/pygettext.py b/src/libprs500/translations/pygettext.py index bc88d45f14..d5a11e1639 100644 --- a/src/libprs500/translations/pygettext.py +++ b/src/libprs500/translations/pygettext.py @@ -641,4 +641,4 @@ def main(outfile, args=sys.argv[1:]): eater.write(outfile) if __name__ == '__main__': - main() \ No newline at end of file + main(sys.stdout) \ No newline at end of file diff --git a/src/libprs500/translations/sl.po b/src/libprs500/translations/sl.po index 5eed9cf1a1..3255aaaaf4 100644 --- a/src/libprs500/translations/sl.po +++ b/src/libprs500/translations/sl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libprs500 0.4.17\n" -"POT-Creation-Date: 2007-11-08 14:39+PST\n" +"POT-Creation-Date: 2007-11-11 08:02+PST\n" "PO-Revision-Date: 2007-11-08 14:39+PST\n" "Last-Translator: Automatically generated\n" "Language-Team: sl\n" @@ -14,7 +14,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" - #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 msgid "Created by " msgstr "" @@ -24,7 +23,9 @@ msgid "Set the title. Default: filename." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 -msgid "Set the author(s). Multiple authors should be set as a comma separated list. Default: %default" +msgid "" +"Set the author(s). Multiple authors should be set as a comma separated list. " +"Default: %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:96 @@ -48,6 +49,7 @@ msgid "Sort key for the author" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:106 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:317 msgid "Publisher" msgstr "" @@ -56,7 +58,9 @@ msgid "Path to file containing image to be used as cover" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 -msgid "If there is a cover graphic detected in the source file, use that instead of the specified cover." +msgid "" +"If there is a cover graphic detected in the source file, use that instead of " +"the specified cover." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 @@ -64,11 +68,16 @@ msgid "Output file name. Default is derived from input filename" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 -msgid "Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables." +msgid "" +"Render HTML tables as blocks of text instead of actual tables. This is " +"neccessary if the HTML contains very large or complex tables." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 -msgid "Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased." +msgid "" +"Increase the font size by 2 * FONT_DELTA pts and the line spacing by " +"FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the " +"font size is decreased." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:123 @@ -88,19 +97,29 @@ msgid "Add a header to all the pages with title and author." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 -msgid "Set the format of the header. %a is replaced by the author and %t by the title. Default is %default" +msgid "" +"Set the format of the header. %a is replaced by the author and %t by the " +"title. Default is %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:134 -msgid "Override the CSS. Can be either a path to a CSS stylesheet or a string. If it is a string it is interpreted as CSS." +msgid "" +"Override the CSS. Can be either a path to a CSS stylesheet or a string. If " +"it is a string it is interpreted as CSS." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:136 -msgid "Use the element from the OPF file to determine the order in which the HTML files are appended to the LRF. The .opf file must be in the same directory as the base HTML file." +msgid "" +"Use the element from the OPF file to determine the order in which " +"the HTML files are appended to the LRF. The .opf file must be in the same " +"directory as the base HTML file." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:142 -msgid "Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: " +msgid "" +"Profile of the target device for which this LRF is being generated. The " +"profile determines things like the resolution and screen size of the target " +"device. Default: %s Supported profiles: " msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:148 @@ -120,31 +139,51 @@ msgid "Bottom margin of page. Default is %default px." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:158 -msgid "The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored." +msgid "" +"The maximum number of levels to recursively process links. A value of 0 " +"means thats links are not followed. A negative value means that tags are " +"ignored." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:162 -msgid "A regular expression. tags whoose href matches will be ignored. Defaults to %default" +msgid "" +"A regular expression. tags whoose href matches will be ignored. Defaults " +"to %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:167 -msgid "Prevent the automatic insertion of page breaks before detected chapters." +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:171 -msgid "The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default" +msgid "" +"The regular expression used to detect chapter titles. It is searched for in " +"heading tags (h1-h6). Defaults to %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:174 -msgid "If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to \"$\". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements." +msgid "" +"If html2lrf does not find any page breaks in the html file and cannot detect " +"chapter headings, it will automatically insert page-breaks before the tags " +"whose names match this regular expression. Defaults to %default. You can " +"disable it by setting the regexp to \"$\". The purpose of this option is to " +"try to ensure that there are no really long pages as this degrades the page " +"turn performance of the LRF. Thus this option is ignored if the current page " +"has only a few elements." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:184 -msgid "Force a page break before tags whoose names match this regular expression." +msgid "" +"Force a page break before tags whoose names match this regular expression." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 -msgid "Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class=\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" +msgid "" +"Force a page break before an element having the specified attribute. The " +"format for this option is tagname regexp,attribute name,attribute value " +"regexp. For example to match all heading tags that have the attribute class=" +"\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:189 @@ -152,7 +191,9 @@ msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 -msgid "You must add this option if processing files generated by pdftohtml, otherwise conversion will fail." +msgid "" +"You must add this option if processing files generated by pdftohtml, " +"otherwise conversion will fail." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 @@ -161,7 +202,10 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:196 msgid "" -"Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: \"path to fonts directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" +"Specify trutype font families for serif, sans-serif and monospace fonts. " +"These fonts will be embedded in the LRF file. Note that custom fonts lead to " +"slower page turns. Each family specification is of the form: \"path to fonts " +"directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" " " msgstr "" @@ -177,53 +221,85 @@ msgstr "" msgid "The monospace family of fonts to embed" msgstr "" -#: +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:591 +msgid "Set the book title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:593 +msgid "Set sort key for the title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:595 +msgid "Set the author" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:597 +msgid "Set sort key for the author" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:599 +msgid "The category this book belongs to. E.g.: History" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:602 +msgid "Path to a graphic that will be set as this files' thumbnail" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:605 +msgid "Path to a txt file containing the comment to be stored in the lrf file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:609 +msgid "Extract thumbnail from LRF file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:611 +msgid "Set book ID" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:613 +msgid "Don't know what this is for" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:43 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:58 msgid "TextLabel" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:79 msgid "Fetch metadata" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:80 msgid "Fetching metadata for %1" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:81 -msgid "Sign up for a free account from ISBNdb.com to get an access key." +msgid "" +"Sign up for a free account from ISBNdb." +"com to get an access key." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:82 msgid "&Access Key;" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:83 msgid "Fetch" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:84 msgid "Matches" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:85 msgid "Select the book that most closely matches your copy from the list below" msgstr "" @@ -313,7 +389,9 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:540 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:121 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:271 -msgid "Change the author(s) of this book. Multiple authors should be separated by a comma" +msgid "" +"Change the author(s) of this book. Multiple authors should be separated by a " +"comma" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:539 @@ -340,7 +418,9 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:544 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:131 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:281 -msgid "Tags categorize the book. This is particularly useful while searching.

They can be any words or phrases, separated by commas." +msgid "" +"Tags categorize the book. This is particularly useful while searching. " +"

They can be any words or phrases, separated by commas." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:545 @@ -481,42 +561,42 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:581 msgid "" -"\n" -"

" +"\n" +"

" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:118 msgid "Edit Meta information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:119 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:267 msgid "Meta information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:122 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:272 msgid "Author S&ort: " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:123 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:273 -msgid "Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles." +msgid "" +"Specify how the author(s) of this book should be sorted. For example Charles " +"Dickens should be sorted as Dickens, Charles." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:124 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:274 msgid "&Rating:" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:125 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:126 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:275 @@ -524,48 +604,39 @@ msgstr "" msgid "Rating of this book. 0-5 stars" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:277 msgid " stars" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:130 msgid "Add Ta&gs: " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:266 msgid "Edit Meta Information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:288 msgid "IS&BN:" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:290 msgid "Fetch metadata from server" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:291 msgid "Available Formats" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:292 msgid "Add a new format for this book to the database" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:294 msgid "Remove the selected formats for this book from the database." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 msgid "Fetch cover image from server" msgstr "" @@ -582,6 +653,66 @@ msgstr "" msgid "&Password:" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:242 +msgid "Job" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:243 +msgid "Status" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:244 +msgid "Progress" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:260 +msgid "Waiting" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:262 +msgid "Working" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:264 +msgid "Done" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:267 +msgid "Unavailable" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:312 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:617 +msgid "Title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:313 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:618 +msgid "Author(s)" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:314 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:619 +msgid "Size (MB)" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:315 +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:620 +msgid "Date" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:316 +msgid "Rating" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:621 +msgid "Tags" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:656 +msgid "Search by title, author, publisher, tags, series and comments" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "" @@ -640,10 +771,18 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:242 msgid "" -"\n" -"

For help visit libprs500.kovidgoyal.net

libprs500: %1 by Kovid Goyal
%2

" +"\n" +"

For help visit libprs500.kovidgoyal.net

libprs500: %1 " +"by Kovid Goyal
%2

" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:246 @@ -651,11 +790,15 @@ msgid "&Search:" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:247 -msgid "Search the list of books by title or author

Words separated by spaces are ANDed" +msgid "" +"Search the list of books by title or author

Words separated by spaces " +"are ANDed" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:248 -msgid "Search the list of books by title, author, publisher, tags and comments

Words separated by spaces are ANDed" +msgid "" +"Search the list of books by title, author, publisher, tags and " +"comments

Words separated by spaces are ANDed" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:249 @@ -707,3 +850,6 @@ msgstr "" msgid "View" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +msgid "Jobs:" +msgstr ""