Updated translations.

This commit is contained in:
Kovid Goyal 2007-11-11 16:03:58 +00:00
parent 0abfac4fc1
commit 975773d766
8 changed files with 559 additions and 147 deletions

View File

@ -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

View File

@ -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)

View File

@ -84,7 +84,7 @@ class MovieButton(QFrame):
self.movie_widget.setMovie(movie)
self.movie = movie
self.layout().addWidget(self.movie_widget)
self.jobs = QLabel('<b>Jobs: 0')
self.jobs = QLabel('<b>'+_('Jobs:')+' 0')
self.jobs.setAlignment(Qt.AlignHCenter|Qt.AlignBottom)
self.layout().addWidget(self.jobs)
self.layout().setAlignment(self.jobs, Qt.AlignHCenter)

View File

@ -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))

File diff suppressed because one or more lines are too long

View File

@ -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 <stdoonline@googlemail.com>\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 <spine> 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 <spine> 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 <spine> 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 <spine> 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 <a> 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 <a> 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 <a> 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 "
"<a> tags ignoriert werden. "
# ???
#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:162
msgid "A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default"
msgstr "Ein regulärer Ausdruck. <a> tags, deren Verknüpfungen ignoriert werden. Voreinstellung %default"
msgid ""
"A regular expression. <a> tags whoose href matches will be ignored. Defaults "
"to %default"
msgstr ""
"Ein regulärer Ausdruck. <a> 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 <b>%1</b>"
msgstr "Meta-Daten abrufen für <b>%1</b>"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:81
msgid "Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb.com</a> to get an access key."
msgstr "Kostenloses Konto anmelden bei <a href=\"http://www.isbndb.com\">ISBNdb.com</a> um einen Zugriffsschlüssel zu erhalten."
msgid ""
"Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb."
"com</a> to get an access key."
msgstr ""
"Kostenloses Konto anmelden bei <a href=\"http://www.isbndb.com\">ISBNdb.com</"
"a> 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. <br><br>They can be any words or phrases, separated by commas."
msgstr "Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach Büchern. <br><br>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. "
"<br><br>They can be any words or phrases, separated by commas."
msgstr ""
"Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach "
"Büchern. <br><br>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 ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p></body></html>"
msgstr ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p></body></html>"
#: /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 ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 by <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href="
"\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" "
"text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</"
"span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 "
"by <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></body></"
"html>"
msgstr ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Hilfe finden Sie unter <a href=\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 von <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Hilfe finden Sie unter <a "
"href=\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style="
"\" text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</"
"span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 "
"von <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></"
"body></html>"
#: /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<br><br>Words separated by spaces are ANDed"
msgstr "Liste der Bücher nach Titel oder Autor durchsuchen<br><br>Durch Leerzeichen getrennte Wörter werden mit \"AND\" verknüpft"
msgid ""
"Search the list of books by title or author<br><br>Words separated by spaces "
"are ANDed"
msgstr ""
"Liste der Bücher nach Titel oder Autor durchsuchen<br><br>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<br><br>Words separated by spaces are ANDed"
msgstr "Liste der Bücher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen<br><br>Durch Leerzeichen getrennte Wörter werden mit \"AND\" verknüpft"
msgid ""
"Search the list of books by title, author, publisher, tags and "
"comments<br><br>Words separated by spaces are ANDed"
msgstr ""
"Liste der Bücher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen "
"durchsuchen<br><br>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 ""

View File

@ -641,4 +641,4 @@ def main(outfile, args=sys.argv[1:]):
eater.write(outfile)
if __name__ == '__main__':
main()
main(sys.stdout)

View File

@ -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 <spine> 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 <spine> 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 <a> 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 <a> tags are "
"ignored."
msgstr ""
#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:162
msgid "A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default"
msgid ""
"A regular expression. <a> 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 <b>%1</b>"
msgstr ""
#:
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:81
msgid "Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb.com</a> to get an access key."
msgid ""
"Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb."
"com</a> 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. <br><br>They can be any words or phrases, separated by commas."
msgid ""
"Tags categorize the book. This is particularly useful while searching. "
"<br><br>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 ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p></body></html>"
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 ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 by <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></body></html>"
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href="
"\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" "
"text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</"
"span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 "
"by <span style=\" font-weight:600;\">Kovid Goyal</span> <br />%2</p></body></"
"html>"
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<br><br>Words separated by spaces are ANDed"
msgid ""
"Search the list of books by title or author<br><br>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<br><br>Words separated by spaces are ANDed"
msgid ""
"Search the list of books by title, author, publisher, tags and "
"comments<br><br>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 ""